forked from feather-rs/feather
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (48 loc) · 1.03 KB
/
Copy pathCargo.toml
File metadata and controls
55 lines (48 loc) · 1.03 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
[package]
name = "feather-core"
version = "0.5.0"
authors = ["caelunshun <[email protected]>"]
edition = "2018"
publish = false
[dependencies]
# Feather crates
feather-codegen = { path = "../codegen" }
feather-blocks = { path = "../blocks" }
feather-items = { path = "../items" }
# Networking
tokio = { version = "0.2", features = ["full"] }
tokio-util = { version = "0.2", features = ["codec"] }
cfb8 = "0.3"
aes = "0.3"
flate2 = "1.0"
bytes = "0.5"
byteorder = "1.3"
# Misc.
vek = "0.9"
nalgebra-glm = "0.6"
lazy_static = "1.4"
uuid = "0.8"
log = "0.4"
num-traits = "0.2"
num-derive = "0.3"
strum = "0.18"
strum_macros = "0.18"
# Data structures
hashbrown = { version = "0.7", features = ["serde", "rayon"] }
smallvec = "1.2"
multimap = "0.8"
bitvec = "0.17"
hash32 = "0.1"
hash32-derive = "0.1"
bitflags = "1.2"
# Serialization
serde = { version = "1.0", features = ["derive"] }
hematite-nbt = "0.4"
serde_json = "1.0"
serde_with = "1.4"
# Concurrency
parking_lot = "0.10"
rayon = "1.3"
# Error handling
thiserror = "1.0"
anyhow = "1.0"