diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2021-04-18 16:25:48 +0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2021-04-18 16:25:48 +0400 |
| commit | 0ad35b9b50dfaa1083f3f5acc633ec769bc10e37 (patch) | |
| tree | 4acfde7b0b09fb258002055a8d0e2d5e1a9c5c3e /Cargo.toml | |
Initial commit
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..eb082b5 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "rust-playground" +version = "0.1.0" +authors = ["Andrew Guschin <saintruler@gmail.com>"] +edition = "2018" + +[dependencies] +valico = "2" +serde_json = "1.0.64" +serde = { version = "1.0.125", features = ["derive"] } +actix-web = "3" +diesel = { version = "1.4.4", features = ["sqlite"] } +dotenv = "0.15.0" + |