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
112 lines (93 loc) · 2.18 KB
/
Copy pathCargo.toml
File metadata and controls
112 lines (93 loc) · 2.18 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[package]
name = "feather-server"
version = "0.5.0"
authors = ["caelunshun <[email protected]>"]
edition = "2018"
[lib]
name = "feather_server"
path = "src/lib.rs"
[[bin]]
name = "feather-server"
path = "src/main.rs"
[dependencies]
# Feather crates
feather-blocks = { path = "../blocks" }
feather-core = { path = "../core" }
feather-item-block = { path = "../item_block" }
feather-codegen = { path = "../codegen" }
# Core ECS + systems
fecs = { git = "https://github.com/feather-rs/fecs", rev = "3a27d8434e0734efcc309ec0aa764bfb699c271d" }
# fecs = { path = "../../../dev/fecs" }
# Concurrency/threading
crossbeam = "0.7"
rayon = "1.3"
parking_lot = { version = "0.10", features = ["deadlock_detection"] }
lock_api = "0.3"
thread_local = "1.0"
# Netorking/IO
tokio = { version = "0.2", features = ["full"] }
tokio-util = { version = "0.2", features = ["codec"] }
futures = "0.3"
bytes = "0.5"
mojang-api = "0.6"
# Crypto
rsa = "0.2"
rsa-der = "0.2"
# Match RSA git master
num-bigint = { version = "0.6", features = ["rand", "i128", "u64_digit"], package = "num-bigint-dig" }
# Hash functions
ahash = "0.3"
base64 = "0.12"
# Math and physics
nalgebra-glm = "0.6"
nalgebra = "0.20"
ncollide3d = "0.22"
# Other data structures
hashbrown = { version = "0.7", features = ["rayon"] }
bitvec = "0.17"
bitflags = "1.2"
heapless = "0.5"
uuid = { version = "0.8", features = ["v4"] }
multimap = "0.8"
smallvec = "1.2"
arrayvec = "0.5"
indexmap = "1.3"
dashmap = "3.7"
# Logging
log = "0.4"
simple_logger = "1.6"
# Serialization/deserialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.5"
hematite-nbt = "0.4"
# RNGs
rand = "0.7"
rand_distr = "0.2.2"
rand_xorshift = "0.2"
# Other
num-derive = "0.3"
num-traits = "0.2"
lazy_static = "1.4"
strum = "0.18"
simdnoise = "3.1"
simdeez = "1.0"
humantime-serde = "1.0"
ctrlc = "3.1"
inventory = "0.1"
derivative = "2.0"
itertools = "0.9"
# Allocators
bumpalo = { version = "3.2", features = ["collections"] }
jemallocator = "0.3"
# Error handling
thiserror = "1.0"
anyhow = "1.0"
[dev-dependencies]
criterion = "0.3"
approx = "0.3"
[[bench]]
name = "worldgen"
harness = false
[features]
nightly = ["hashbrown/nightly", "parking_lot/nightly"]