Skip to content

Commit

Permalink
chore: Update dependencies in all Rust examples
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Jul 17, 2024
1 parent 76adec0 commit dc8e8ed
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
24 changes: 12 additions & 12 deletions examples/csv/csv-consumer-rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ version = "0.0.0"
edition = "2018"

[dependencies]
tokio = { version = "1", features = ["full"] }
reqwest = "0.11.4"
anyhow = "1.0.43"
csv = "1.1.6"
tokio = { version = "1.38.0", features = ["full"] }
reqwest = "0.12.5"
anyhow = "1.0.86"
csv = "1.3.0"

[dev-dependencies]
expectest = "0.12.0"
env_logger = "0.10.0"
pact_models = "1.0.12"
pact_consumer = "0.10.8"
serde_json = "1.0.66"
regex = "1.4.6"
fakeit = "1.1.1"
rand = "0.8.4"
test-log = "0.2.11"
env_logger = "0.11.3"
pact_models = "1.2.2"
pact_consumer = "1.2.3"
serde_json = "1.0.120"
regex = "1.10.5"
fakeit = "1.2.0"
rand = "0.8.5"
test-log = "0.2.16"
4 changes: 2 additions & 2 deletions examples/gRPC/area_calculator/consumer-rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
expectest = "0.12.0"
env_logger = "0.11.3"
pact_consumer = "1.2.2"
pact_consumer = "1.2.3"
# Windows plugin shutdown
pact-plugin-driver = { version = "0.7.0", path = "../../../../drivers/rust/driver" }
serde_json = "1.0.120"
maplit = "1.0.2"

[build-dependencies]
tonic-build = "=0.11.0"
tonic-build = "0.12.0"
parse-zoneinfo = "0.3.1" # requires pact_model to be updated
# https://github.com/chronotope/parse-zoneinfo/commit/61557cd5407e494770285d1925d64c42973f5db0
2 changes: 1 addition & 1 deletion examples/gRPC/grpc_status/consumer-rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
expectest = "0.12.0"
env_logger = "0.11.3"
pact_consumer = "1.2.2"
pact_consumer = "1.2.3"
# Windows plugin shutdown
pact-plugin-driver = { version = "0.7.0", path = "../../../../drivers/rust/driver" }
serde_json = "1.0.95"
Expand Down
6 changes: 3 additions & 3 deletions examples/protobuf/area_calculator_example/consumer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ prost-types = "0.13.1"
[dev-dependencies]
expectest = "0.12.0"
env_logger = "0.11.3"
pact_models = "~1.2.1"
pact_matching = "~1.2.4"
pact_consumer = "~1.2.2"
pact_models = "~1.2.2"
pact_matching = "~1.2.5"
pact_consumer = "~1.2.3"
# Windows plugin shutdown
pact-plugin-driver = { version = "0.7.0", path = "../../../../drivers/rust/driver" }
serde_json = "1.0.120"
Expand Down
4 changes: 2 additions & 2 deletions examples/protobuf/protobuf-consumer-rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ prost-types = "0.13.1"
expectest = "0.12.0"
env_logger = "0.11.3"
test-log = "0.2.11"
pact_models = "1.2.1"
pact_consumer = "1.2.2"
pact_models = "1.2.2"
pact_consumer = "1.2.3"
# Windows plugin shutdown
pact-plugin-driver = { version = "0.7.0", path = "../../../drivers/rust/driver" }
serde_json = "1.0.95"
Expand Down

0 comments on commit dc8e8ed

Please sign in to comment.