magnetar/ext_model/migration/Cargo.toml

20 lines
364 B
TOML
Raw Normal View History

2023-07-29 03:20:00 +00:00
[package]
2024-04-15 02:45:44 +00:00
name = "ext_model_migration"
2023-07-29 03:20:00 +00:00
version.workspace = true
edition.workspace = true
[[bin]]
name = "migrate"
path = "src/main.rs"
[lib]
2024-04-15 02:45:44 +00:00
name = "ext_model_migration"
2023-07-29 03:20:00 +00:00
path = "src/lib.rs"
[dependencies]
tokio = { workspace = true, features = ["full"] }
2024-04-15 02:45:44 +00:00
sea-orm-migration = { workspace = true, features = [
"runtime-tokio-rustls",
"sqlx-postgres",
] }