30 lines
640 B
TOML
30 lines
640 B
TOML
[package]
|
|
name = "ironstorage-desktop"
|
|
description = "Iced desktop frontend for IronStorage"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "ironstorage-desktop"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
iced.workspace = true
|
|
ironstorage.workspace = true
|
|
zeroize.workspace = true
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
muda.workspace = true
|
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "windows"))'.dependencies]
|
|
rfd.workspace = true
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
ashpd.workspace = true
|
|
url.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|