talc/talc-bin/Cargo.toml

21 lines
417 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-02 22:39:29 -05:00
rustyline = "15.0"
2024-10-28 22:42:21 -04:00
clap = { version = "4.5", features = ["std", "help", "usage", "derive", "error-context"], default-features = false }
2024-02-23 14:54:34 -05:00
ctrlc = "3.4"
2024-11-12 15:40:51 -05:00
lazy_static = "1.5"