17 lines
280 B
TOML
17 lines
280 B
TOML
|
|
[package]
|
||
|
|
name = "hcie-history"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
# Generic - no app-specific dependencies
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
crate-type = ["staticlib", "rlib"]
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
rstest = "0.23"
|
||
|
|
proptest = "1.5"
|
||
|
|
approx = "0.5"
|
||
|
|
hcie-protocol = { path = "../hcie-protocol" }
|