forked from spacemeowx2/slp-server-rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (40 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
47 lines (40 loc) · 1.04 KB
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
[package]
name = "slp-server-rust"
version = "3.0.0"
authors = ["spacemeowx2 <spacemeowx2@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["ldn_mitm"]
ldn_mitm = []
benchmarking = []
[dependencies]
log = "0.4.20"
env_logger = "0.11.0"
once_cell = "1.19.0"
async-trait = "0.1.77"
downcast-rs = "1.2.0"
smoltcp = "0.11.0"
lru = "0.12.1"
bytes = "1.5.0"
hex = "0.4.3"
backtrace = "0.3.69"
clap = { version = "4.4.18", features = ["derive"] }
axum = "0.7.4"
futures = "0.3.30"
tokio = { version = "1.35.1", features = ["full"] }
tokio-stream = { version = "0.1.14", features = ["time", "sync"] }
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
async-graphql = "7.0.1"
async-graphql-axum = "7.0.1"
tower-http = { version = "0.5.1", features = ["cors", "trace"] }
http = "1.0.0"
parking_lot = "0.12.1"
socket2 = "0.5.5"
[dev-dependencies]
bencher = "0.1.5"
[[bench]]
name = "udp_server"
path = "bench/udp_server.rs"
harness = false