2022-07-26 07:53:38 +03:00
|
|
|
[package]
|
|
|
|
name = "migration"
|
2022-12-14 05:13:23 +03:00
|
|
|
version = "0.12.0"
|
2022-07-26 07:53:38 +03:00
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "migration"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-01-07 02:59:36 +03:00
|
|
|
tokio = { version = "1.24.1", features = ["full", "tracing"] }
|
2022-07-26 07:53:38 +03:00
|
|
|
|
|
|
|
[dependencies.sea-orm-migration]
|
2022-12-24 04:36:51 +03:00
|
|
|
version = "0.10.6"
|
2022-07-26 07:53:38 +03:00
|
|
|
features = [
|
|
|
|
# Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI.
|
|
|
|
# View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime.
|
2022-09-22 02:50:55 +03:00
|
|
|
"runtime-tokio-rustls", # `ASYNC_RUNTIME` feature
|
2022-07-26 07:53:38 +03:00
|
|
|
"sqlx-mysql", # `DATABASE_DRIVER` feature
|
2022-08-03 03:27:26 +03:00
|
|
|
]
|