[package] name = "crulz" description = "a rust implementation of the 'crulz' macro language interpreter" version = "0.0.7" authors = ["Erik Zscheile "] edition = "2018" exclude = ["docs/bench_results*.txt","*.sh"] repository = "https://github.com/zserik/crulz-rs" license = "Apache-2.0" build = "build.rs" [dependencies] ansi_term = "0.12" anyhow = "1.0" bincode = { version = "1.2", optional = true } cfg-if = "0.1" clap = "2.33" codespan = "0.9" codespan-reporting = "0.9" delegate-attr = "0.2" flate2 = { version = "1.0", optional = true } itertools = "0.9" phf = { version = "0.8", features = ["macros"] } readfilez = "0.2" serde = { version = "1.0", features = ["derive"] } string_cache = "0.8" thiserror = "1.0" [build-dependencies] string_cache_codegen = "0.5" [features] compile = [ "bincode", "flate2" ] [profile.release] lto = true