-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 849 Bytes
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
"crates/elytra-protocol",
"crates/elytra-logger",
"crates/elytra-server",
"crates/elytra-common",
"crates/elytra-nbt",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
tokio = { version = "1.36.0", features = ["full"] }
tokio-util = { version = "0.7.10", features = ["codec"] }
bytes = "1.5.0"
futures = "0.3.30"
uuid = { version = "1.7.0", features = ["v3"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
byteorder = "1.5.0"
flate2 = "1.0.28"
libc = "0.2.153"
windows-sys = { version = "0.52.0", features = ["Win32_System_Time", "Win32_Foundation", "Win32_System_SystemServices"] }
once_cell = "1.20.3"
tokio-test = "0.4.3"
assert_matches = "1.5"
[profile.dev]
incremental = true
[profile.dev.package."*"]
opt-level = 2