-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
35 lines (32 loc) · 979 Bytes
/
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
# SPDX-FileCopyrightText: The Ferrocene Developers
# SPDX-License-Identifier: MIT OR Apache-2.0
[workspace]
members = [
"crates/criticaltrust",
"crates/criticalup-core",
"crates/criticalup-cli",
"crates/mock-download-server",
"crates/criticalup-dev",
"crates/criticalup",
]
resolver = "2"
exclude = ["docs/.linkchecker/src/tools/linkchecker"]
default-members = ["crates/criticalup"]
[workspace.dependencies]
futures = "0.3"
tempfile = "3"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs", "process"] }
reqwest = { version = "0.12.8", default-features = false, features = ["blocking", "json", "rustls-tls", "rustls-tls-native-roots"] }
reqwest-middleware = "0.3"
reqwest-retry = "0.6"
tracing = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = [
"ansi",
"env-filter",
"json",
] }
walkdir = "2"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"