[package] name = "migration" version = "0.1.0" edition = "2021" publish = false [lib] name = "migration" path = "src/lib.rs" [features] default = [] convert = ["dep:native-utils", "dep:indicatif", "dep:futures"] [dependencies] serde_json = "1.0.108" native-utils = { path = "../", optional = true } indicatif = { version = "0.17.7", features = ["tokio"], optional = true } tokio = { version = "1.35.1", features = ["full"] } futures = { version = "0.3.30", optional = true } serde_yaml = "0.9.29" serde = { version = "1.0.193", features = ["derive"] } urlencoding = "2.1.3" redis = { version = "0.24.0", features = ["tokio-rustls-comp"] } sea-orm = "0.12.10" url = { version = "2.5.0", features = ["serde"] } basen = "0.1.0" [dependencies.sea-orm-migration] version = "0.12.10" 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. # e.g. "runtime-tokio-rustls", # `ASYNC_RUNTIME` feature "sqlx-postgres", # `DATABASE_DRIVER` feature ]