-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (63 loc) · 1.92 KB
/
Cargo.toml
File metadata and controls
72 lines (63 loc) · 1.92 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
[package]
name = "feather-server"
version = "0.1.0"
authors = [ "caelunshun <caelunshun@gmail.com>" ]
edition = "2018"
default-run = "feather-server"
[[bin]]
path = "src/main.rs"
name = "feather-server"
[lib]
path = "src/lib.rs"
[dependencies]
ahash = "0.7"
anyhow = "1"
base = { path = "../base", package = "feather-base" }
base64 = "0.13"
time = { version = "0.3", features = ["local-offset", "formatting", "macros"] }
colored = "2"
common = { path = "../common", package = "feather-common" }
crossbeam-utils = "0.8"
ecs = { path = "../ecs", package = "feather-ecs" }
fern = "0.6"
flate2 = "1"
flume = "0.10"
futures-lite = "1"
hematite-nbt = { git = "https://github.com/PistonDevelopers/hematite_nbt" }
log = "0.4"
md-5 = "0.9"
num-bigint = "0.4"
num-traits = "0.2"
once_cell = "1"
parking_lot = "0.11"
plugin-host = { path = "../plugin-host", package = "feather-plugin-host" }
protocol = { path = "../protocol", package = "feather-protocol" }
quill-common = { path = "../../quill/common" }
rand = "0.8"
ring = "0.16"
rsa = "0.5"
rsa-der = "0.3"
base64ct = "1"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
sha-1 = "0.9"
tokio = { version = "1", features = [ "full" ] }
toml = "0.5"
ureq = { version = "2", features = [ "json" ] }
utils = { path = "../utils", package = "feather-utils" }
uuid = "0.8"
slab = "0.4"
libcraft-core = { path = "../../libcraft/core" }
libcraft-items = { path = "../../libcraft/items" }
worldgen = { path = "../worldgen", package = "feather-worldgen" }
[features]
default = [ "plugin-cranelift" ]
# Use zlib-ng for faster compression. Requires CMake.
zlib-ng = [ "flate2/zlib-ng-compat" ]
# Use Cranelift to JIT-compile plugins. Pure Rust
# but produces slower code than LLVM.
plugin-cranelift = [ "plugin-host/cranelift" ]
# Use LLVM to JIT-compile plugins. Produces
# very fast code, but requires LLVM to be installed
# on the build system. May impact startup times.
plugin-llvm = [ "plugin-host/llvm" ]