34 lines
751 B
TOML
34 lines
751 B
TOML
[package]
|
|
name = "espanso-ui"
|
|
version = "0.1.0"
|
|
authors = ["Federico Terzi <federico-terzi@users.noreply.github.com>"]
|
|
edition = "2018"
|
|
build="build.rs"
|
|
|
|
[features]
|
|
# If enabled, avoid linking with the gdiplus library on Windows, which
|
|
# might conflict with wxWidgets
|
|
avoid-gdi = []
|
|
|
|
[dependencies]
|
|
log = "0.4.14"
|
|
serde_json = "1.0.61"
|
|
serde = { version = "1.0.123", features = ["derive"] }
|
|
anyhow = "1.0.38"
|
|
thiserror = "1.0.23"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
widestring = "0.4.3"
|
|
lazycell = "1.3.0"
|
|
winrt-notification = "0.3.1"
|
|
lazy_static = "1.4.0"
|
|
|
|
[target.'cfg(target_os="macos")'.dependencies]
|
|
lazycell = "1.3.0"
|
|
|
|
[target.'cfg(target_os="linux")'.dependencies]
|
|
notify-rust = "4.2.2"
|
|
crossbeam = "0.8.0"
|
|
|
|
[build-dependencies]
|
|
cc = "1.0.73" |