75 lines
2.3 KiB
TOML
75 lines
2.3 KiB
TOML
[package]
|
|
name = "espanso"
|
|
version = "2.1.3-alpha"
|
|
authors = ["Federico Terzi <federicoterzi96@gmail.com>"]
|
|
license = "GPL-3.0"
|
|
description = "Cross-platform Text Expander written in Rust"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/federico-terzi/espanso"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = ["modulo"]
|
|
|
|
# If the wayland feature is enabled, all X11 dependencies will be dropped
|
|
# and only methods suitable for Wayland will be used
|
|
wayland = ["espanso-detect/wayland", "espanso-inject/wayland", "espanso-clipboard/wayland", "espanso-info/wayland"]
|
|
|
|
# Compile modulo and all its dependencies (including wxWidgets). If you don't
|
|
# enable it, features like Forms and Search might not be available.
|
|
modulo = ["espanso-modulo", "espanso-clipboard/avoid-gdi", "espanso-ui/avoid-gdi"]
|
|
|
|
[dependencies]
|
|
espanso-detect = { path = "../espanso-detect" }
|
|
espanso-ui = { path = "../espanso-ui" }
|
|
espanso-inject = { path = "../espanso-inject" }
|
|
espanso-config = { path = "../espanso-config" }
|
|
espanso-match = { path = "../espanso-match" }
|
|
espanso-clipboard = { path = "../espanso-clipboard" }
|
|
espanso-info = { path = "../espanso-info" }
|
|
espanso-render = { path = "../espanso-render" }
|
|
espanso-path = { path = "../espanso-path" }
|
|
espanso-ipc = { path = "../espanso-ipc" }
|
|
espanso-modulo = { path = "../espanso-modulo", optional = true }
|
|
espanso-migrate = { path = "../espanso-migrate" }
|
|
espanso-kvs = { path = "../espanso-kvs" }
|
|
espanso-engine = { path = "../espanso-engine" }
|
|
espanso-package = { path = "../espanso-package"}
|
|
maplit = "1.0.2"
|
|
simplelog = "0.9.0"
|
|
log = "0.4.14"
|
|
anyhow = "1.0.38"
|
|
thiserror = "1.0.23"
|
|
clap = "2.33.3"
|
|
lazy_static = "1.4.0"
|
|
crossbeam = "0.8.0"
|
|
enum-as-inner = "0.3.3"
|
|
dirs = "3.0.1"
|
|
serde = { version = "1.0.123", features = ["derive"] }
|
|
serde_json = "1.0.62"
|
|
log-panics = "2.0.0"
|
|
fs2 = "0.4.3"
|
|
serde_yaml = "0.8.17"
|
|
fs_extra = "1.2.0"
|
|
dialoguer = "0.8.0"
|
|
colored = "2.0.0"
|
|
tempdir = "0.3.7"
|
|
notify = "4.0.17"
|
|
opener = "0.5.0"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
named_pipe = "0.4.1"
|
|
winapi = { version = "0.3.9", features = ["wincon"] }
|
|
winreg = "0.9.0"
|
|
widestring = "0.4.3"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2.98"
|
|
|
|
[target.'cfg(target_os="macos")'.dependencies]
|
|
espanso-mac-utils = { path = "../espanso-mac-utils" }
|
|
|
|
[target.'cfg(target_os="linux")'.dependencies]
|
|
caps = "0.5.2"
|
|
const_format = "0.2.14"
|
|
regex = "1.4.3" |