magnetar/ext_model/migration/Cargo.toml

20 lines
364 B
TOML

[package]
name = "ext_model_migration"
version.workspace = true
edition.workspace = true
[[bin]]
name = "migrate"
path = "src/main.rs"
[lib]
name = "ext_model_migration"
path = "src/lib.rs"
[dependencies]
tokio = { workspace = true, features = ["full"] }
sea-orm-migration = { workspace = true, features = [
"runtime-tokio-rustls",
"sqlx-postgres",
] }