-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (66 loc) · 2.41 KB
/
Copy pathCargo.toml
File metadata and controls
70 lines (66 loc) · 2.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "pact_ffi"
version = "0.5.5"
authors = ["Ronald Holshausen <ronald.holshausen@gmail.com>", "Matt Fellows <matt.fellows@onegeek.com.au>", "Andrew Lilley Brinker <abrinker@mitre.org>", "Caleb Stepanian <cstepanian@mitre.org>"]
edition = "2021"
description = "Pact interface for foreign languages."
homepage = "https://www.pact.io"
repository = "https://github.com/pact-foundation/pact-reference/blob/master/rust/pact_ffi"
readme = "README.md"
keywords = ["testing", "pact", "cdc", "mockserver", "ffi"]
license = "MIT"
exclude = [
"*.iml"
]
[dependencies]
ansi_term = "0.12.1"
anyhow = "1.0.100"
bytes = "1.11.1"
chrono = "0.4.42"
either = "1.15.0"
futures = "0.3.31"
itertools = "0.14.0"
lazy_static = "1.5.0"
libc = "0.2.180"
log = "0.4.29"
maplit = "1.0.2"
multipart-2021 = { version = "0.19.0", default-features = false, features = ["client", "mock"] }
onig = { version = "6.5.1", default-features = false }
# FFI Inmemory sink uses the global static `LOG_BUFFER` in the pact_matching crate. This is required to be the same
# version as the mock server crate
pact_matching = { version = "~2.0.3", path = "../pact_matching" }
pact_mock_server = "~2.2.1"
pact_models = { version = "~1.3.10" }
pact-plugin-driver = { version = "~0.7.5" }
pact_verifier = { version = "~1.3.5", path = "../pact_verifier" }
panic-message = "0.3.0"
rand = "0.9.2"
rand_regex = "0.18.1"
regex = "1.12.2"
regex-syntax = "0.8.8"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde_urlencoded = "0.7.1"
sxd-document = "0.3.2"
thiserror = "2.0.17"
tokio = { version = "1.49.0", features = ["full"] }
tracing = "0.1.41" # This needs to be the same version across all the libs (i.e. plugin driver)
tracing-core = "0.1.33" # This needs to be the same version across all the pact libs (i.e. plugin driver)
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "tracing-log"] }
uuid = { version = "1.19.0", features = ["v4"] }
zeroize = "1.8.2"
[dev-dependencies]
expectest = "0.12.0"
hamcrest2 = "0.3.0"
pretty_assertions = "1.4.1"
quickcheck = "1.0.3"
reqwest = { version = "0.13.1", default-features = false, features = ["rustls", "blocking", "json", "multipart"] }
rstest = "0.26.1"
rustls = { version = "0.23", features = ["ring"] }
test-log = "0.2.19"
tempfile = "3.24.0"
[lib]
crate-type = ["cdylib", "staticlib", "rlib"]
[build-dependencies]
os_info = { version = "3.14.0", default-features = false }