This repository has been archived on 2025-02-09. You can view files and clone it, but cannot push or open issues or pull requests.
kyanite/migration/Cargo.toml

20 lines
324 B
TOML
Raw Normal View History

2023-02-04 00:57:48 -08:00
[package]
name = "migration"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
name = "migration"
path = "src/lib.rs"
[dependencies]
async-std = { version = "^1", features = ["attributes", "tokio1"] }
[dependencies.sea-orm-migration]
version = "^0.10.0"
features = [
"runtime-tokio-rustls",
2023-02-04 05:31:00 -08:00
"sqlx-postgres",
2023-02-04 00:57:48 -08:00
]