Skip to content

Commit

Permalink
spike: Support initial configure interaction step for JWT plugin writ…
Browse files Browse the repository at this point in the history
…ten in Lua
  • Loading branch information
rholshausen committed May 28, 2024
1 parent bf385ab commit 3429c48
Show file tree
Hide file tree
Showing 11 changed files with 4,714 additions and 29 deletions.
192 changes: 191 additions & 1 deletion drivers/rust/driver/Cargo.lock

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

5 changes: 4 additions & 1 deletion drivers/rust/driver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,14 @@ lazy_static = "1.4.0"
log = "0.4.21"
maplit = "1.0.2"
md5 = "0.7.0"
mlua = { version = "0.9.8", features = ["lua54", "vendored"], optional = true }
mlua = { version = "0.9.8", features = ["lua54", "vendored", "async", "serialize", "send"], optional = true }
os_info = "3.7.0"
pact_models = { version = "~1.2.0", default-features = false }
prost = "0.12.4"
prost-types = "0.12.4"
regex = "1.10.4"
reqwest = { version = "0.12.3", default-features = false, features = ["rustls-tls-native-roots", "json", "gzip", "deflate", "stream"] }
rsa = { version = "0.9.6", features = ["sha2"] }
semver = "1.0.22"
serde_json = "1.0.115"
serde = { version = "1.0.197", features = ["derive"] }
Expand All @@ -55,6 +56,8 @@ tracing = { version = "0.1.40", features = [ "log" ] } # This needs to be the s
tracing-core = "0.1.32" # This needs to be the same version across all the pact libs (i.e. pact ffi)
uuid = { version = "1.8.0", features = ["v4"] }
zip = "1.3.1"
rand = "0.8.5"
base64 = "0.21.7"

[dev-dependencies]
env_logger = "0.11.3"
Expand Down
Loading

0 comments on commit 3429c48

Please sign in to comment.