-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 730 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 730 Bytes
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
[workspace]
members = [
"server",
"tool",
"crypto"
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Sharp Liu <cppcoffee@gmail.com>"]
[workspace.dependencies]
anyhow = "1.0"
nfq = "0.2"
# dashmap = "5.5"
clap = { version = "4.4", features = ["derive"] }
pnet = { version = "0.34", default-features = false, features = ["std", "serde"] }
libc = "0.2"
ipnet = { version = "2.9", default-features = false, features = ["std", "serde"] }
# crypto
rand = "0.8"
rsa = { version = "0.9", default-features = false, features = ["sha2", "std", "pem"] }
# serde
serde = { version = "1.0", default-features = false, features = ["std", "derive"] }
toml = "0.8"
crypto = { path = "./crypto" }