espanso/espanso-detect/Cargo.toml

33 lines
688 B
TOML
Raw Normal View History

2021-01-29 20:55:47 +00:00
[package]
name = "espanso-detect"
version = "0.1.0"
authors = ["Federico Terzi <federico-terzi@users.noreply.github.com>"]
edition = "2018"
build="build.rs"
2021-02-14 21:01:42 +00:00
[features]
# If the wayland feature is enabled, all X11 dependencies will be dropped
# and only EVDEV-based methods will be supported.
wayland = []
2021-01-29 20:55:47 +00:00
[dependencies]
log = "0.4.14"
2021-01-31 17:09:03 +00:00
lazycell = "1.3.0"
2021-02-08 16:16:35 +00:00
anyhow = "1.0.38"
thiserror = "1.0.23"
2021-01-29 20:55:47 +00:00
[target.'cfg(windows)'.dependencies]
widestring = "0.4.3"
2021-02-04 21:12:30 +00:00
[target.'cfg(target_os="linux")'.dependencies]
libc = "0.2.85"
scopeguard = "1.1.0"
2021-02-09 16:12:16 +00:00
[target.'cfg(target_os="macos")'.dependencies]
lazy_static = "1.4.0"
2021-01-29 20:55:47 +00:00
[build-dependencies]
2021-01-29 21:24:24 +00:00
cc = "1.0.66"
[dev-dependencies]
enum-as-inner = "0.3.3"