-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
40 lines (36 loc) · 1.13 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
[package]
name = "idempotent-proxy-server"
description = "Idempotent proxy server"
repository = "https://github.com/ldclabs/idempotent-proxy/tree/main/src/idempotent-proxy-server"
publish = true
version.workspace = true
edition.workspace = true
keywords.workspace = true
categories.workspace = true
license.workspace = true
[[bin]]
name = "idempotent-proxy-server"
[dependencies]
axum = { workspace = true }
axum-server = { workspace = true }
tokio = { workspace = true }
futures = { workspace = true }
reqwest = { workspace = true }
dotenvy = { workspace = true }
log = { workspace = true }
structured-logger = { workspace = true }
http = { workspace = true }
rustis = { workspace = true }
async-trait = { workspace = true }
serde = { workspace = true }
serde_bytes = { workspace = true }
serde_json = { workspace = true }
ciborium = { workspace = true }
k256 = { workspace = true }
ed25519-dalek = { workspace = true }
base64 = { workspace = true }
idempotent-proxy-types = { path = "../idempotent-proxy-types", version = "1" }
[dev-dependencies]
hex = { package = "hex-conservative", version = "0.2", default-features = false, features = [
"alloc",
] }