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.
|
2021-07-30 17:31:33 +00:00
|
|
|
wayland = ["sctk"]
|
2021-02-14 21:01:42 +00:00
|
|
|
|
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-03-14 14:50:54 +00:00
|
|
|
regex = "1.4.3"
|
2021-03-14 17:24:37 +00:00
|
|
|
lazy_static = "1.4.0"
|
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-07-30 17:31:33 +00:00
|
|
|
sctk = { package = "smithay-client-toolkit", version = "0.14.0", optional = true }
|
2021-02-04 21:12:30 +00:00
|
|
|
|
2021-01-29 20:55:47 +00:00
|
|
|
[build-dependencies]
|
2022-03-05 21:05:15 +00:00
|
|
|
cc = "1.0.73"
|
2021-01-29 21:24:24 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
enum-as-inner = "0.3.3"
|