forked from nix-community/lorri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
73 lines (68 loc) · 1.67 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "lorri"
# See MAINTAINERS.md for details about versioning
version = "1.7.1" # Format: MAJOR.MINOR.0
authors = [
"Graham Christensen <[email protected]>",
"Profpatsch <[email protected]>",
]
homepage = "https://github.com/nix-community/lorri"
license = "Apache-2.0"
edition = "2021"
# before updating dependencies: we want to keep the rustc compatible with 1.41.0 for now (start of 2020).
[dependencies]
# central features
notify = "6.1.1"
atomicwrites = "0.2.5"
crossbeam-channel = "0.5.12"
nix = "0.20.0"
regex = "1.4.3"
tempfile = "3.1.0"
anyhow = "1.0"
thiserror = "1.0"
# TODO: update to 0.3
structopt.version = "0.2"
# TODO: update to 0.3
structopt.default-features = false
# TODO: update to 0.3
structopt.features = [
# "default",
"suggestions",
"color",
# "wrap_help",
# "yaml",
# "debug",
"no_cargo",
# "doc" (enables yaml)
]
# logging;
slog = { version = "2.7.0", features = [
"release_max_level_debug",
] } # enable debug messages in the release so that --verbose still works
slog-term = "2.5.0"
fastrand = "1.4.0"
# serialization
serde = "1.0.88"
serde_derive = "1.0.88"
serde_json = "1.0.38"
bincode = "1.3.2"
# nice-to-have
ctrlc = { version = "3.1.8", features = ["termination"] }
directories = "3.0.1"
lazy_static = "1.4.0"
md5 = "0.7.0"
vec1 = ">= 1.1.0, <1.7.0"
human-panic = { path = "vendor/human-panic" }
notify-debouncer-full = "0.3.1"
[dev-dependencies]
# 1.0.0 requires at least rust 1.50
proptest.version = "0.10.1"
# 1.0.0 requires at least rust 1.50
proptest.default-features = false
# 1.0.0 requires at least rust 1.50
proptest.features = [
"std",
# reenable if proptest kills the test runner
# "fork",
# "timeout"
]