synthwave/Cargo.toml

20 lines
687 B
TOML
Raw Permalink Normal View History

2024-07-24 09:07:24 +00:00
[package]
name = "synthwave"
version = "0.1.0"
edition = "2021"
[dependencies]
rocket = { version = "0.5.1", features = ["json"] }
rocket_cors = "0.6.0"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
walkdir = "2.5.0"
bcrypt = "0.15.1"
data-encoding = "2.6.0"
rand = "0.8.5"
2024-12-06 22:23:38 +00:00
env_logger = { version = "0.11.5", default-features = false }
2024-08-02 14:12:33 +00:00
log = "0.4.22"
2024-10-04 10:00:33 +00:00
chrono = { version = "0.4.38", features = ["serde"] }
uuid = { version = "1.8.0", features = ["v4", "serde"] }
2024-12-06 22:23:38 +00:00
sqlx = { version = "0.8", features = ["postgres", "runtime-tokio-native-tls", "derive", "uuid", "chrono", "json"] }
2024-12-18 17:59:00 +00:00
based = { git = "https://git.hydrar.de/jmarya/based", features = ["cache"] }