-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
58 lines (53 loc) · 1.46 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
[package]
name = "pact-graph-network"
version = "0.7.2"
authors = ["Guillaume CAMUS <guillaume.camus@gmail.com>"]
license = "MIT"
keywords = [
"pact",
"contract",
"command-line",
"test",
"development",
"utility",
]
edition = "2021"
categories = ["command-line-utilities", "development-tools"]
description = """
Generates a schema of dependencies between microservices using pact-broker data
"""
build = "build.rs"
[workspace]
members = [".", "pact-broker-api", "pact-broker-models"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ansi_term = "0.12.1"
anyhow = "1.0.66"
clap = { version = "4.0.29", features = ["cargo", "derive"] }
env_logger = "0.10.0"
futures = "0.3.25"
handlebars = { version = "4.3.5", features = ["rust-embed"] }
lazy_static = "1.4.0"
log = "0.4.17"
pact-broker-api = { version = "0.1.0", path = "pact-broker-api" }
pact-broker-models = { version = "0.1.0", path = "pact-broker-models" }
reqwest = { version = "0.11.13", features = [
"json",
"rustls-tls",
], default-features = false }
rust-embed = "6.4.2"
serde = { version = "1.0.148", features = ["derive"] }
serde_derive = "1.0.149"
serde_json = "1.0.89"
tokio = { version = "1.22.0", features = ["full"] }
[build-dependencies]
anyhow = "1.0.66"
vergen = { version = "7.4.3", default-features = false, features = [
"build",
"rustc",
] }
[profile.release]
strip = true
opt-level = "s"
lto = true
codegen-units = 1