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