diff options
| author | Kevin J Hoerr <kjhoerr@submelon.tech> | 2018-08-26 01:38:28 -0400 |
|---|---|---|
| committer | Kevin Hoerr <kjhoerr@submelon.tech> | 2018-08-31 23:24:45 -0400 |
| commit | 0965d62be00a7820f97284704dc71f37e661b412 (patch) | |
| tree | 5a5c9d69062e24aa926eb30447c5ff27e0a65492 /Cargo.toml | |
| parent | 1e3946f04b5b602d3869a285d897acb0ba2b3c35 (diff) | |
| download | august-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.toml | 18 |
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 |
