aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: db72de2eee30e53c20ba772355c6bfa046d237e2 (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
[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
rusqlite = "0.24.2"