forked from pact-foundation/pact-reference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
70 lines (66 loc) · 2.28 KB
/
Cargo.toml
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.4.24"
authors = ["Ronald Holshausen <[email protected]>", "Matt Fellows <[email protected]>", "Andrew Lilley Brinker <[email protected]>", "Caleb Stepanian <[email protected]>"]
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.86"
bytes = "1.7.1"
chrono = "0.4.38"
chrono-tz = "0.9.0"
clap = "2.34.0"
either = "1.13.0"
env_logger = "0.11.5"
futures = "0.3.30"
itertools = "0.13.0"
lazy_static = "1.5.0"
libc = "0.2.158"
log = "0.4.22"
maplit = "1.0.2"
multipart = { version = "0.18.0", default-features = false, features = ["client", "mock"] }
onig = { version = "6.4.0", default-features = false }
pact_matching = { version = "~1.2.7", path = "../pact_matching" }
pact_mock_server = { version = "~1.2.10" }
pact_models = { version = "~1.2.5" }
pact-plugin-driver = { version = "~0.7.1" }
pact_verifier = { version = "~1.2.4", path = "../pact_verifier" }
panic-message = "0.3.0"
rand = "0.8.5"
rand_regex = "0.15.1"
regex = "1.10.6"
regex-syntax = "0.6.29"
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
sxd-document = "0.3.2"
thiserror = "1.0.63"
tokio = { version = "1.40.0", features = ["full"] }
tokio-rustls = "0.24.1"
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"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "tracing-log"] }
uuid = { version = "1.10.0", features = ["v4"] }
zeroize = "1.8.1"
[dev-dependencies]
expectest = "0.12.0"
reqwest = { version = "0.12.7", default-features = false, features = ["rustls-tls-native-roots", "blocking", "json"] }
quickcheck = "1.0.3"
test-log = "0.2.16"
tempfile = "3.12.0"
home = "0.5.9"
pretty_assertions = "1.4.0"
rstest = "0.22.0"
[lib]
crate-type = ["cdylib", "staticlib", "rlib"]
[build-dependencies]
os_info = { version = "3.8.2", default-features = false }