blog/backend/Cargo.toml
an920107 f8413c597f
All checks were successful
Frontend CI / build (push) Successful in 1m30s
BLOG-43 feat: get full post
2025-05-22 15:45:48 +08:00

28 lines
557 B
TOML

[workspace]
members = ["feature/post", "server"]
resolver = "2"
[workspace.package]
version = "0.1.1"
edition = "2024"
[workspace.dependencies]
actix-web = "4.10.2"
async-trait = "0.1.88"
chrono = "0.4.41"
dotenv = "0.15.0"
env_logger = "0.11.8"
futures = "0.3.31"
log = "0.4.27"
serde = { version = "1.0.219", features = ["derive"] }
sqlx = { version = "0.8.5", features = [
"chrono",
"macros",
"postgres",
"runtime-tokio-rustls",
] }
tokio = { version = "1.45.0", features = ["full"] }
server.path = "server"
post.path = "feature/post"