Mycelium/hyphae/Cargo.toml

32 lines
582 B
TOML
Raw Normal View History

[package]
name = "hyphae"
version = "0.1.0"
edition = "2024"
[lib]
name = "hyphae"
crate-type = ["lib"]
path = "src/lib.rs"
[[bin]]
name = "hphc"
path = "src/bin/hphc.rs"
required-features = ["cli"]
[[bin]]
name = "hphdump"
path = "src/bin/hphdump.rs"
required-features = ["cli"]
[features]
cli = ["clap"]
[dependencies]
organelle = { path = "../organelle" }
num = { version = "0.4.3", features = ["alloc"] }
clap = { version = "4.5.53", features = ["derive"], optional = true }
[build-dependencies]
serde = { version = "1.0", features = ["alloc", "derive"] }
toml = "0.8.23"