-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
executable file
·40 lines (36 loc) · 992 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
[package]
name = "tidybee-agent"
version = "0.1.0"
edition = "2021"
authors = ["majent4", "Cavonstavant", "Ju"]
[dependencies]
anyhow = "1.0.80"
axum = { version = "0.7.4", features = ["macros"] }
config = "0.13.3"
env_logger = "0.11.0"
futures = "0.3.30"
gethostname = "0.4.3"
lazy_static = "1.4.0"
notify = "6.1.1"
notify-debouncer-full = { version = "0.3.1", default-features = false }
prost = "0.12.4"
prost-types = "0.12.4"
reqwest = { version = "0.11.24", features = ["json"] }
serde = { version = "1.0.185", features = ["derive"] }
serde_derive = "1.0.8"
sysinfo = "0.30.5"
thiserror = "1.0.58"
tokio = { version = "1.32.0", features = ["full"] }
tokio-stream = "0.1.15"
tonic = "0.11.0"
tower-http = { version = "0.5.1", features = ["trace"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
xxhash-rust = { version = "0.8.8", features = ["xxh3"] }
[dev-dependencies]
ctor = "0.2.5"
[build-dependencies]
tonic-build = "0.11.0"
[[bin]]
name = "tidybee-agent"
path = "src/main.rs"