talc/talc-bin/Cargo.toml
2024-10-28 22:42:21 -04:00

16 lines
347 B
TOML

[package]
name = "talc-bin"
version = "0.2.0"
edition = "2021"
[[bin]]
name = "talc"
path = "src/main.rs"
[dependencies]
talc-lang = { path = "../talc-lang" }
talc-std = { path = "../talc-std" }
rustyline = "14.0"
clap = { version = "4.5", features = ["std", "help", "usage", "derive", "error-context"], default-features = false }
ctrlc = "3.4"