-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
27 lines (24 loc) · 831 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "glsl-lang-cli"
version = "0.7.1"
authors = ["Alixinne <alixinne@pm.me>"]
edition = "2021"
license = "BSD-3-Clause"
description = "CLI for the glsl-lang crate"
homepage = "https://github.com/alixinne/glsl-lang"
documentation = "https://docs.rs/glsl-lang-cli/"
repository = "https://github.com/alixinne/glsl-lang"
readme = "README.md"
keywords = ["glsl", "language", "parser", "ast", "cli"]
categories = ["command-line-interface", "parser-implementations", "rendering"]
[dependencies]
glsl-lang = { version = "=0.7.1", features = ["lexer-v2-full"] }
glsl-lang-pp = { version = "=0.7.1" }
lang-util = "=0.7.1"
argh = "0.1"
serde_json = { version = "1.0", optional = true }
miette = { version = "4.7", features = ["fancy"] }
thiserror = "1.0"
[features]
default = ["json"]
json = ["serde_json", "glsl-lang/serde"]