-
Notifications
You must be signed in to change notification settings - Fork 41
/
Cargo.toml
111 lines (106 loc) · 3.09 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
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
110
111
[workspace]
resolver = "2"
members = [
"crates/cli",
"crates/core",
"crates/wasm/overlay",
"crates/wasm/quiz"
]
[workspace.package]
version = "0.11.0"
license = "Apache-2.0"
edition = "2021"
rust-version = "1.81"
authors = ["Sergio Castaño Arteaga", "Cintia Sanchez Garcia"]
homepage = "https://github.com/cncf/landscape2"
[workspace.dependencies]
anyhow = "1.0.93"
askama = { version = "0.12.1", features = ["serde-json"] }
askama_escape = { version = "0.10.3", features = ["json"] }
async-trait = "0.1.83"
aws-config = "1.5.10"
aws-sdk-s3 = "1.60.0"
axum = "0.7.7"
base64 = "0.22.1"
cached = { version = "0.54.0", default-features = false, features = ["async", "proc_macro"] }
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.20", features = ["derive"] }
csv = "1.3.1"
deadpool = "0.12.1"
dirs = "5.0.1"
futures = "0.3.31"
gloo-console = "0.3.0"
gloo-net = { version = "0.6.0", default-features = false, features = ["http", "json"] }
headless_chrome = "1.0.15"
hex = "0.4.3"
imagesize = "0.13.0"
itertools = "0.13.0"
lazy_static = "1.5.0"
leaky-bucket = "1.1.2"
markdown = "1.0.0-alpha.18"
md-5 = "0.10.6"
mime_guess = "2.0.5"
mockall = "0.13.0"
mockito = "1.5.0"
num_cpus = "1.16.0"
octorust = "0.7.0"
parse_link_header = "0.4.0"
pretty_assertions = "1.4.1"
qrcode = "0.14.1"
rand = "0.8.5"
regex = "1.11.1"
reqwest = { version = "0.12.9", features = ["json", "native-tls-vendored"] }
reqwest_octorust = { package = "reqwest", version = "0.11.14", default-features = false, features = ["json", "multipart"] }
reqwest-middleware = "0.2.5"
rust-embed = "8.5.0"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.132"
serde-wasm-bindgen = "0.6.5"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
tokio = { version = "1.41.1", features = [
"macros",
"process",
"rt-multi-thread",
"signal",
"time",
] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tower = "0.5.1"
tower-http = { version = "0.6.1", features = ["fs", "set-header"] }
url = "2.5.3"
usvg = "0.37.0"
walkdir = "2.5.0"
wasm-bindgen = "0.2.95"
wasm-bindgen-futures = "0.4.45"
web-sys = { version = "0.3.72", features = ["console"] }
which = "7.0.0"
[profile.release]
lto = true
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# Allow customization of release workflow
allow-dirty = ["ci"]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.19.1"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell", "powershell", "homebrew"]
# A GitHub repo to push Homebrew formulas to
tap = "cncf/homebrew-landscape2"
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
# Publish jobs to run in CI
publish-jobs = ["homebrew"]
# Publish jobs to run in CI
pr-run-mode = "skip"
# Whether to install an updater program
install-updater = false
# Path that installers should place binaries in
install-path = "CARGO_HOME"