-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (31 loc) · 754 Bytes
/
Cargo.toml
File metadata and controls
39 lines (31 loc) · 754 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
38
39
[workspace]
members = ["mc173", "mc173-server"]
resolver = "2"
[workspace.package]
version = "0.2.0"
edition = "2024"
readme = "README.md"
homepage = "https://github.com/mindstorm38/mc173"
repository = "https://github.com/mindstorm38/mc173"
license = "Apache-2.0"
categories = ["games"]
[workspace.dependencies]
mc173 = { path = "mc173", version = "0.2.0" }
# Network
mio = { version = "1.0.2", features = ["os-poll", "net"] }
# Sync
crossbeam-channel = "0.5.14"
once_cell = "1.20.3"
# Data structures
indexmap = "2.7.1"
flate2 = "1.0.35"
glam = "0.30.0"
arcstr = "1.2.0"
# Utilities
thiserror = "2.0.11"
byteorder = "1.5.0"
# OS
ctrlc = "3.4.1"
# Tracing
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }