23 lines
477 B
TOML
23 lines
477 B
TOML
[package]
|
|
name = "hcie-composite"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
hcie-blend = { path = "../hcie-blend" }
|
|
hcie-fx = { path = "../hcie-fx" }
|
|
hcie-tile = { path = "../hcie-tile" }
|
|
hcie-protocol = { path = "../hcie-protocol" }
|
|
rayon = "1.10"
|
|
log = "0.4"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "rlib"]
|
|
|
|
[dev-dependencies]
|
|
hcie-protocol = { path = "../hcie-protocol" }
|
|
rstest = "0.23"
|
|
proptest = "1.5"
|
|
approx = "0.5"
|
|
env_logger = "0.11"
|