-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
52 lines (46 loc) · 1.48 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
# SPDX-FileCopyrightText: The Ferrocene Developers
# SPDX-License-Identifier: MIT OR Apache-2.0
[package]
name = "criticalup-cli"
version = "1.4.1-prerelease.1"
edition = "2021"
repository = "https://github.com/ferrocene/criticalup"
homepage = "https://github.com/ferrocene/criticalup"
authors = ["The CriticalUp Developers"]
description = "CriticalUp is the official tool to download and install Ferrocene"
[package.metadata.dist]
dist = false
[[test]]
name = "cli"
path = "tests/cli/main.rs"
[dependencies]
clap = { version = "4.5.32", features = ["std", "derive", "help", "usage"] }
criticaltrust = { path = "../criticaltrust" }
criticalup-core = { path = "../criticalup-core" }
futures.workspace = true
opener = { version = "0.7.2"}
serde_json.workspace = true
tar.workspace = true
tempfile.workspace = true
thiserror.workspace = true
time.workspace = true
tokio.workspace = true
toml_edit.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
tracing-tree.workspace = true
url = "2.5.4"
walkdir.workspace = true
xz2.workspace = true
hyper.workspace = true
[dev-dependencies]
dirs.workspace = true
insta = { version = "1.42.2", features = ["filters"] }
mock-download-server = { path = "../mock-download-server" }
regex = "1.11.1"
serde = { version = "1.0.219", features = ["derive"] }
tempfile.workspace = true
toml = "0.8.20"
[target.x86_64-pc-windows-msvc.dependencies]
winapi = "0.3.9"
windows-sys = { version = "0.59.0", features = ["Win32_Foundation", "Win32_System_Console"] }