diff --git a/Cargo.lock b/Cargo.lock index 30e187572dcc..f4c8a6d9d3f3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11868,6 +11868,8 @@ version = "1.11.0-alpha" dependencies = [ "async-std", "sea-orm-migration", + "serde", + "serde_json", "uuid", ] diff --git a/src/meta/model_v2/migration/Cargo.toml b/src/meta/model_v2/migration/Cargo.toml index b99efe2b7b0a..ac9cd1b0d157 100644 --- a/src/meta/model_v2/migration/Cargo.toml +++ b/src/meta/model_v2/migration/Cargo.toml @@ -15,6 +15,8 @@ normal = ["workspace-hack"] [dependencies] async-std = { version = "1", features = ["attributes", "tokio1"] } +serde = { version = "1", features = ["derive"] } +serde_json = "1" uuid = { version = "1", features = ["v4"] } [dependencies.sea-orm-migration]