15 lines
315 B
TOML
15 lines
315 B
TOML
[package]
|
|
name = "migration"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "migration"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
sea-schema = { version = "^0.7.0", default-features = false, features = [ "migration", "debug-print" ] }
|
|
entity = { path = "../entity" }
|
|
rocket = { version = "0.5.0-rc.1" }
|