Athenaeum/Cargo.toml

25 lines
699 B
TOML
Raw Normal View History

2025-05-23 15:25:48 +02:00
[package]
name = "ksiegarnia"
2025-06-01 17:41:00 +02:00
version = "0.9.0"
2025-05-23 15:25:48 +02:00
edition = "2021"
[dependencies]
actix-web = "4.4.0"
actix-cors = "0.7.0"
actix-files = "0.6.2"
env_logger = "0.11"
dotenv = "0.15"
sqlx = { version = "0.7.4", features = ["postgres", "runtime-tokio-native-tls", "macros", "chrono", "bigdecimal"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
log = "0.4"
bcrypt = "0.15"
rust_decimal = { version = "1.37.1", features = ["serde", "db-postgres"] }
bigdecimal = { version = "0.3.0", features = ["serde"] }
2025-05-24 16:47:32 +02:00
regex = "1.10.4"
2025-05-25 16:25:22 +02:00
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = "0.8"
futures = "0.3"