-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
19 lines (17 loc) · 724 Bytes
/
Cargo.toml
File metadata and controls
19 lines (17 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
name = "serverless-redis"
version = "0.2.0"
edition = "2021"
[dependencies]
axum = { version = "0.8", default-features = false, features = ["json", "http1", "tokio", "macros"] }
tokio = { version = "1", default-features = false, features = ["rt", "macros", "net", "time"] }
redis = { version = "1.0", features = ["tokio-comp", "connection-manager"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
base64 = "0.22"
tower-http = { version = "0.6", features = ["auth", "validate-request"] }
anyhow = "1"
urlencoding = "2.1.3"
[dev-dependencies]
tower = { version = "0.5", features = ["util"] }
axum = { version = "0.8", default-features = false, features = ["json", "http1", "tokio", "macros"] }