2019-08-30 07:58:54 +00:00
|
|
|
[package]
|
|
|
|
name = "espanso"
|
2020-08-02 16:31:24 +00:00
|
|
|
version = "0.7.0"
|
2019-08-30 07:58:54 +00:00
|
|
|
authors = ["Federico Terzi <federicoterzi96@gmail.com>"]
|
2019-09-15 15:45:22 +00:00
|
|
|
license = "GPL-3.0"
|
|
|
|
description = "Cross-platform Text Expander written in Rust"
|
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://github.com/federico-terzi/espanso"
|
2019-08-30 07:58:54 +00:00
|
|
|
edition = "2018"
|
2019-08-30 12:33:40 +00:00
|
|
|
build="build.rs"
|
|
|
|
|
2019-08-30 07:58:54 +00:00
|
|
|
[dependencies]
|
2019-08-30 19:24:03 +00:00
|
|
|
widestring = "0.4.0"
|
2019-09-01 20:00:31 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_yaml = "0.8"
|
2019-09-04 17:31:02 +00:00
|
|
|
dirs = "2.0.2"
|
2019-09-05 21:06:43 +00:00
|
|
|
clap = "2.33.0"
|
2019-09-07 14:48:55 +00:00
|
|
|
regex = "1.3.1"
|
2019-09-07 15:59:34 +00:00
|
|
|
log = "0.4.8"
|
|
|
|
simplelog = "0.7.1"
|
2019-09-13 22:38:45 +00:00
|
|
|
fs2 = "0.4.3"
|
2019-09-14 10:19:11 +00:00
|
|
|
serde_json = "1.0.40"
|
2019-09-14 20:54:16 +00:00
|
|
|
log-panics = {version = "2.0.0", features = ["with-backtrace"]}
|
|
|
|
backtrace = "0.3.37"
|
2019-09-15 11:03:21 +00:00
|
|
|
chrono = "0.4.9"
|
|
|
|
lazy_static = "1.4.0"
|
2019-09-24 20:53:12 +00:00
|
|
|
walkdir = "2.2.9"
|
2019-09-25 18:52:21 +00:00
|
|
|
reqwest = "0.9.20"
|
2019-09-27 21:41:15 +00:00
|
|
|
tempfile = "3.1.0"
|
2019-10-12 14:24:08 +00:00
|
|
|
dialoguer = "0.4.0"
|
2019-12-13 21:52:24 +00:00
|
|
|
rand = "0.7.2"
|
2020-03-16 20:18:33 +00:00
|
|
|
zip = "0.5.3"
|
2020-05-08 17:04:50 +00:00
|
|
|
notify = "4.0.13"
|
2019-08-30 12:33:40 +00:00
|
|
|
|
2019-09-14 08:03:25 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
libc = "0.2.62"
|
2020-06-09 19:35:45 +00:00
|
|
|
signal-hook = "0.1.15"
|
2019-09-14 08:03:25 +00:00
|
|
|
|
2020-06-24 19:23:03 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
named_pipe = "0.4.1"
|
|
|
|
|
2019-08-30 12:33:40 +00:00
|
|
|
[build-dependencies]
|
2020-01-25 23:43:25 +00:00
|
|
|
cmake = "0.1.31"
|
|
|
|
|
|
|
|
[package.metadata.deb]
|
|
|
|
maintainer = "Federico Terzi <federicoterzi96@gmail.com>"
|
|
|
|
depends = "$auto, systemd, libxtst6, libxdo3, xclip, libnotify-bin"
|
|
|
|
section = "utility"
|
2020-01-26 21:00:44 +00:00
|
|
|
license-file = ["LICENSE", "1"]
|