diff --git a/Cargo.lock b/Cargo.lock index a226dea..3db2cc0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -422,7 +422,7 @@ dependencies = [ [[package]] name = "core" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "better-panic", @@ -2022,7 +2022,7 @@ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" [[package]] name = "pe-menu" -version = "0.1.0" +version = "0.2.0" dependencies = [ "crossterm", "futures", diff --git a/Cargo.toml b/Cargo.toml index 7426759..39fe348 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,5 +15,5 @@ [workspace] members = ["core", "deja_vu", "pe_menu"] -description = "Clone/Install Windows, create/edit boot files, and troubleshoot boot issues." +default-members = ["deja_vu", "pe_menu"] resolver = "2" diff --git a/core/Cargo.toml b/core/Cargo.toml index e0234e4..e724ecf 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,7 +1,24 @@ +# 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 . + [package] name = "core" -version = "0.1.0" +authors = ["2Shirt <2xShirt@gmail.com>"] edition = "2021" +license = "GPL" +version = "0.2.0" [dependencies] better-panic = "0.3.0" diff --git a/deja_vu/Cargo.toml b/deja_vu/Cargo.toml index ed795f3..4d6a2ba 100644 --- a/deja_vu/Cargo.toml +++ b/deja_vu/Cargo.toml @@ -16,7 +16,6 @@ [package] name = "deja-vu" authors = ["2Shirt <2xShirt@gmail.com>"] -description = "Clone Windows." edition = "2021" license = "GPL" version = "0.2.0" diff --git a/pe_menu/Cargo.toml b/pe_menu/Cargo.toml index 450a3e0..b1fdbd0 100644 --- a/pe_menu/Cargo.toml +++ b/pe_menu/Cargo.toml @@ -16,10 +16,9 @@ [package] name = "pe-menu" authors = ["2Shirt <2xShirt@gmail.com>"] -description = "Menu for WinPE." edition = "2021" license = "GPL" -version = "0.1.0" +version = "0.2.0" [dependencies] crossterm = { version = "0.28.1", features = ["event-stream"] }