blob: bbd126eec0b7f08b14c13229a30bb1d330e35f2f (
plain) (
blame)
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 = "whirl"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2018"
description = "The Open-Source WorldServer."
documentation = "https://whirlsplash.org/docs/"
readme = "../../README.rst"
homepage = "https://whirlsplash.org"
repository = "https://github.com/Whirlsplash/whirl"
license = "GPL-3.0-only"
keywords = ["rust", "worldserver", "whirl", "whirlsplash"]
publish = false
[dependencies]
# Environment
dotenv = "0.15.0"
# Logging
log = "0.4.14"
flexi_logger = "0.22.3"
human-panic = "1.0.3"
# simple-error = "0.2.3"
# Utility
async-trait = "0.1.52"
whirl_common = { path = "../whirl_common" }
# Byte Manipulation
bytes = "1.1.0"
byteorder = "1.4.3"
# Serialization
serde = "1.0.136"
serde_derive = "1.0.136"
# CLI
structopt = "0.3.26"
# Config
whirl_config = { path = "../whirl_config" }
# TCP
tokio = { version = "1.13.0", features = ["full"] }
tokio-util = { version = "0.6.9", features = ["codec"] }
tokio-stream = "0.1.8"
# Web-server
whirl_api = { path = "../whirl_api" }
# Prompt
whirl_prompt = { path = "../whirl_prompt" }
# Server
whirl_server = { path = "../whirl_server" }
# Allocator
# [target.'cfg(windows)'.dependencies]
# mimalloc = { version = "0.1.28", default-features = false }
# [target.'cfg(unix)'.dependencies]
# jemallocator = "0.3.2"
# Signal
signal-hook = "0.3.13"
|