17 lines
561 B
TOML
17 lines
561 B
TOML
[package]
|
|
name = "state2gantt"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
fret = { path = "../.." }
|
|
serde = { version = "1.0", default-features = false, features = ["alloc"] } # serialization lib
|
|
hashbrown = { version = "0.14.0", features = ["serde"] } # A faster hashmap, nostd compatible
|
|
# petgraph = { version="0.6.0", features = ["serde-1"] }
|
|
ron = "0.7" # write serialized data - including hashmaps
|
|
rand = "0.5"
|
|
clap = "4.5.17"
|
|
itertools = "0.13.0"
|