2022-07-26 07:53:38 +03:00
|
|
|
[package]
|
|
|
|
name = "migration"
|
2023-06-19 23:00:57 +03:00
|
|
|
version = "0.32.0"
|
2022-07-26 07:53:38 +03:00
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "migration"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-27 22:36:41 +03:00
|
|
|
tokio = { version = "1.29.0", features = ["full", "tracing"] }
|
2023-06-27 21:59:49 +03:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
2022-07-26 07:53:38 +03:00
|
|
|
|
|
|
|
[dependencies.sea-orm-migration]
|
2023-05-11 23:25:55 +03:00
|
|
|
version = "0.11.3"
|
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
|
|
|
]
|