-
Notifications
You must be signed in to change notification settings - Fork 46
/
Cargo.toml
88 lines (84 loc) · 2.26 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
[workspace]
resolver = "2"
members = [
"crates/cli",
"crates/core",
"crates/wasm/overlay",
"crates/wasm/quiz"
]
[workspace.package]
version = "0.12.0"
license = "Apache-2.0"
edition = "2021"
rust-version = "1.83"
authors = ["Sergio Castaño Arteaga", "Cintia Sanchez Garcia"]
homepage = "https://github.com/cncf/landscape2"
[workspace.dependencies]
anyhow = "1.0.94"
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.65.0"
axum = "0.7.9"
base64 = "0.22.1"
cached = { version = "0.54.0", default-features = false, features = ["async", "proc_macro"] }
chrono = { version = "0.4.39", features = ["serde"] }
clap = { version = "4.5.23", 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.21"
md-5 = "0.10.6"
mime_guess = "2.0.5"
mockall = "0.13.1"
mockito = "1.6.1"
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.133"
serde-wasm-bindgen = "0.6.5"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
tokio = { version = "1.42.0", features = [
"macros",
"process",
"rt-multi-thread",
"signal",
"time",
] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
tower = "0.5.1"
tower-http = { version = "0.6.2", features = ["fs", "set-header"] }
url = "2.5.4"
usvg = "0.37.0"
walkdir = "2.5.0"
wasm-bindgen = "0.2.99"
wasm-bindgen-futures = "0.4.49"
web-sys = { version = "0.3.76", features = ["console"] }
which = "7.0.0"
[profile.release]
lto = true
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"