# 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 believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" name = "mini-lang" version = "0.1.2" authors = ["watcol "] include = ["README.md", "Cargo.toml", "src/**/*.rs"] description = "A minimal, experimental language for lazy evaluation." readme = "README.md" keywords = ["language", "experimental", "interpreter"] categories = ["compilers"] license = "MIT" repository = "https://github.com/watcol/mini-lang" [[bin]] name = "mini" path = "src/main.rs" required-features = ["bin"] [[bench]] name = "tarai" path = "benches/tarai.rs" harness = false [dependencies.peg] version = "0.7" [dependencies.structopt] version = "0.3" optional = true [dependencies.thiserror] version = "1.0" [dev-dependencies.criterion] version = "0.3" [dev-dependencies.indoc] version = "1.0" [features] bin = ["structopt"] default = []