-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
44 lines (35 loc) · 1.16 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
[package]
name = "kiryuu"
version = "0.3.0"
edition = "2021"
description = "A highly performant HTTP Bittorrent tracker"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4"
serde = { version = "1.0.136", features = ["derive"] }
serde_qs = "0.9.1"
redis = { version = "0.27.5", features = ["aio", "tokio-comp", "connection-manager"] }
rand = "*"
clap = { version = "4.0.30", features = ["derive"] }
opentelemetry = { version = "0.19", features = ["rt-tokio"], optional = true }
opentelemetry-jaeger = { version = "0.18", features = ["rt-tokio"], optional = true }
opentelemetry-otlp = { version = "0.12.0", features = ["http-proto", "reqwest-client", "reqwest-rustls"], optional = true }
[features]
tracing = ["dep:opentelemetry", "dep:opentelemetry-jaeger", "dep:opentelemetry-otlp"]
[[example]]
name = "redis_zscore"
path = "examples/redis_zscore.rs"
[[example]]
name = "redis_zset"
path = "examples/redis_zset.rs"
[dev-dependencies]
criterion = "0.4"
[[bench]]
name = "url_enc_to_hex"
harness = false
[[bench]]
name = "make_redis_keys"
harness = false
[[bench]]
name = "ip_str_to_bytes"
harness = false