18 lines
291 B
TOML
18 lines
291 B
TOML
|
|
[package]
|
||
|
|
name = "hcie-protocol"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
serde = { version = "1.0", features = ["derive"] }
|
||
|
|
serde_json = "1.0"
|
||
|
|
hcie-blend = { path = "../hcie-blend" }
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
crate-type = ["rlib"]
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
rstest = "0.23"
|
||
|
|
proptest = "1.5"
|
||
|
|
approx = "0.5"
|