mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-19 04:18:52 +00:00
20 lines
No EOL
440 B
TOML
20 lines
No EOL
440 B
TOML
[package]
|
|
name = "portfolio-migration"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "migration"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
tokio = { version = "^1.23", features = ["macros"] }
|
|
|
|
serde = { version = "^1.0", features = ["derive"] }
|
|
chrono = "^0.4"
|
|
portfolio-entity = { path = "../entity" }
|
|
|
|
[dependencies.sea-orm-migration]
|
|
version = "^0.10"
|
|
features = [ "runtime-tokio-native-tls", "sqlx-postgres", "sqlx-sqlite"] |