-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (29 loc) · 931 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "facemash-backend"
version = "0.1.0"
edition = "2021"
description = "The backend for Facemash"
authors = ["JasonkayZK [email protected]"]
repository = "https://github.com/FacemashHub/facemash-backend"
homepage = "https://github.com/FacemashHub/facemash-backend"
url = "https://github.com/FacemashHub/facemash-backend"
readme = "README.md"
license-file = "LICENSE"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-multipart = "0.4"
actix-web = "4"
actix-rt = "2.7.0"
actix-files = "0.6.2"
log = "0.4"
chrono = "0.4"
rust-crypto = "0.2.36"
serde = { version = "1.0", features = ["derive"] }
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
sanitize-filename = "0.4"
uuid = { version = "1", features = ["v4"] }
mongodb = "2"
lazy_static = "1.4.0"
async_once = "0.2.6"
dotenv = "0.15"
rs-snowflake = "0.6.0"