activitypub/migration/Cargo.toml

25 lines
694 B
TOML
Raw Normal View History

2024-04-17 20:25:22 +02:00
[package]
2024-05-03 00:22:08 +02:00
name = "ls-ap-migration"
2024-04-17 20:25:22 +02:00
version = "0.1.0"
edition = "2021"
publish = false
[lib]
name = "migration"
path = "src/lib.rs"
[dependencies]
async-std = { version = "1", features = ["attributes", "tokio1"] }
2024-04-18 01:47:18 +02:00
chrono = "0.4.38"
2024-04-17 20:25:22 +02:00
[dependencies.sea-orm-migration]
version = "0.12.0"
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.
# e.g.
"runtime-tokio-rustls", # `ASYNC_RUNTIME` feature
"sqlx-postgres", # `DATABASE_DRIVER` feature
2024-04-18 01:47:18 +02:00
"sqlx-sqlite","sqlx-mysql","with-chrono"
2024-04-17 20:25:22 +02:00
]