rustible/Cargo.toml

29 lines
479 B
TOML
Raw Normal View History

2023-04-19 21:49:30 +02:00
[package]
name = "rustible"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1", features = [ "derive" ] }
regex = "1"
duct = "0.13"
#erased-serde = "0.3"
serde_json = "1"
typetag = "0.2"
# Error management
#thiserror = "1"
snafu = "0.7"
2023-10-05 17:58:41 +02:00
ron = "0.8"
rayon = "1.7"
2023-04-19 21:49:30 +02:00
[lib]
name = "rustible"
path = "src/lib.rs"
[[bin]]
name = "rustible"
path = "src/main.rs"