-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 1.09 KB
/
Copy pathCargo.toml
File metadata and controls
33 lines (30 loc) · 1.09 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
[package]
name = "s3proxy"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hyper = { version = "0.14", features = ["stream"] }
tokio = { version = "1", features = ["full"] }
bytes = "1.1"
futures-util = "0.3"
serde = { version = "1.0.192", features = ["derive"] }
serde_urlencoded = "0.7.1"
tokio-util = "0.7.10"
quick-xml = { version = "0.31.0", features = ["serialize"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing-log = "0.2.0"
sha2 = "0.10.8"
reqwest = { version = "0.11.22", default-features = false, features = ["rustls-tls", "stream"] }
thiserror = "1.0.50"
chrono = { version = "0.4.31", features = ["serde"] }
serde_json = "1.0.108"
clap = { version = "4.4.8", features = ["derive", "env"] }
blake3 = { version = "1.5.0", features = ["neon"] }
hyper-rustls = { version = "0.24.2", features = ["webpki-roots"] }
aws-sigv4 = "1.0.1"
aws-credential-types = { version = "1.0.1", features = ["hardcoded-credentials"] }
[profile.release]
strip = true
lto = "fat"