-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (45 loc) · 1.41 KB
/
Cargo.toml
File metadata and controls
51 lines (45 loc) · 1.41 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "drakeify"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "drakeify"
path = "src/bin/drakeify.rs"
[[bin]]
name = "drakeify-cli"
path = "src/bin/drakeify-cli.rs"
[[bin]]
name = "drakeify-web"
path = "src/bin/drakeify-web.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec"] }
tokio-stream = "0.1"
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
confy = "2.0.0"
futures-util = "0.3"
anyhow = "1.0.101"
colored = "3.1.1"
rquickjs = "0.11.0"
url = "2.5"
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
axum = { version = "0.7", features = ["ws"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "trace"] }
hyper = "1.0"
# OCI registry support for plugin/tool management
oci-distribution = { version = "0.11", default-features = false, features = ["rustls-tls"] }
sha2 = "0.10"
tar = "0.4"
flate2 = "1.0"
semver = "1.0"
clap = { version = "4.5", features = ["derive"] }
regex = "1.10"
# Database support - SQLite by default, PostgreSQL optional
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "sqlite", "postgres", "migrate", "chrono"] }
base64 = "0.22.1"
uuid = { version = "1.22.0", features = ["v4"] }