-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 1.02 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
[package]
name = "load-s3-agent"
version = "0.10.11"
edition = "2024"
[lib]
name = "load_s3_agent"
path = "src/lib.rs"
[[bin]]
name = "load-s3-agent"
path = "src/main.rs"
[dependencies]
axum = "0.8.4"
bundles_rs = { git = "https://github.com/loadnetwork/bundles-rs.git", branch = "main"}
dotenvy = "0.15.7"
reqwest = { version = "0.12.23", features = ["json"] }
aws-config = { version= "1.8.3", features = ["behavior-version-latest"] }
aws-sdk-s3= { version = "1.100.0", features = ["rt-tokio"] }
anyhow = "1.0.99"
serde_json = "1.0.142"
serde = "1.0.219"
tokio = {version = "1.47.1", features = ["full"] }
axum-extra = { version = "0.10.1", features = ["multipart"] }
tower = "0.5.2"
tower-http = { version = "0.6.6", features = ["cors", "limit"] }
headers = "0.4.1"
futures = "0.3.31"
tokio-util = "0.7.16"
clickhouse = { version = "0.12.1", features = ["rustls-tls"] }
chrono = { version = "0.4.39", default-features = false, features = ["clock", "serde"] }
once_cell = "1.20.2"
base64 = "0.22.1"
hex = "0.4.3"
sha2 = "0.10.9"
sha3 = "0.10.8"