web3-proxy/migration/Cargo.toml

22 lines
623 B
TOML
Raw Normal View History

2022-07-26 07:53:38 +03:00
[package]
name = "migration"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
name = "migration"
path = "src/lib.rs"
[dependencies]
2022-08-03 03:27:26 +03:00
async-std = { version = "1.12.0", features = ["attributes", "tokio1"] }
2022-07-26 07:53:38 +03:00
[dependencies.sea-orm-migration]
2022-08-03 03:27:26 +03:00
version = "0.9.1"
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.
"runtime-tokio-rustls", # `ASYNC_RUNTIME` featrure
"sqlx-mysql", # `DATABASE_DRIVER` feature
2022-08-03 03:27:26 +03:00
]