mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-08-02 11:50:36 +08:00
21 lines
405 B
TOML
21 lines
405 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"] }
|
|
chrono = "0.4.31"
|
|
|
|
[dependencies.sea-orm-migration]
|
|
version = "0.12.0"
|
|
features = [
|
|
"runtime-tokio-rustls", # `ASYNC_RUNTIME` feature
|
|
"sqlx-postgres", # `DATABASE_DRIVER` feature
|
|
]
|