diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..1a7529b --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,36 @@ +[package] +name = "joklerpoint" +version = "0.1.0" +authors = ["Jokler <jokler@protonmail.com>"] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +actix = "0.9.0" +actix-web = "2.0.0" +actix-rt = "1.1.1" +actix-http = "1.0.1" +actix-identity = "0.2.1" +actix-form-data = "0.4.0" +askama = "0.9.0" +r2d2 = "0.8.8" +r2d2-diesel = "1.0.0" +env_logger = "0.7.1" +log = "0.4.8" +argonautica = "0.2.0" +dotenv = "0.15.0" +derive_more = "0.99.7" +chrono = "0.4.11" +actix-files = "0.2.2" +diesel_migrations = "1.4.0" +num-format = "0.4.0" +serde_urlencoded = "0.6.1" + +[dependencies.serde] +features = ["derive"] +version = "1.0.111" + +[dependencies.diesel] +features = ["mysql", "chrono"] +version = "1.4.4" |
