31 lines
739 B
TOML
31 lines
739 B
TOML
[package]
|
|
name = "espanso-clipboard"
|
|
version = "0.1.0"
|
|
authors = ["Federico Terzi <federico-terzi@users.noreply.github.com>"]
|
|
edition = "2018"
|
|
build="build.rs"
|
|
|
|
[features]
|
|
# If the wayland feature is enabled, all X11 dependencies will be dropped
|
|
# and wayland support will be enabled
|
|
wayland = ["wait-timeout"]
|
|
|
|
# If enabled, avoid linking with the gdiplus library on Windows, which
|
|
# might conflict with wxWidgets
|
|
avoid-gdi = []
|
|
|
|
[dependencies]
|
|
log = "0.4.14"
|
|
lazycell = "1.3.0"
|
|
anyhow = "1.0.38"
|
|
thiserror = "1.0.23"
|
|
lazy_static = "1.4.0"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
widestring = "0.4.3"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
wait-timeout = { version = "0.2.0", optional = true }
|
|
|
|
[build-dependencies]
|
|
cc = "1.0.73" |