aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: c43988bfa0b479a8f5edc727b17b9bbdbbbde5ee (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
[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]
# TCP

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

# Environment
dotenv = "0.15.0"

# Utility
rand = "0.8.3"

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