-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (40 loc) · 1.26 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
[package]
name = "api-informatics-frs-helper"
version = "1.4.0"
edition = "2021"
description = "A RESTful API designed to gather more information related to Informatics FRS Helper. It provides several endpoints to access data related to courses, lecturers, and classes."
authors = ["Mohamad Kholid Bughowi <[email protected]>"]
homepage = "https://api-informatics-frs-helper.fly.dev"
repository = "https://github.com/albugowy15/api-informatics-frs-helper"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.95"
askama = "0.12.1"
axum = { version = "0.8.1", features = ["tracing"] }
axum-extra = "0.10.0"
dotenvy = "0.15.7"
hyper = "1.6.0"
rustls = "0.23.22"
serde = "1.0.217"
serde_json = { version = "1.0.138", features = ["preserve_order"] }
sqlx = { version = "0.8.3", features = [
"runtime-tokio",
"tls-rustls",
"mysql",
] }
tokio = { version = "1.43.0", features = [
"rt-multi-thread",
"macros",
"net",
"signal",
] }
tower = { version = "0.5.2", features = ["buffer", "limit", "util"] }
tower-http = { version = "0.6.2", features = [
"fs",
"trace",
"timeout",
"cors",
"compression-gzip",
] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }