2024-07-19 18:17:02 +08:00
|
|
|
[package]
|
|
|
|
name = "migration"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "migration"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
tokio = { version = "1.38", features = ["full"] }
|
|
|
|
|
|
|
|
[dependencies.sea-orm-migration]
|
|
|
|
version = "0.12.15"
|
|
|
|
features = [
|
2024-07-20 00:36:11 +08:00
|
|
|
"runtime-tokio-rustls", # `ASYNC_RUNTIME` feature
|
|
|
|
"sqlx-postgres", # `DATABASE_DRIVER` feature
|
2024-07-19 18:17:02 +08:00
|
|
|
]
|