trigger-rs/crates/trigger-database/migration/Cargo.toml

21 lines
416 B
TOML
Raw Normal View History

2025-02-21 11:03:43 +00: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"] }
entity = { path = "../entity" }
[dependencies.sea-orm-migration]
version = "1.1.4"
features = [
"runtime-tokio-rustls", # `ASYNC_RUNTIME` feature
"sqlx-postgres", # `DATABASE_DRIVER` feature
]