chore: Add bootstrapped Cargo project

This commit is contained in:
Vincent Ambo 2018-04-08 15:48:49 +02:00
parent 2fd8fa2321
commit 106ade6e41
3 changed files with 1825 additions and 0 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
.envrc
/target/
**/*.rs.bk

1811
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

11
Cargo.toml Normal file
View file

@ -0,0 +1,11 @@
[package]
name = "converse"
version = "0.1.0"
authors = ["Vincent Ambo <mail@tazj.in>"]
[dependencies]
actix = "0.5"
actix-web = { git="https://github.com/actix/actix-web.git" }
env_logger = "0.5"
diesel = { version = "1.0", features = ["postgres", "chrono"]}
chrono = "0.4"