29 lines
734 B
TOML
29 lines
734 B
TOML
[package]
|
|
name = "litecloud"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
rocket = { version = "0.5.0-rc.3", features = ["json", "secrets", "tls"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_derive = "1.0"
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "postgres", "uuid", "macros", "chrono"] }
|
|
dotenv = "0.15"
|
|
jsonwebtoken = "9.2"
|
|
uuid = { version = "1.4", features = ["v4", "serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
base64 = "0.21"
|
|
rand = "0.8"
|
|
sha2 = "0.10"
|
|
aes-gcm = "0.10"
|
|
rocket_cors = "0.6"
|
|
lazy_static = "1.4"
|
|
password-hash = "0.5"
|
|
argon2 = "0.5"
|
|
utoipa = "5.3.1"
|
|
|
|
[build-dependencies]
|
|
dotenv = "0.15"
|