-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
23 lines (21 loc) · 953 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
[package]
name = "somsiad-api"
version = "0.1.0"
edition = "2021"
publish = false
license = "GPL-3.0"
authors = [ "Marcin Mikuła <[email protected]>", "Piotr Jakóbczyk", "Piotr Skóra", "Marcel Maciaszczyk", "Jakub Jastrząb" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = { version = "0.5.0-rc.2", features = ["json", "secrets"] }
serde = { version = "1.0.145", features = [ "derive" ] }
bcrypt = "0.13.0"
nanoid = "0.4.0"
lettre = { version = "0.10.1", features = [ "tokio1-native-tls", "tokio1", "sendmail-transport", "serde" ] }
anyhow = "1.0.51"
validator = { version = "0.16.0", features = ["derive"] }
serde_json = {version = "1.0.86", features = ["raw_value"] }
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "mysql", "macros", "chrono", "json"] }
dotenv = "0.15.0"
chrono = { version = "0.4.22", features = ["serde"] }
reqwest = "0.11.12"