-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 966 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (34 loc) · 966 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
32
33
34
35
36
37
[package]
name = "isakmp"
version = "0.1.0"
edition = "2024"
authors = ["Dmitry Pankratov <dmitry@pankratov.net>"]
[dependencies]
bitflags = "2"
bytes = { version = "1", features = ["serde"] }
anyhow = "1"
byteorder = "1"
rand = "0.10"
hex = "0.4"
tokio = { version = "1", features = ["time", "net", "sync", "rt", "io-util" ] }
tokio-util = { version = "0.7", features = ["codec"] }
futures = "0.3"
openssl = "0.10"
async-trait = "0.1"
tracing = "0.1"
itertools = "0.15"
cryptoki = "0.12"
serde = { version = "1.0.208", features = ["rc", "derive"] }
rmp-serde = "1"
pnet_packet = "0.35"
pnet_macros = "0.35"
pnet_macros_support = "0.35"
ipnet = "2"
secrecy = "0.10"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.61", features = ["Win32_Foundation", "Win32_Security_Cryptography"] }
[dev-dependencies]
opener = "0.8"
regex = "1"
tokio = { version = "1", features = ["full"]}
tracing-subscriber = { version = "0.3" , features = ["env-filter"]}