aboutsummaryrefslogtreecommitdiff
path: root/crates/whirl_api/Cargo.toml
blob: 3ce7ba3cdf86c84013e437e8785b1a4b75e9ec90 (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
[package]
name = "whirl_api"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2018"
description = "The API, for external interaction."
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]
# Web-server
actix-web = { version = "3.3.2", features = ["rustls"] }
actix-cors = "0.5.4"

# Utility
sysinfo = "0.18.0"
whirl_common = { path = "../whirl_common" }

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

# Logging
log = "0.4.14"