-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (59 loc) · 1.51 KB
/
Cargo.toml
File metadata and controls
67 lines (59 loc) · 1.51 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "netveil"
version = "0.4.2"
edition = "2021"
authors = ["BypassCore Labs <labs@bypasscore.com>"]
license = "MIT"
description = "Protocol-level traffic obfuscation engine for network evasion research"
repository = "https://github.com/bypasscore/netveil"
homepage = "https://bypasscore.com"
documentation = "https://docs.bypasscore.com/netveil"
keywords = ["network", "obfuscation", "dpi-evasion", "traffic-analysis", "security-research"]
categories = ["network-programming", "cryptography"]
rust-version = "1.82"
[lib]
name = "netveil"
path = "src/lib.rs"
[[bin]]
name = "netveil-proxy"
path = "src/bin/proxy.rs"
[dependencies]
thiserror = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
bytes = "1.9"
rand = "0.8"
rand_distr = "0.4"
x25519-dalek = { version = "2.0", features = ["static_secrets"] }
sha2 = "0.10"
hmac = "0.12"
hkdf = "0.12"
chacha20poly1305 = "0.10"
aes-gcm = "0.10"
dashmap = "6.1"
hex = "0.4"
async-trait = "0.1"
tokio = { version = "1.42", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
pin-project-lite = "0.2"
clap = { version = "4.5", features = ["derive"] }
anyhow = "1.0"
[dev-dependencies]
criterion = { version = "0.5", features = ["async_tokio"] }
tokio-test = "0.4"
proptest = "1.5"
[[bench]]
name = "throughput"
harness = false
[[bench]]
name = "obfuscation_overhead"
harness = false
[profile.release]
lto = true
codegen-units = 1
strip = true
[profile.bench]
inherits = "release"
debug = true