-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
60 lines (57 loc) · 1.26 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[workspace]
members = [
"src/idempotent-proxy-types",
"src/idempotent-proxy-server",
"src/idempotent-proxy-canister",
"examples/eth-canister",
"examples/eth-canister-lite",
]
resolver = "2"
[profile.release]
debug = false
lto = true
strip = true
opt-level = 's'
[workspace.package]
version = "1.2.2"
edition = "2021"
repository = "https://github.com/ldclabs/idempotent-proxy"
keywords = ["idempotent", "reverse", "proxy", "icp"]
categories = ["web-programming"]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
axum = { version = "0.7", features = [
"http1",
"http2",
"json",
"macros",
"matched-path",
"tokio",
"query",
], default-features = true }
axum-server = { version = "0.7", features = ["tls-rustls"] }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = [
"rustls-tls",
"rustls-tls-native-roots",
"json",
"gzip",
"stream",
"http2",
# "hickory-dns",
], default-features = true }
dotenvy = "0.15"
futures = "0.3"
log = "0.4"
structured-logger = "1"
http = "1"
rustis = { version = "0.13", features = ["pool"] }
async-trait = "0.1"
serde = "1"
serde_json = "1"
serde_bytes = "0.11"
ciborium = "0.2"
k256 = { version = "0.13", features = ["ecdsa"] }
ed25519-dalek = "2"
base64 = "0.22"
sha3 = "0.10"