Skip to content

Commit

Permalink
chore: Try get aws-lc-rs out of the build
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Jun 24, 2024
1 parent e51c1ad commit 2a62067
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 4 additions & 3 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ tracing-subscriber = { git = "https://github.com/tokio-rs/tracing.git", tag = "t
pact_matching = { version = "~1.2.4", path = "./pact_matching" }
# Issue 389 - Pull change into other crates
pact_models = { version = "~1.2.1", path = "./pact_models" }
pact_mock_server = { git = "https://github.com/pact-foundation/pact-core-mock-server.git", branch = "v2.0.x" }

[profile.release]
strip = true
Expand Down
5 changes: 3 additions & 2 deletions rust/pact_ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,14 @@ rand_regex = "0.15.1"
regex = "1.10.2"
regex-syntax = "0.6.29"
rustls = { version = "0.23.10", default-features = false, features = ["ring"] }
rustls-pemfile = "2.1.2"
rustls-pemfile = { version = "2.1.2", default-features = false, features = ["std"] }
rustls-webpki = { version = "0.102.4", default-features = false, features = ["std", "ring"]}
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
sxd-document = "0.3.2"
thiserror = "1.0.51"
tokio = { version = "1.35.1", features = ["full"] }
tokio-rustls = "0.26.0"
tokio-rustls = { version = "0.26.0", default-features = false, features = ["ring"] }
tracing = "0.1.40" # This needs to be the same version across all the libs (i.e. plugin driver)
tracing-core = "0.1.32" # This needs to be the same version across all the pact libs (i.e. plugin driver)
tracing-log = "0.2.0"
Expand Down

0 comments on commit 2a62067

Please sign in to comment.