alert-me/migration/Cargo.toml

25 lines
688 B
TOML
Raw Normal View History

2024-05-08 16:12:49 +00:00
[package]
name = "migration"
version = "0.1.0"
edition = "2021"
2024-05-20 10:00:39 +00:00
license = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
2024-05-08 16:12:49 +00:00
publish = false
[lib]
name = "migration"
path = "src/lib.rs"
[dependencies]
async-std = { version = "1", features = ["attributes", "tokio1"] }
[dependencies.sea-orm-migration]
2024-09-24 07:57:32 +00:00
version = "1.0.1"
2024-05-08 16:12:49 +00: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.
# e.g.
2024-09-24 07:57:32 +00:00
"runtime-tokio-rustls", "sqlx-sqlite", "sqlx-postgres", "sqlx-mysql"
2024-05-08 16:12:49 +00:00
]