web3-proxy/migration/Cargo.toml
Bryan Stitt 8481f6d44c wip
2022-09-21 23:50:55 +00:00

22 lines
622 B
TOML

[package]
name = "migration"
version = "0.2.0"
edition = "2021"
publish = false
[lib]
name = "migration"
path = "src/lib.rs"
[dependencies]
async-std = { version = "1.12.0", features = ["attributes", "tokio1"] }
[dependencies.sea-orm-migration]
version = "0.9.2"
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` feature
"sqlx-mysql", # `DATABASE_DRIVER` feature
]