-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (39 loc) · 962 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
36
37
38
39
40
41
42
43
44
[workspace]
members = [
"multi_dispatcher"
]
[package]
name = "snitch"
description = "Intrusion detection and file integrity verification"
version = "0.1.9"
edition = "2021"
license = "MIT"
readme = "README.md"
authors = ["Marius Kriegerowski <[email protected]>"]
[lib]
name = "snitch"
path = "src/lib.rs"
[[bin]]
name = "snitch"
path = "src/bin.rs"
[dependencies]
multi_dispatcher = {version = "0.1.0", path="./multi_dispatcher"}
clap = {version= "4.1.13", features=["derive"]}
data-encoding = "2.3"
env_logger = "0.10.0"
indicatif = "0.16"
lazy_static = "1"
log = "0.4"
regex = "1.5"
reqwest = { version = "0.11", features = ["blocking", "json"] }
ring = "0.17.0-alpha.11"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9.19"
sled = "0.34"
tokio = { version = "1.17", features = ["full"] }
walkdir = "2.3"
notify = "4.0.17"
eyre = "0.6.8"
url = { version = "2.3.1", features = ["serde"] }
[features]
experimental = []