rust_forum/Cargo.toml

19 lines
576 B
TOML
Raw Normal View History

2024-11-26 22:30:25 +03:00
[package]
name = "rust_forum"
version = "0.1.0"
edition = "2021"
2024-12-02 23:56:43 +03:00
[workspace]
members = [".", "entity", "migration"]
2024-11-26 22:30:25 +03:00
[dependencies]
2024-12-02 23:56:43 +03:00
entity = { path = "entity" }
migration = { path = "migration" }
2024-11-26 22:30:25 +03:00
axum = "0.7.9"
chrono = { version = "0.4.38", features = ["serde"] }
2024-12-02 23:56:43 +03:00
sea-orm = { version = "1.1.2", features = ["macros", "runtime-tokio-rustls", "sqlx-postgres", "with-chrono", "with-json"] }
2024-11-26 22:30:25 +03:00
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
tokio = { version = "1.41.1", features = ["full"] }
tower-http = { version = "0.6.2", features = ["cors"] }