[package] name = "calcit_runner" version = "0.5.25" authors = ["jiyinyiyong "] edition = "2018" license = "MIT" description = "Interpreter and js codegen for Calcit" homepage = "http://calcit-lang.org" documentation = "https://docs.rs/crate/calcit/" repository = "https://github.com/calcit-lang/calcit.rs" readme = "README.md" exclude = [ "lib/*", "calcit/*", "js-out/*", "scripts/*" ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] cirru_edn = "0.2.14" # cirru_edn = { path = "/Users/chen/repo/cirru/edn.rs" } cirru_parser = "0.1.18" clap = "3.1.6" dirs = "4.0.0" lazy_static = "1.4.0" notify = "4.0.17" walkdir = "2" hex = "0.4.3" rpds = "0.11.0" im_ternary_tree = "0.0.6" # im_ternary_tree = { path = "/Users/chen/repo/calcit-lang/ternary-tree" } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] libloading = "0.7.3" ctrlc = "3.2.1" [lib] name = "calcit" path = "src/lib.rs" [[bin]] name = "cr" path = "src/bin/cr.rs" [[bin]] name = "bundle_calcit" path = "src/bin/bundle_calcit.rs" # [profile.release] # debug = true