-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (48 loc) · 1.6 KB
/
Cargo.toml
File metadata and controls
50 lines (48 loc) · 1.6 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
[workspace]
members = [
"components/*",
]
resolver = "2"
[workspace.package]
version = "2.0.4"
authors = ["Sebastian Beyvers <sb@pus.de>", "Jannis Hochmuth <jannis.hochmuth@cb.jlug.de>", "Lukas Brehm <lukas.brehm@cb.jlug.de>"]
edition = "2021"
repository = "https://github.com/ArunaStorage/aruna"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
ahash = "0.8.11"
anyhow = "1.0.98"
aruna-rust-api = "2.0.2"
async-channel = "2.3.1"
async-trait = "0.1.88"
aws-config = "1.6.2"
aws-sdk-s3 = "1.83.0"
base64 = "0.22.1"
cel-interpreter = "0.9.1"
cel-parser = "0.8.1"
chrono = "0.4.38"
dashmap = {version = "6.1.0", features = ["serde"]}
deadpool-postgres = "0.14.1"
diesel-ulid = "0.3.2"
dotenvy = "0.15.7"
futures = "0.3.31"
hex = "0.4.3"
hmac = "0.12.1"
jsonwebtoken = { version = "9.3.1", features = ["use_pem"] }
lazy_static = "1.5.0"
postgres-from-row = "=0.5.2"
postgres-types = { version = "0.2.9", features = ["derive"] }
prost-wkt-types = "0.5.1"
rand = "0.9.2"
reqsign = { version = "0.16.3"}
reqwest = { version = "0.12.15", features = ["stream", "json"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = { version = "1.0.140", features = ["raw_value"] }
sha2 = {version = "0.10.8", features = ["std", "asm", "sha2-asm"]}
time = "0.3.41"
tokio = { version = "1.44.2", features = ["full", "tracing"] }
tokio-postgres = { version = "0.7.13", features = ["with-uuid-1", "with-serde_json-1", "with-chrono-0_4"] }
tokio-stream = { version = "0.1.17", features = ["net"] }
tonic = { version = "0.11.0", features = ["tls", "tls-roots"] }
tower = { version = "0.5.2", features = ["retry"] }
url = "2.5.4"