24 lines
661 B
TOML
24 lines
661 B
TOML
|
|
[package]
|
||
|
|
name = "hcie-kra"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
zip = { version = "2.2", default-features = false, features = ["deflate"] }
|
||
|
|
quick-xml = "0.36"
|
||
|
|
image = { version = "0.25", default-features = false, features = ["png"] }
|
||
|
|
log = "0.4"
|
||
|
|
serde = { version = "1.0", features = ["derive"] }
|
||
|
|
serde_json = "1.0"
|
||
|
|
bincode = "1.3"
|
||
|
|
rand = "0.8"
|
||
|
|
usvg = { workspace = true }
|
||
|
|
resvg = { workspace = true }
|
||
|
|
tiny-skia = { workspace = true }
|
||
|
|
hcie-blend = { path = "../hcie-blend" }
|
||
|
|
hcie-fx = { path = "../hcie-fx" }
|
||
|
|
hcie-protocol = { path = "../hcie-protocol" }
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
crate-type = ["rlib"]
|