-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
35 lines (30 loc) · 914 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "dropignore"
version = "0.1.2-alpha.0"
description = "A tool to conveniently ignore files and folders from Dropbox sync."
license = "Apache-2.0 OR MIT"
edition = "2018"
authors = ["Michael Weirauch <[email protected]>"]
readme = "README.md"
[dependencies]
clap = "2.33.1"
config = { version = "0.11.0", default-features = false, features = ["yaml"] }
directories = "4.0.1"
fern = { version = "0.6.0", features = ["colored"] }
globset = "0.4.5"
log = "0.4.8"
notify = "4.0.15"
serde = { version = "1.0.111", default-features = false, features = ["derive"] }
walkdir = "2.3.1"
[target.'cfg(unix)'.dependencies]
xattr = "0.2.2"
[target.'cfg(windows)'.dependencies]
widestring = "0.5.1"
winapi = { version = "0.3.8", default-features = false, features = ["fileapi"] }
[dev-dependencies]
tempfile = "3.1.0"
rstest = "0.12.0"
[profile.release]
lto = true
opt-level = 'z'
codegen-units = 1