aboutsummaryrefslogtreecommitdiff
path: root/crates/whirl_api/Cargo.toml
blob: 0f955d0ba77697a5cf800415ef16f51d7d8a1289 (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
[package]
name = "whirl_api"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2018"
description = "Enables for remote interaction"
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]
# Web-server
axum = "0.4.4"
hyper = "0.14.13"

# Utility
sysinfo = "0.20.5"
whirl_common = { path = "../whirl_common" }
tokio = { version = "1.13.0", features = ["full"] }
num-traits = "0.2.14"

# Serialization
serde = "1.0.133"
serde_derive = "1.0.133"

# Logging
log = "0.4.14"

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

# Web
curl = "0.4.42"