-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (34 loc) · 1.05 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
[package]
name = "batata"
version = "0.1.0"
authors = ["Tianyu Liang <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-macros = "0.2.4"
actix-service = "2.0.2"
actix-utils = "3.0.1"
actix-web = {version = "4.9.0"}
anyhow = "1.0.95"
base64 = "0.22.1"
bcrypt = "0.16.0"
bytes = "1.9.0"
chrono = "0.4.39"
config = "0.14.1"
futures-core = "0.3.30"
jsonwebtoken = "9.3.0"
pin-project-lite = "0.2.16"
regex = "1.11.1"
rust-crypto = "0.2.36"
sea-orm = {version = "1.1.4", features = ["sqlx-mysql", "runtime-tokio"]}
serde = "1.0.217"
serde_json = "1.0.137"
sqlx = {version = "0.8.3", features = ["runtime-tokio"]}
thiserror = "2.0.11"
time = "0.3.34"
tokio = {version = "1.43.0", features = ["full"]}
tracing = {version = "0.1.41", features = ["log"]}
tracing-bunyan-formatter = "0.3.10"
tracing-log = "0.2.0"
tracing-subscriber ={version = "0.3.18", features = ["registry", "env-filter"]}
uuid = {version = "1.10.0", features = ["v4", "fast-rng", "macro-diagnostics"]}