48 lines
1.5 KiB
TOML
48 lines
1.5 KiB
TOML
# This file is part of Deja-Vu.
|
|
#
|
|
# Deja-Vu is free software: you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Deja-Vu is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
# See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Deja-Vu. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
[package]
|
|
name = "boot-diags"
|
|
authors = ["2Shirt <2xShirt@gmail.com>"]
|
|
edition = "2024"
|
|
license = "GPL"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
core = { path = "../core" }
|
|
clap = { version = "4.4.5", features = [
|
|
"derive",
|
|
"cargo",
|
|
"wrap_help",
|
|
"unicode",
|
|
"string",
|
|
"unstable-styles",
|
|
] }
|
|
color-eyre = "0.6.3"
|
|
crossterm = { version = "0.28.1", features = ["event-stream"] }
|
|
futures = "0.3.30"
|
|
ratatui = "0.29.0"
|
|
serde = { version = "1.0.217", features = ["derive"] }
|
|
tokio = { version = "1.43.0", features = ["full"] }
|
|
toml = "0.8.13"
|
|
tracing = "0.1.41"
|
|
tracing-error = "0.2.0"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "serde"] }
|
|
check_elevation = "0.2.4"
|
|
regex = "1.11.1"
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0.86"
|
|
vergen-gix = { version = "1.0.0", features = ["build", "cargo"] }
|