web3-proxy/migration/Cargo.toml

22 lines
615 B
TOML
Raw Normal View History

2022-07-26 07:53:38 +03:00
[package]
name = "migration"
version = "0.17.0"
2022-07-26 07:53:38 +03:00
edition = "2021"
publish = false
[lib]
name = "migration"
path = "src/lib.rs"
[dependencies]
2023-01-31 02:57:06 +03:00
tokio = { version = "1.25.0", features = ["full", "tracing"] }
2022-07-26 07:53:38 +03:00
[dependencies.sea-orm-migration]
2023-02-08 22:11:16 +03:00
version = "0.11.0"
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
]