forked from sphenlee/waterwheel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (61 loc) · 2.07 KB
/
Cargo.toml
File metadata and controls
64 lines (61 loc) · 2.07 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "waterwheel"
version = "0.1.0"
authors = ["Steve Lee <sphen.lee@gmail.com>"]
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.89"
anymap3 = "1.0.0"
async-trait = "0.1.83"
axum = { version = "0.8.8", features = ["tokio", "http1", "macros", "ws"] }
axum-extra = { version = "0.12.5", features = ["typed-header"] }
axum-test = "19.1.1"
binary-heap-plus = "0.5.0"
bollard = "0.18"
cadence = "1.5.0"
chitchat = "0.9.0"
chrono = "0.4.38"
clap = "4.5.19"
colored = "3.0.0"
config = { version = "0.15.13", default-features = false, features = ["json", "toml", "yaml"] }
cron = "0.15.0"
dotenvy = "0.15.7"
futures = "0.3"
gethostname = "1.0.2"
git-version = "0.3.9"
humantime = "2.1.0"
itertools = "0.14.0"
json-patch = "4.0.0"
jsonwebtoken = "9.3.0"
k8s-openapi = { version = "0.25.0", default-features = false, features = ["v1_31"] }
kube = "1.1.0"
kube-core = "1.1.0"
kube-runtime = "1.1.0"
lapin = "3.0.0"
lru_time_cache = "0.11.11"
mime = "0.3.17"
once_cell = "1.20"
postage = "0.5.0"
rand = "0.9.1"
redis = { version = "0.32.3", features = ["tokio-comp"] }
regex = "1.11.0"
reqwest = { version = "0.12.8", default-features = false, features = ["json", "rustls-tls"] }
rustls = {version = "0.23.5", default-features = false, features = ["std"]}
serde = "1.0.210"
serde_json = "1.0.128"
serde_yaml = "=0.9.33"
sqlx = { version = "0.8.2", features = ["postgres", "chrono", "uuid", "json", "runtime-tokio-rustls"] }
thiserror = "2.0.12"
tokio = { version = "1.47.3", features = [ "full", "rt-multi-thread" ] }
tokio-amqp = "2.0.0"
tower-http = { version = "0.6.8", features = ["fs"] }
tracing = "0.1.40"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
url = { version = "2.5.2", features = ["serde"] }
uuid = { version = "1.10.0", features = [ "v4", "serde" ] }
xxhash-rust = { version = "0.8.12", features = ["xxh3"] }
[dev-dependencies]
testcontainers-modules = { version = "0.12.1", features = ["rabbitmq", "postgres", "redis"] }
pretty_assertions = "1.4.1"