aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@submelon.tech>2018-08-26 01:38:28 -0400
committerKevin Hoerr <kjhoerr@submelon.tech>2018-08-31 23:24:45 -0400
commit0965d62be00a7820f97284704dc71f37e661b412 (patch)
tree5a5c9d69062e24aa926eb30447c5ff27e0a65492 /Cargo.toml
parent1e3946f04b5b602d3869a285d897acb0ba2b3c35 (diff)
downloadaugust-offensive-0965d62be00a7820f97284704dc71f37e661b412.tar.gz
august-offensive-0965d62be00a7820f97284704dc71f37e661b412.tar.bz2
august-offensive-0965d62be00a7820f97284704dc71f37e661b412.zip
Begin migration to Rust; Add actix-web, diesel as main dependencies
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml18
1 files changed, 18 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..26a322f
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,18 @@
+[package]
+name = "august-offensive"
+version = "0.1.0"
+authors = ["Kevin J Hoerr <kjhoerr@submelon.tech>"]
+description = "Turn-based strategy game as a web service"
+license = "ISC"
+readme = "README.md"
+repository = "https://gitlab.com/kjhoerr/august-offensive.git"
+
+[dependencies]
+dotenv = "0.10"
+env_logger = "0.5"
+error-chain = "^0.12"
+
+diesel = { version = "1.3.0", features = ["postgres"] }
+
+actix = "0.7"
+actix-web = "^0.7" \ No newline at end of file