cooked/migration/Cargo.toml

22 lines
433 B
TOML
Raw Permalink Normal View History

2024-10-22 15:18:23 +02:00
[package]
name = "migration"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
name = "migration"
path = "src/lib.rs"
[dependencies]
async-std = { version = "1", features = ["attributes", "tokio1"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
[dependencies.sea-orm-migration]
version = "1.1.0"
features = [
"runtime-tokio-rustls", # `ASYNC_RUNTIME` feature
"sqlx-postgres", # `DATABASE_DRIVER` feature
]