-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
95 lines (91 loc) · 2.45 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[workspace]
members = [
"trino-lb",
"trino-lb-persistence",
"trino-lb-core",
"trino-lb-bench",
]
resolver = "2"
[workspace.package]
version = "0.3.2"
authors = ["Stackable GmbH <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
repository = "https://github.com/stackabletech/trino-lb"
[workspace.dependencies]
axum = { version = "0.7", features = ["tracing"] }
# If we use the feature "tls-rustls" it will pull in the "aws-lc-rs" crate, which as of 2024-08-16 I did not get to build in the "make run-dev" workflow :/
axum-server = { version = "0.7", features = ["tls-rustls-no-provider"] }
bincode = "1.3"
chrono = "0.4"
clap = { version = "4.5", features = ["derive"] }
enum_dispatch = "0.3"
futures = "0.3"
http = "1.1"
http-serde = "2.1"
humantime-serde = "1.1"
indoc = "2.0"
k8s-openapi = { version = "0.23", default-features = false, features = [
"v1_31",
] }
kube = { version = "0.96", default-features = false, features = [
"client",
"jsonpatch",
"runtime",
"rustls-tls",
] }
main_error = "0.1"
num_cpus = "1.16"
number_prefix = "0.4"
opentelemetry = "0.24"
opentelemetry_sdk = { version = "0.24", features = ["rt-tokio"] }
opentelemetry-http = "0.13"
opentelemetry-otlp = { version = "0.17", features = ["serialize"] }
opentelemetry-prometheus = "0.17"
prometheus = "0.13"
prusto = "0.5"
pyo3 = { version = "0.22", features = ["auto-initialize"] }
rand = "0.8"
redis = { version = "0.27", default-features = false, features = [
"acl",
"tokio-rustls-comp",
"cluster",
"cluster-async",
"connection-manager",
"keep-alive",
"script",
] }
regex = "1.10"
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
"gzip",
"json",
"cookies",
] }
rstest = "0.23"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
snafu = "0.8"
# 0.7.4 is the first release that includes https://github.com/launchbadge/sqlx/pull/2927
sqlx = { version = "0.8.2", features = [
"runtime-tokio",
"tls-rustls",
"macros",
"json",
"chrono",
"postgres",
] }
strum = { version = "0.26", features = ["derive"] }
tokio = "1.39"
tower = "0.5"
tracing = "0.1"
tracing-opentelemetry = "0.25"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
trait-variant = "0.1"
url = { version = "2.5", features = ["serde"] }
urlencoding = "2.1"
# For trino-lb-bench
indicatif = "0.17"
[patch.crates-io]
prusto = { git = "https://github.com/sbernauer/prusto.git", branch = "feat/derive-name-attribute" }