# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" name = "glslt" version = "0.7.4" authors = ["Alixinne "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "GLSLT Template compiler library" homepage = "https://github.com/alixinne/glslt" documentation = "https://alixinne.github.io/glslt/glslt/" readme = "README.md" keywords = [ "glslt", "glsl", "language", "parser", "template", ] categories = [ "parser-implementations", "rendering", ] license = "MIT" repository = "https://github.com/alixinne/glslt.git" [lib] name = "glslt" crate-type = [ "rlib", "cdylib", ] path = "src/lib.rs" [[test]] name = "basic" path = "tests/basic.rs" [[test]] name = "capture" path = "tests/capture.rs" [[test]] name = "common" path = "tests/common.rs" [[test]] name = "defines" path = "tests/defines.rs" [[test]] name = "multiple" path = "tests/multiple.rs" [[test]] name = "nested" path = "tests/nested.rs" [[test]] name = "propagate" path = "tests/propagate.rs" [[test]] name = "struct" path = "tests/struct.rs" [dependencies.bimap] version = "0.6" [dependencies.clap] version = "4" features = ["derive"] optional = true [dependencies.env_logger] version = "0.11" optional = true [dependencies.glsl-lang] version = "0.6.0" [dependencies.glsl-lang-pp] version = "0.6.0" optional = true [dependencies.indexmap] version = "2.2" features = ["std"] [dependencies.lang-util] version = "0.6.0" [dependencies.log] version = "0.4" [dependencies.petgraph] version = "0.6" [dependencies.pyo3] version = "0.22" features = ["extension-module"] optional = true [dependencies.sha-1] version = "0.10" [dependencies.thiserror] version = "1.0" [dev-dependencies.env_logger] version = "0.11" [dev-dependencies.pretty_assertions] version = "1.4" [features] cli = [ "clap", "env_logger", "parse", ] parse = [ "glsl-lang-pp/full", "glsl-lang/lexer-v2-full", ] python = [ "pyo3", "cli", ]