chore: Add bootstrapped Cargo project
This commit is contained in:
parent
2fd8fa2321
commit
106ade6e41
3 changed files with 1825 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
.envrc
|
||||||
|
/target/
|
||||||
|
**/*.rs.bk
|
1811
Cargo.lock
generated
Normal file
1811
Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
11
Cargo.toml
Normal file
11
Cargo.toml
Normal 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"
|
Loading…
Reference in a new issue