aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 3d6973b3abbf56189643d4df05a865ba88b7e9ce (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
[package]
name = "whirl"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2018"
description = "Whirl, an open-source WorldServer implementation in Rust."
documentation = "https://www.whirlsplash.org"
readme = "README.md"
homepage = "https://whirlsplash.org"
license = "GPLv3"
# license-file = "LICENSE"
keywords = ["rust", "worldserver", "whirl", "whirlsplash"]
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
# Environment
dotenv = "0.15.0"

# Logging
log = "0.4.14"
pretty_env_logger = "0.4.0"

# Utility
rand = "0.8.3"
bytes = "1.0.1"

# TCP
[dependencies.tokio]
version = "1.4.0"
features = ["full"]
[dependencies.tokio-util]
version = "0.6.5"
features = ["codec"]
[dependencies.tokio-stream]
version = "0.1.5"

# Utility
[dependencies.phf]
version = "0.8.0"
features = ["macros"]

# Database
[dependencies.sqlx]
version = "0.5.1"
features = ["runtime-async-std-rustls", "sqlite", "macros", "migrate", "chrono", "time", "tls"]