-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
45 lines (38 loc) · 1.48 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
[package]
name = "fim"
version = "0.5.3"
authors = ["José Fernández <´pylott@gmail.com´>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
yaml-rust = "0.4"
notify = "6.1.0"
simplelog = "0.12.0" # Candidate to remove
itertools = "0.14.0"
hex = "0.4.3"
futures = "0.3.21"
sha3 = { version = "0.10.0", default-features = false }
log = { version = "0.4.11", default-features = false }
gethostname = { version = "0.5.0", default-features = false }
uuid = { version = "1.0.0", default-features = false, features = ["v4"] }
reqwest = { version = "0.12.4", default-features = false, features = ["json", "stream", "rustls-tls"] }
tokio = { version = "1.18.4", default-features = false, features = ["rt", "rt-multi-thread", "macros"] }
tokio-util = { version = "0.7.8", default-features = false, features = ["codec"] }
serde_json = { version = "1.0.79", default-features = false }
time = { version = "0.3.17", default-features = false }
ctrlc = { version = "3.3.1", default-features = false, features = ["termination"] }
log-panics = { version = "2.1.0", features = ["with-backtrace"]}
[dependencies.regex]
version = "1.3"
default-features = false
features = ["std"]
[target.'cfg(windows)'.dependencies]
windows-service = "0.7.0"
zip = "2.1.3"
[target.'cfg(unix)'.dependencies]
flate2 = "1.0.27"
tar = "0.4.40"
[dev-dependencies]
tokio-test = "*"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(tarpaulin_include)"] }