Adds Cargo.lock (#1102)

This commit is contained in:
Putta Khunchalee 2024-11-16 19:25:36 +07:00 committed by GitHub
parent b6fcfa33eb
commit 274167602e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 5535 additions and 6 deletions

1
.gitignore vendored
View File

@ -1,6 +1,5 @@
.DS_Store
/.cache/
/.flatpak-builder/
/Cargo.lock
/build/
/target/

View File

@ -5,6 +5,7 @@
"ms-vscode.hexeditor",
"redhat.vscode-yaml",
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"vadimcn.vscode-lldb"
]
}

5529
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -21,7 +21,7 @@ slint = [
qt = []
[dependencies]
bitfield-struct = "0.8.0"
bitfield-struct = "0.9.2"
clap = { version = "4.5.20", features = ["derive"], optional = true }
gdbstub = "0.7.2"
gdbstub_arch = "0.3.1"
@ -71,5 +71,5 @@ metal = "0.29.0"
objc = "0.2.7"
[build-dependencies]
cbindgen = "0.26.0"
cbindgen = "0.27.0"
slint-build = { git = "https://github.com/slint-ui/slint", rev = "875ca075fb5b2dfe4c3ab0a499d5759412fc1395" }

View File

@ -249,5 +249,5 @@ void vmm_shutdown(struct Vmm *vmm);
bool vmm_shutting_down(struct Vmm *vmm);
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus
} // extern "C"
#endif // __cplusplus

View File

@ -5,7 +5,7 @@ edition = "2021"
[dependencies]
anstyle = { version = "1.0.8", default-features = false }
bitfield-struct = "0.8.0"
bitfield-struct = "0.9.2"
hashbrown = "0.14.5"
macros = { path = "../macros" }
obconf = { path = "../src/obconf", features = ["virt"] }