-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
109 lines (100 loc) 路 2.74 KB
/
Copy pathCargo.toml
File metadata and controls
109 lines (100 loc) 路 2.74 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#:tombi toml-version = "v1.0.0"
[package]
name = "pact"
version = "0.10.7"
edition = "2021"
description = "Pact consolidated CLI - pact_core_mock_server, pact_verifier, pact-stub-server, pact-plugin-cli, pact-broker-cli in a single binary"
readme = "README.md"
homepage = "https://www.pact.io"
repository = "https://github.com/pact-foundation/pact-cli"
license = "MIT"
keywords = [
"pact-broker-client",
"pact-mock-server",
"pact-plugin",
"pact-stub-server",
"pact-verifier"
]
include = [
"/README.md",
"CHANGELOG.md",
"Cargo.lock",
"Cargo.toml",
"LICENSE",
"src/**",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.metadata.dist]
cargo-dist-version = "0.32.0"
ci = "github"
installers = ["shell", "powershell"]
targets = [
"aarch64-apple-darwin",
# Waiting for https://github.com/briansmith/ring/pull/2803 to be released
# "aarch64-pc-windows-msvc",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
]
install-path = "~/.pact/bin"
post-announce-jobs = [
"./publish-containers",
"./notify-homebrew",
"./legacy-artifacts"
]
github-custom-job-permissions = { publish-containers = { contents = "read", packages = "write" }, legacy-artifacts = { contents = "write" } }
[[bin]]
name = "pact"
path = "src/bin.rs"
[dependencies]
clap = { version = "4.5.51", features = ["cargo", "derive", "env"] }
clap_complete = { version = "4.5.1", features = [] }
comfy-table = "8.0.0"
home = "0.5.5"
reqwest = { version = "0.13", features = ["json"] }
reqwest-middleware = "0.5"
reqwest-retry = "0.9"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
## Pact CLI components
pact-broker-cli = "=0.8.6"
pact_mock_server_cli = "=2.0.0"
pact-plugin-cli = "=0.2.0"
pact-stub-server = "=0.7.1"
pact_verifier_cli = "=1.3.3"
## Otel
opentelemetry = "0.32.0"
opentelemetry-appender-tracing = "0.32.0"
opentelemetry-http = "0.32.0"
opentelemetry-otlp = { version = "0.32.0", features = [
"logs",
"tls",
"tls-roots",
"trace"
] }
opentelemetry_sdk = "0.32.0"
opentelemetry-semantic-conventions = "0.32.0"
opentelemetry-stdout = { version = "0.32.0", features = ["logs", "trace"] }
reqwest-tracing = { version = "0.7.0", features = [
"opentelemetry_0_32",
] }
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread", "time"] }
tracing = { version = "0.1.41", features = ["std"] }
tracing-opentelemetry = "0.33.0"
tracing-subscriber = { version = "0.3.20", features = [
"env-filter",
"fmt",
"registry",
"std"
] }
[dev-dependencies]
trycmd = "=1.2.1"
[profile.dist]
inherits = "release"
opt-level = "z"
strip = true
lto = true
codegen-units = 1