21 lines
470 B
TOML
21 lines
470 B
TOML
|
|
[package]
|
||
|
|
name = "hcie-vector"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
hcie-protocol = { path = "../hcie-protocol" }
|
||
|
|
hcie-blend = { path = "../hcie-blend" }
|
||
|
|
serde = { version = "1.0", features = ["derive"] }
|
||
|
|
bincode = "1.3"
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
crate-type = ["staticlib", "rlib"]
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
rstest = "0.23"
|
||
|
|
proptest = "1.5"
|
||
|
|
approx = "0.5"
|
||
|
|
egui = "0.34"
|
||
|
|
eframe = { version = "0.34", default-features = false, features = ["default_fonts", "glow"] }
|