-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (29 loc) · 916 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
[package]
name = "redlimit"
version = "0.2.10"
edition = "2021"
description = "A redis-based distributed rate limit HTTP service."
publish = false
repository = "https://github.com/teambition/redlimit"
license-file = "LICENSE"
keywords = ["ratelimit", "redis", "distributed"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rustls = "0.20"
rustls-pemfile = "1"
actix-web = { version = "4", features = ["rustls"] }
actix-utils = "3"
futures-core = "0.3"
tokio = { version = "1.27", features = ["full"] }
tokio-util = "0.7"
rustis = { version = "0.10", features = ["pool"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
log = { version = "0.4", features = ["kv_unstable_serde"] }
bb8 = "0.8"
async-trait = "0.1"
config = { version = "0.13", features = ["toml"] }
anyhow = "1"
structured-logger = "0.5"
[profile.release]
lto = true