-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
36 lines (33 loc) · 915 Bytes
/
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
[package]
name = "oauth-proxy-rs"
version = "0.1.5"
authors = ["Untoldwind <landru@untoldwind.net>"]
edition = "2018"
[dependencies]
anyhow = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
warp = { version = "0", default-features = false }
reqwest = { version = "0", default-features = false, features = ["stream", "rustls-tls"]}
clap = { version = "4", features = ["cargo", "derive", "env"] }
openid = "0"
log = "0"
tracing = "0"
tracing-subscriber = { version = "0", features = ["json"] }
futures = "0"
bytes = "1"
headers = "0"
chrono = "0"
cookie = "0"
time = "0"
serde = "1"
hmac-sha256 = { version = "1", features = ["traits"] }
digest = "0"
uuid = { version = "0", features = ["v4"] }
base64 = "0"
[profile.release]
opt-level = 3
debug = false
lto = true
# panic = "abort"
[target.'x86_64-unknown-linux-musl'.dependencies]
openssl-sys = { version = "0", features = ["vendored"] }