-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (36 loc) · 1.04 KB
/
Copy pathCargo.toml
File metadata and controls
45 lines (36 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
[package]
name = "server"
version = { workspace = true }
edition = { workspace = true }
authors = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "netguard-server"
path = "src/bin/server.rs"
[dependencies]
anyhow = { workspace = true }
nfq = { workspace = true }
clap = { workspace = true }
pnet = { workspace = true }
libc = { workspace = true }
ipnet = { workspace = true }
# crypto
rand = { workspace = true }
rsa = { workspace = true }
# serde
serde = { workspace = true }
toml = { workspace = true }
crypto = { workspace = true }
# data struct
#dashmap = "5.5"
hashbrown = "0.14"
arc-swap = "1.6"
# logger
log = { version = "0.4", features = ["serde", "kv_unstable_std"] }
tracing = { version = "0.1", features = ["std", "log"] }
tracing-subscriber = { version = "0.3", features = ["std", "fmt", "env-filter"] }
humantime = "2.1"
signal-hook = { version = "0.3", features = ["iterator", "extended-siginfo"] }
rlimit = "0.10"
# mallocator
tikv-jemallocator = "0.5"