[package] name = "glsl-lang-cli" version = "0.7.2" authors = ["Alixinne "] 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.2", features = ["lexer-v2-full"] } glsl-lang-pp = { version = "=0.7.2" } lang-util = "=0.7.2" argh = "0.1" serde_json = { version = "1.0", optional = true } miette = { version = "4.7", features = ["fancy"] } thiserror = "2.0" [features] default = ["json"] json = ["serde_json", "glsl-lang/serde"]