-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (68 loc) · 1.53 KB
/
Cargo.toml
File metadata and controls
72 lines (68 loc) · 1.53 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
68
69
70
71
72
[package]
name = "corelib"
version = "2.0.0"
edition = "2024"
[dependencies]
# --- crypto / hash ---
sha2 = "0.10.9"
sha1 = "0.10"
hmac = "0.12.1"
rc4 = "0.1"
cipher = "0.4"
aes = "0.8.4"
ctr = "0.9.2"
ccm = "0.5.0"
crc = "3.3.0"
md-5 = "0.10.6"
aes-gcm = "0.10.3"
once_cell = "1.21.3"
parking_lot = "0.12.5"
flume = "0.11.1"
async-trait = "0.1.89"
num_enum = "0.7.5"
anyhow = "1.0.100"
log = { version = "0.4.28", features = [
"max_level_trace",
"release_max_level_trace",
] }
serde = "1"
serde_json = "1"
serde_repr = "0.1"
erased-serde = "0.4"
byteorder = "1.5"
web-time = "1"
bevy_ecs = "0.14"
pb = { path = "../pb" }
prost = "0.14.1"
nanorand = "0.8"
hex = "0.4.3"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "1", default-features = false, features = [
"rt",
"rt-multi-thread",
"macros",
"time",
"sync",
"io-util",
"net",
] }
tokio-util = "0.7"
ipstack = { git = "http://github.com/searchstars/ipstack-astrobox/", branch = "main" }
udp-stream = { version = "0.0", default-features = false }
pcap-file = "2.0.0"
packet_crafter = "0.2.0"
dhcproto = "0.14.0"
etherparse = { version = "0.19", default-features = false, features = ["std"] }
chrono = "0.4"
[target.'cfg(target_arch = "wasm32")'.dependencies]
tokio = { version = "1", default-features = false, features = [
"macros",
"rt",
"time",
"sync",
"io-util",
] }
futures = "0.3"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3", features = ["console"] }
gloo-timers = { version = "0.3", features = ["futures"] }