complexpr/complexpr-bin/Cargo.toml

22 lines
532 B
TOML
Raw Normal View History

[package]
name = "complexpr-bin"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
complexpr = { path = "../complexpr" }
2022-09-23 19:09:22 +00:00
complexpr-stdlib = { path = "../complexpr-stdlib" }
backtrace = "0.3.66"
2022-09-22 21:36:20 +00:00
rustyline = { version = "10.0.0", optional = true }
rustyline-derive = { version = "0.7.0", optional = true }
[[bin]]
name = "complexpr"
path = "src/main.rs"
2022-09-22 21:36:20 +00:00
[features]
default = ["repl"]
repl = ["dep:rustyline", "dep:rustyline-derive"]