-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (47 loc) · 1.57 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "scholarmate_api"
version = "1.0.0"
authors = ["Sleepy4k <sarahpalastrin@gmail.com>"]
description = "an API service made for the needs of scholarship registration for students to ease the burden of registering for lectures"
readme = "./README.md"
homepage = "https://github.com/Sleepy4k/rust-scholarmate-api"
repository = "https://github.com/Sleepy4k/rust-scholarmate-api"
keywords = ["actix", "actix-web", "scholarmate"]
categories = ["web-programming", "web-programming::http-server", "web-programming::http-client"]
license = "MIT"
edition = "2021"
default-run = "scholarmate_api"
[workspace]
[dependencies]
actix = "0.13.0"
tokio = { version = "1", features = ["full"] }
anyhow = "1.0"
time = "0.3.21"
serde_json = "1.0"
serde = "1.0"
actix-web = "4.2.1"
actix-cors = "0.6"
actix-web-actors = "4.2.0"
dotenv = "0.15.0"
sqlx = { version = "0.7", features = [ "runtime-async-std", "tls-rustls", "postgres", "chrono" ] }
env_logger = "0.10.0"
lazy_static = "1.4"
async_once = "0.2.6"
chrono = { version = "0.4.22", features = ["serde"] }
jsonwebtoken = "8.3.0"
rust-argon2 = "1.0"
futures-util = { version = "0.3", default-features = false, features = ["std"] }
validator = { version = "0.16", features = ["derive"] }
xlsxwriter = "0.6.0"
serde_merge = "0.1.3"
csv = "1.2"
lettre = "0.10.4"
tokenizers = "0.13.3"
maud = "0.25.0"
rand = "0.8.4"
regex = "1.4"
futures = "0.3.28"
otp = { git = "https://github.com/Sleepy4k/rust-otp-code", branch = "main" }
rate_limit = { git = "https://github.com/Sleepy4k/rust-actix-rate-limit", branch = "main" }
[dev-dependencies]
pretty_assertions = "1"