20 lines
379 B
TOML
20 lines
379 B
TOML
[package]
|
|
name = "catter"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
actix-web = "4"
|
|
sea-orm = { version = "1.1.5", features = [
|
|
"sqlx-mysql",
|
|
"runtime-tokio-native-tls",
|
|
"macros",
|
|
] }
|
|
dotenvy = "0.15"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
bcrypt = "0.17"
|
|
jwt = "0.16"
|
|
hmac = "0.12"
|
|
sha2 = "0.10"
|
|
derive_more = { version = "2.0", features = ["full"] }
|