66 lines
2 KiB
TOML
66 lines
2 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 = "deja-vu"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
description = "Clone/Install Windows, create/edit boot files, and troubleshoot boot issues."
|
|
authors = ["2Shirt <2xShirt@gmail.com>"]
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
better-panic = "0.3.0"
|
|
clap = { version = "4.4.5", features = [
|
|
"derive",
|
|
"cargo",
|
|
"wrap_help",
|
|
"unicode",
|
|
"string",
|
|
"unstable-styles",
|
|
] }
|
|
color-eyre = "0.6.3"
|
|
config = "0.14.0"
|
|
crossterm = { version = "0.28.1", features = ["serde", "event-stream"] }
|
|
derive_deref = "1.1.1"
|
|
directories = "5.0.1"
|
|
futures = "0.3.30"
|
|
human-panic = "2.0.1"
|
|
json5 = "0.4.1"
|
|
lazy_static = "1.5.0"
|
|
libc = "0.2.158"
|
|
once_cell = "1.20.2"
|
|
pretty_assertions = "1.4.0"
|
|
ratatui = { version = "0.28.1", features = ["serde", "macros"] }
|
|
raw-cpuid = "11.2.0"
|
|
regex = "1.11.1"
|
|
serde = { version = "1.0.208", features = ["derive"] }
|
|
serde_json = "1.0.125"
|
|
signal-hook = "0.3.17"
|
|
strip-ansi-escapes = "0.2.0"
|
|
strum = { version = "0.26.3", features = ["derive"] }
|
|
tempfile = "3.13.0"
|
|
tokio = { version = "1.39.3", features = ["full"] }
|
|
tokio-util = "0.7.11"
|
|
tracing = "0.1.40"
|
|
tracing-error = "0.2.0"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "serde"] }
|
|
walkdir = "2.5.0"
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0.86"
|
|
vergen-gix = { version = "1.0.0", features = ["build", "cargo"] }
|