Files
ragflow_python/migration/Cargo.toml
Kould c6d0d85ab5 feat: impl dao (#1)
Co-authored-by: kould <2435992353@qq.com>
2023-12-13 12:32:01 +08:00

20 lines
387 B
TOML

[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.12.0"
features = [
"runtime-tokio-rustls", # `ASYNC_RUNTIME` feature
"sqlx-postgres", # `DATABASE_DRIVER` feature
]