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