-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathCargo.toml
More file actions
85 lines (81 loc) · 2.18 KB
/
Cargo.toml
File metadata and controls
85 lines (81 loc) · 2.18 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
[workspace]
resolver = "2"
members = [
"crates/cli",
"crates/core",
"crates/wasm/overlay",
"crates/wasm/quiz"
]
[workspace.package]
version = "1.1.0"
license = "Apache-2.0"
edition = "2024"
rust-version = "1.93.1"
authors = ["Sergio Castaño Arteaga", "Cintia Sanchez Garcia"]
homepage = "https://github.com/cncf/landscape2"
[workspace.dependencies]
anyhow = "1.0.102"
askama = { version = "0.15.4", features = ["serde_json"] }
async-trait = "0.1.89"
aws-config = "1.8.15"
aws-sdk-s3 = "1.125.0"
axum = "0.8.8"
base64 = "0.22.1"
cached = { version = "0.56.0", default-features = false, features = ["async", "proc_macro"] }
chrono = { version = "0.4.44", features = ["serde"] }
clap = { version = "4.5.60", features = ["derive"] }
csv = "1.4.0"
deadpool = "0.13.0"
dirs = "6.0.0"
futures = "0.3.32"
gloo-console = "0.3.0"
gloo-net = { version = "0.6.0", default-features = false, features = ["http", "json"] }
headless_chrome = "1.0.21"
hex = "0.4.3"
imagesize = "0.14.0"
itertools = "0.14.0"
leaky-bucket = "1.1.2"
markdown = "1.0.0"
md-5 = "0.10.6"
mime_guess = "2.0.5"
mockall = "0.14.0"
mockito = "1.7.2"
num_cpus = "1.17.0"
octorust = "0.10.0"
parse_link_header = "0.4.0"
pretty_assertions = "1.4.1"
qrcode = "0.14.1"
rand = "0.8.5" # do-not-upgrade
regex = "1.12.3"
reqwest = { version = "0.12.28", features = ["json", "multipart", "native-tls-vendored"] } # do-not-upgrade
reqwest-middleware = "0.4.2" # do-not-upgrade
rust-embed = "8.11.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde-wasm-bindgen = "0.6.5"
serde_yaml = "0.9.34"
sha2 = "0.10.9"
tokio = { version = "1.50.0", features = [
"macros",
"process",
"rt-multi-thread",
"signal",
"time",
] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
tower = "0.5.3"
tower-http = { version = "0.6.8", features = ["fs", "set-header"] }
url = "2.5.8"
usvg = "0.37.0" # do-not-upgrade
walkdir = "2.5.0"
wasm-bindgen = "0.2.114"
wasm-bindgen-futures = "0.4.64"
web-sys = { version = "0.3.76", features = ["console"] }
which = "8.0.0"
[profile.release]
lto = true
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"