espanso/Cargo.toml

37 lines
801 B
TOML
Raw Normal View History

2019-08-30 07:58:54 +00:00
[package]
name = "espanso"
version = "0.2.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"
dirs = "2.0.2"
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-09 13:15:01 +00:00
zip = "0.5.3"
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"
chrono = "0.4.9"
lazy_static = "1.4.0"
walkdir = "2.2.9"
2019-08-30 12:33:40 +00:00
[target.'cfg(unix)'.dependencies]
libc = "0.2.62"
2019-09-10 20:53:45 +00:00
[dev-dependencies]
tempfile = "3.1.0"
2019-08-30 12:33:40 +00:00
[build-dependencies]
cmake = "0.1.31"