aboutsummaryrefslogtreecommitdiff
path: root/crates/whirl_server/Cargo.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-20 17:05:59 +0000
committerFuwn <[email protected]>2021-05-20 17:05:59 +0000
commit9dbc613765de8ab7dfa8e1374cf6661dcfd56bc8 (patch)
tree8cfff6a23bb72db2660e68c63a8cf9d0539a061f /crates/whirl_server/Cargo.toml
parentfeat(readme): add sqlfluff as a dev dep (diff)
downloadwhirl-9dbc613765de8ab7dfa8e1374cf6661dcfd56bc8.tar.xz
whirl-9dbc613765de8ab7dfa8e1374cf6661dcfd56bc8.zip
refactor(global): move crates around, stricter module isolation
Diffstat (limited to 'crates/whirl_server/Cargo.toml')
-rw-r--r--crates/whirl_server/Cargo.toml37
1 files changed, 37 insertions, 0 deletions
diff --git a/crates/whirl_server/Cargo.toml b/crates/whirl_server/Cargo.toml
new file mode 100644
index 0000000..be88f2f
--- /dev/null
+++ b/crates/whirl_server/Cargo.toml
@@ -0,0 +1,37 @@
+[package]
+name = "whirl_server"
+version = "0.1.0"
+authors = ["Fuwn <[email protected]>"]
+edition = "2018"
+description = "Whirl, an open-source WorldServer implementation in Rust."
+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]
+# Logging
+log = "0.4.14"
+
+# Utility
+async-trait = "0.1.50"
+
+# Byte Manipulation
+bytes = "1.0.1"
+byteorder = "1.4.3"
+
+# Serialization
+serde = "1.0.126"
+serde_derive = "1.0.126"
+
+# TCP
+tokio = { version = "1.6.0", features = ["full"] }
+tokio-util = { version = "0.6.7", features = ["codec"] }
+tokio-stream = "0.1.6"
+
+# Config
+whirl_config = { path = "../whirl_config" }