From 70112beec7d0ce1ae2bc5a3719b139b20f5815ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Pomp=C3=A9ry?= Date: Sat, 5 Oct 2024 11:51:52 +0200 Subject: [PATCH 1/2] build: select pact-data-model by commit --- gen/Cargo.lock | 3 +-- gen/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/gen/Cargo.lock b/gen/Cargo.lock index ecfee75..d8de131 100644 --- a/gen/Cargo.lock +++ b/gen/Cargo.lock @@ -322,10 +322,9 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "pact-data-model" version = "0.1.0" -source = "git+https://github.com/sine-fdn/pact-data-model.git?branch=extensions-type#5cdc5f4f153bc5a955515d46c6f0fe8b5c5d23c0" +source = "git+https://github.com/sine-fdn/pact-data-model.git#73ba24f6aef83eeb933b730d3a0c1d90405906bd" dependencies = [ "chrono", - "indexmap", "rust_decimal", "schemars", "serde", diff --git a/gen/Cargo.toml b/gen/Cargo.toml index 029e564..62aec72 100644 --- a/gen/Cargo.toml +++ b/gen/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -pact-data-model = { git = "https://github.com/sine-fdn/pact-data-model.git", branch = "extensions-type" } +pact-data-model = { git = "https://github.com/sine-fdn/pact-data-model.git", commit = "73ba24f6aef83eeb933b730d3a0c1d90405906bd" } chrono = { version = "0.4", features = ["serde"] } schemars = { version = "0.8", features = ["chrono"] } serde = { version = "1.0.203", features = ["derive"] } From 830f78340ed92fa90c13226e911714c87040357a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Pomp=C3=A9ry?= Date: Tue, 8 Oct 2024 09:52:56 +0200 Subject: [PATCH 2/2] chore: remove fixed version dependency for now Co-authored-by: Raimundo Henriques --- gen/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen/Cargo.toml b/gen/Cargo.toml index 62aec72..a7ec013 100644 --- a/gen/Cargo.toml +++ b/gen/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -pact-data-model = { git = "https://github.com/sine-fdn/pact-data-model.git", commit = "73ba24f6aef83eeb933b730d3a0c1d90405906bd" } +pact-data-model = { git = "https://github.com/sine-fdn/pact-data-model.git" } chrono = { version = "0.4", features = ["serde"] } schemars = { version = "0.8", features = ["chrono"] } serde = { version = "1.0.203", features = ["derive"] }