Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 02880340f8 | |||
| ab31cf07de | |||
| 5df258f604 |
4 changed files with 14 additions and 14 deletions
22
Cargo.lock
generated
22
Cargo.lock
generated
|
|
@ -516,7 +516,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "core"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"better-panic",
|
||||
|
|
@ -736,7 +736,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "deja-vu"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"check_elevation",
|
||||
|
|
@ -853,7 +853,7 @@ dependencies = [
|
|||
"libc",
|
||||
"option-ext",
|
||||
"redox_users",
|
||||
"windows-sys 0.59.0",
|
||||
"windows-sys 0.61.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -936,7 +936,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
||||
dependencies = [
|
||||
"libc",
|
||||
"windows-sys 0.59.0",
|
||||
"windows-sys 0.52.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -2328,7 +2328,7 @@ dependencies = [
|
|||
"portable-atomic",
|
||||
"portable-atomic-util",
|
||||
"serde_core",
|
||||
"windows-sys 0.59.0",
|
||||
"windows-sys 0.52.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -2553,7 +2553,7 @@ version = "0.50.3"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
||||
dependencies = [
|
||||
"windows-sys 0.59.0",
|
||||
"windows-sys 0.61.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -2676,7 +2676,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "ost-db-connector"
|
||||
version = "0.1.0"
|
||||
source = "git+ssh://git@git.1201.com:2222/1201/ost-db-connector.git#8078a52efaf8bcdb93705d8fbdd99e17a94998d7"
|
||||
source = "git+ssh://git@git.1201.com:2222/1201/ost-db-connector.git#57ad1746d6b37d419f230a2e0b928e94c220b8dc"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"clap",
|
||||
|
|
@ -3142,7 +3142,7 @@ dependencies = [
|
|||
"errno",
|
||||
"libc",
|
||||
"linux-raw-sys 0.4.15",
|
||||
"windows-sys 0.59.0",
|
||||
"windows-sys 0.52.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -3155,7 +3155,7 @@ dependencies = [
|
|||
"errno",
|
||||
"libc",
|
||||
"linux-raw-sys 0.11.0",
|
||||
"windows-sys 0.59.0",
|
||||
"windows-sys 0.52.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -3753,7 +3753,7 @@ dependencies = [
|
|||
"getrandom 0.3.4",
|
||||
"once_cell",
|
||||
"rustix 1.1.3",
|
||||
"windows-sys 0.59.0",
|
||||
"windows-sys 0.52.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -4395,7 +4395,7 @@ version = "0.1.11"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
||||
dependencies = [
|
||||
"windows-sys 0.59.0",
|
||||
"windows-sys 0.52.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ name = "core"
|
|||
authors = ["2Shirt <2xShirt@gmail.com>"]
|
||||
edition = "2024"
|
||||
license = "GPL"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
|
||||
[dependencies]
|
||||
better-panic = "0.3.0"
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ name = "deja-vu"
|
|||
authors = ["2Shirt <2xShirt@gmail.com>"]
|
||||
edition = "2024"
|
||||
license = "GPL"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
|
||||
[dependencies]
|
||||
core = { path = "../core" }
|
||||
|
|
|
|||
|
|
@ -340,7 +340,7 @@ impl App {
|
|||
}
|
||||
Mode::SetUserName => {
|
||||
if let Ok(wim_sources) = self.state.wim_sources.lock()
|
||||
&& let Some(index) = self.state.wim_image_index
|
||||
&& let Some(index) = self.state.wim_file_index
|
||||
{
|
||||
let image = wim_sources.get_file(index);
|
||||
if image.is_backup {
|
||||
|
|
|
|||
Loading…
Reference in a new issue