blob: 245b082af151d4ce10a90477da9ce5e52d1dc329 (
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
|
[package]
name = "whirl_server"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2018"
description = "Instantiates the sub-servers which a WorldServer *should* accommodate."
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]
# Logging
log = "0.4.14"
# Utility
async-trait = "0.1.52"
num-traits = "0.2.14"
num-derive = "0.3.3"
# Byte Manipulation
bytes = "1.1.0"
byteorder = "1.4.3"
# Serialization
serde = "1.0.135"
serde_derive = "1.0.136"
# TCP
tokio = { version = "1.13.0", features = ["full"] }
tokio-util = { version = "0.6.9", features = ["codec"] }
tokio-stream = "0.1.8"
# Config
whirl_config = { path = "../whirl_config" }
|