# 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 = "2021" name = "itsy" version = "0.4.0" authors = ["Dennis Möhlmann "] description = "Strongly typed scripting language with a rusty syntax and nice Rust integration." documentation = "https://docs.rs/itsy/" readme = "README.md" keywords = [ "language", "scripting", ] license = "MIT" repository = "https://github.com/sinesc/itsy.git" resolver = "2" [lib] name = "itsy" path = "src/lib.rs" [[bin]] name = "debug-run" path = "src/debug-run.rs" doc = false required-features = [ "compiler", "debugging", ] [[bin]] name = "bench" path = "src/bench.rs" doc = false required-features = ["compiler"] [[bin]] name = "run" path = "src/run.rs" doc = false required-features = ["compiler"] [dependencies.nom] version = "7.1.1" features = ["alloc"] optional = true default-features = false [dev-dependencies] [features] compiler = ["nom"] debugging = [] default = ["compiler"]