-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 788 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 788 Bytes
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 = "camo-rs"
description = "An HTTP proxy for asset files."
authors = ["Dennis Schubert <mail@dennis-schubert.de>"]
repository = "https://github.com/denschub/camo-rs"
version = "1.4.5"
edition = "2024"
default-run = "camo"
[profile.release]
codegen-units = 1
lto = "fat"
[dependencies]
axum = "0.8"
clap = { version = "4", features = ["cargo", "derive", "env", "wrap_help"] }
hex = "0.4"
hmac = "0.12"
http-body-util = "0.1"
hyper = { version = "1", features = ["full"] }
hyper-rustls = { version = "0.27", features = ["http2"] }
hyper-util = "0.1"
sha-1 = "0.10"
thiserror = "2.0"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json"] }
url = "2"
[dev-dependencies]
reqwest = "0.13"
wiremock = "0.6"