-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (36 loc) · 1.04 KB
/
Copy pathCargo.toml
File metadata and controls
38 lines (36 loc) · 1.04 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
[package]
name = "feather-base"
version = "0.1.0"
authors = [ "caelunshun <caelunshun@gmail.com>" ]
edition = "2018"
[dependencies]
ahash = "0.4"
anyhow = "1"
arrayvec = { version = "0.5", features = [ "serde" ] }
bitflags = "1"
bitvec = "0.21"
blocks = { path = "../blocks", package = "feather-blocks" }
byteorder = "1"
generated = { path = "../generated", package = "feather-generated" }
hematite-nbt = { git = "https://github.com/PistonDevelopers/hematite_nbt" }
libcraft-blocks = { path = "../../libcraft/blocks" }
libcraft-core = { path = "../../libcraft/core" }
libcraft-items = { path = "../../libcraft/items" }
libcraft-particles = { path = "../../libcraft/particles" }
libcraft-text = { path = "../../libcraft/text" }
nom = "5"
nom_locate = "2"
num-derive = "0.3"
num-traits = "0.2"
parking_lot = "0.11"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
serde_with = "1"
smallvec = "1"
thiserror = "1"
uuid = { version = "0.8", features = [ "serde" ] }
vek = "0.14"
[dev-dependencies]
rand = "0.8"
rand_pcg = "0.3"
serde_test = "1"