-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (60 loc) · 1.55 KB
/
Copy pathCargo.toml
File metadata and controls
65 lines (60 loc) · 1.55 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
[package]
name = "feather-server"
version = "0.1.0"
authors = ["caelunshun <caelunshun@gmail.com>"]
edition = "2021"
default-run = "feather-server"
[[bin]]
path = "src/main.rs"
name = "feather-server"
[lib]
path = "src/lib.rs"
[dependencies]
ahash = "0.7"
anyhow = "1"
base64 = "0.13"
base64ct = "1"
colored = "2"
common = { path = "../common", package = "feather-common" }
const_format = "0.2.22"
ctrlc = "3"
crossbeam-utils = "0.8"
either = "1.6.1"
fern = "0.6"
flate2 = "1"
flume = "0.10"
futures-lite = "1"
hematite-nbt = { git = "https://github.com/PistonDevelopers/hematite_nbt" }
humantime-serde = "1"
indexmap = { version = "1", features = ["serde"] }
itertools = "0.10.3"
konst = "0.2.13"
libcraft = { path = "../../libcraft" }
log = "0.4"
md-5 = "0.10"
num-bigint = "0.4"
num-traits = "0.2"
once_cell = "1"
parking_lot = "0.12"
protocol = { path = "../protocol", package = "feather-protocol" }
quill = { path = "../../quill" }
rand = "0.8"
ring = "0.16"
rsa = "0.5"
rsa-der = "0.3"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
sha-1 = "0.10"
slotmap = "1"
time = { version = "0.3", features = ["local-offset", "formatting", "macros"] }
tokio = { version = "1", features = [ "full" ] }
toml = "0.5"
ureq = { version = "2", features = [ "json" ] }
utils = { path = "../utils", package = "feather-utils" }
uuid = "0.8"
vane = { path = "../../vane" }
# Built-in plugins
feather-world-format-plugin = { path = "../../builtin-plugins/world-format" }
[features]
# Use zlib-ng for faster compression. Requires CMake.
zlib-ng = ["flate2/zlib-ng-compat"]