forked from mat-1/matscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (45 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
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "matscan"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
azalea-chat = { git = "https://github.com/azalea-rs/azalea", default-features = false }
bson = "2.11.0"
anyhow = "1.0.86"
default-net = "0.22.0"
dotenv = "0.15.0"
libc = "0.2.158"
perfect_rand = "0.2.0"
pnet = "0.35.0"
pnet_macros = "0.35.0"
pnet_macros_support = "0.35.0"
rand = "0.8.5"
regex = "1.10.6"
serde = "1.0.208"
serde_json = "1.0.127"
tokio = { version = "1.39.3", features = ["rt"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
futures-util = "0.3.30"
lru-cache = "0.1.2"
toml = "0.8.19"
reqwest = { version = "0.12.7", default-features = false, features = [
"json",
"rustls-tls",
] }
parking_lot = "0.12.3"
enum-utils = "0.1.2"
flate2 = "1.0.32"
async-trait = "0.1.81"
mongodb = "3.0.1"
tracing-appender = "0.2.3"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
# [profile.release]
# debug = true
[features]
benchmark = []
[[bench]]
name = "my_benchmark"
harness = false