-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 1 KB
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 1 KB
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
[package]
name = "cloudray-agent"
version = "0.4.0"
edition = "2024"
rust-version = "1.85.0"
description = "Agent for CloudRay, a server management & monitoring service. Learn more at https://cloudray.io"
license = "MIT"
repository = "https://github.com/cloudray-io/cloudray-agent"
[dependencies]
anyhow = "1.0.97"
bytes = "1.10.1"
clap = { version = "4.5.35", features = ["derive", "env"] }
dotenvy = "0.15.7"
futures = "0.3.31"
mac_address = "1.1.8"
prost = "0.14.1"
reqwest = { version = "0.12.15", default-features = false, features = ["http2", "rustls-tls-native-roots"] }
semver = "1.0.25"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
tokio = { version = "1.48.0", features = ["full"] }
tokio-tungstenite = { version = "0.28.0", features = ["rustls-tls-native-roots"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
webterm-core = "0.2.5"
sysinfo = "0.35.2"
[build-dependencies]
prost-build = "0.14.1"
[dev-dependencies]
serial_test = "3.2.0"