talc/talc-bin/Cargo.toml

21 lines
409 B
TOML
Raw Normal View History

2024-02-21 11:04:18 -05:00
[package]
name = "talc-bin"
2024-12-21 01:00:36 -05:00
version = "0.2.2"
2024-02-21 11:04:18 -05:00
edition = "2021"
2024-12-25 22:58:12 -05:00
rust-version = "1.81.0"
2024-02-21 11:04:18 -05:00
2024-12-31 22:09:51 -05:00
[lints]
workspace = true
2024-03-07 19:38:57 -05:00
[[bin]]
name = "talc"
path = "src/main.rs"
2024-02-21 11:04:18 -05:00
[dependencies]
talc-lang = { path = "../talc-lang" }
2024-02-23 14:54:34 -05:00
talc-std = { path = "../talc-std" }
2025-01-18 19:06:58 -05:00
rustyline = "15"
clap = { version = "4", features = ["std", "help", "usage", "derive", "error-context"], default-features = false }
ctrlc = "3"
lazy_static = "1"