Layers/Cargo.toml

79 lines
1.7 KiB
TOML

[package]
name = "layers"
version = "0.1.0-dev"
edition = "2021"
rust-version = "1.75"
[lib]
name = "layers"
path = "src/lib.rs"
crate-type = ["staticlib", "rlib"]
[[bin]]
name = "layers"
path = "src/bin/layers_shell.rs"
[dependencies]
kicad-ipc-rs = { git = "https://git.else-if.org/jess/kicad-ipc-rs.git" }
prost-types = "0.14"
kiutils_kicad = "0.3"
kiutils_sexpr = "0.1"
siphon = { git = "https://git.else-if.org/jess/Siphon.git" }
acord-viewport = { git = "https://git.else-if.org/jess/Acord.git" }
wgpu = "27"
raw-window-handle = "0.6"
pollster = "0.4"
winit = "0.30"
iced_wgpu = "0.14"
iced_graphics = "0.14"
iced_runtime = "0.14"
iced_widget = { version = "0.14", features = ["wgpu", "image"] }
iced = { version = "0.14", features = ["tokio"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time", "sync", "net", "fs"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
uuid = { version = "1", features = ["v4", "serde"] }
xxhash-rust = { version = "0.8", features = ["xxh3"] }
anyhow = "1"
thiserror = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
tracing-appender = "0.2"
chrono = { version = "0.4", features = ["serde"] }
dirs = "5"
scopeguard = "1"
sha2 = "0.10"
dashmap = "6"
bincode = "1.3"
usvg = { version = "0.45", default-features = false }
resvg = { version = "0.45", default-features = false }
tiny-skia = "0.11"
[dev-dependencies]
pretty_assertions = "1"
tempfile = "3"
[features]
debug = []
[target.'cfg(target_os = "windows")'.dependencies]
windows = { version = "0.58", features = [
"Win32_Foundation",
"Win32_Graphics_Dwm",
"Win32_UI_WindowsAndMessaging",
] }
[target.'cfg(target_os = "linux")'.dependencies]
x11-dl = "2"