talc/talc-bin/Cargo.toml

16 lines
280 B
TOML
Raw Normal View History

2024-02-21 16:04:18 +00:00
[package]
name = "talc-bin"
version = "0.1.0"
edition = "2021"
2024-03-08 00:38:57 +00:00
[[bin]]
name = "talc"
path = "src/main.rs"
2024-02-21 16:04:18 +00:00
[dependencies]
talc-lang = { path = "../talc-lang" }
2024-02-23 19:54:34 +00:00
talc-std = { path = "../talc-std" }
2024-02-22 19:27:35 +00:00
rustyline = "13.0"
2024-02-23 19:54:34 +00:00
clap = { version = "4.5", features = ["derive"] }
ctrlc = "3.4"