-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 916 Bytes
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 916 Bytes
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
[package]
name = "devendra"
version = "0.1.0"
edition = "2024"
[dependencies]
serde = { version = "1.0.228", features = ["derive"] }
uuid7 = { version = "1.4.0", features = ["serde", "uuid"] }
regex = "1"
toml = "0.8"
git2 = "0.19"
clap = { version = "4.5", features = ["derive", "env"] }
hostname = "0.4"
ed25519-dalek = { version = "2", features = ["rand_core"] }
rand = "0.8"
base64 = "0.22"
axum = "0.7"
tokio = { version = "1", features = ["full"] }
serde_json = "1.0"
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
reqwest = { version = "0.12", features = ["json"] }
tracing = { version = "0.1.44", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
libc = "0.2"
[[bin]]
name = "devendra-agent"
path = "src/bin/agent.rs"
[[bin]]
name = "devendra-bridge"
path = "src/bin/bridge.rs"
[[bin]]
name = "devendra-server"
path = "src/bin/server.rs"