aboutsummaryrefslogtreecommitdiff
path: root/crates/whirl_server/Cargo.toml
blob: 11486c1b86ee2ee657091762e1d755a39c809ab5 (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
[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"
# license-file = "LICENSE"
keywords = ["rust", "worldserver", "whirl", "whirlsplash"]
publish = false

[dependencies]
# Logging
log = "0.4.14"

# Utility
async-trait = "0.1.50"
num-traits = "0.2.14"
num-derive = "0.3.3"

# Byte Manipulation
bytes = "1.0.1"
byteorder = "1.4.3"

# Serialization
serde = "1.0.126"
serde_derive = "1.0.126"

# TCP
tokio = { version = "1.7.1", features = ["full"] }
tokio-util = { version = "0.6.7", features = ["codec"] }
tokio-stream = "0.1.6"

# Config
whirl_config = { path = "../whirl_config" }