forked from pact-foundation/pact-reference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
65 lines (60 loc) · 1.78 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
[package]
name = "pact_models"
version = "0.4.3"
authors = ["Ronald Holshausen <[email protected]>"]
edition = "2021"
description = "Pact-Rust support library that provides the core models for dealing with Pact files"
homepage = "http://www.pact.io"
repository = "https://github.com/pact-foundation/pact-reference/blob/master/rust/pact_models"
readme = "README.md"
keywords = ["testing", "pact", "cdc"]
license = "MIT"
exclude = [
"*.iml"
]
build = "build.rs"
[dependencies]
anyhow = "1.0.57"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
maplit = "1.0.2"
itertools = "0.10.3"
bytes = { version = "1", features = ["serde"] }
lazy_static = "1.4.0"
mime = "0.3.16"
base64 = "0.13.0"
regex = "1.5.5"
nom = "7.1.1"
chrono = { version = "0.4.19", features = ["std", "clock"], default-features = false }
chrono-tz = "0.6.1"
lenient_semver = "0.4.2"
sxd-document = "0.3.2"
indextree = "4.4.0"
rand = "0.8.5"
hex = "0.4.3"
rand_regex = "0.15.1"
regex-syntax = "0.6.25"
logos = "0.12.0"
logos-iter = "0.1.2"
ariadne = "0.1.5"
semver = "1.0.9"
tracing = "=0.1.34" # This needs to be the same version across all the libs (i.e. plugin driver)
[target.'cfg(not(target_family = "wasm"))'.dependencies]
fs2 = "0.4.3"
onig = { version = "6.3.1", default-features = false }
reqwest = { version = "0.11.10", default-features = false, features = ["rustls-tls-native-roots", "blocking", "json"] }
uuid = { version = "0.8", features = ["v4"] }
[target.'cfg(target_family = "wasm")'.dependencies]
uuid = { version = "0.8", features = ["v4", "stdweb"] }
[dev-dependencies]
expectest = "0.12.0"
env_logger = "0.9.0"
speculate = "0.1.2"
rstest = "0.12.0"
hamcrest2 = "0.3.0"
test-log = "0.2.10"
pretty_assertions = "1.2.1"
trim-margin = "0.1.0"
[build-dependencies]
parse-zoneinfo = "0.3.0"
maplit = "1.0.2"