2026-07-09 02:59:53 +03:00
|
|
|
[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"
|
2026-07-19 02:44:59 +03:00
|
|
|
usvg = { workspace = true }
|
2026-07-09 02:59:53 +03:00
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
crate-type = ["staticlib", "rlib"]
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
rstest = "0.23"
|
|
|
|
|
proptest = "1.5"
|
|
|
|
|
approx = "0.5"
|
2026-07-23 16:34:05 +03:00
|
|
|
egui = { workspace = true }
|
|
|
|
|
eframe = { workspace = true }
|