Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
490 changes: 342 additions & 148 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/hyperlight_host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ workspace = true
gdbstub = { version = "0.7.9", optional = true }
gdbstub_arch = { version = "0.3.2", optional = true }
goblin = { version = "0.10", default-features = false, features = ["std", "elf32", "elf64", "endian_fd"] }
rand = { version = "0.9" }
rand = { version = "0.10" }
cfg-if = { version = "1.0.4" }
libc = { version = "0.2.181" }
flatbuffers = "25.12.19"
Expand Down
2 changes: 1 addition & 1 deletion src/hyperlight_host/src/hypervisor/hyperlight_vm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1460,7 +1460,7 @@ mod tests {
use std::sync::{Arc, Mutex};

use hyperlight_common::vmem::{self, BasicMapping, Mapping, MappingKind};
use rand::Rng;
use rand::RngExt;

use super::*;
#[cfg(kvm)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ mod tests {
use std::thread;
use std::time::{Duration, Instant};

use rand::{Rng, rng};
use rand::{RngExt, rng};
use windows::Win32::Foundation::HANDLE;
use windows::Win32::System::Diagnostics::ToolHelp::{
CreateToolhelp32Snapshot, PROCESSENTRY32, Process32First, Process32Next, TH32CS_SNAPPROCESS,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ limitations under the License.

use std::os::raw::c_void;

#[cfg(feature = "trace_guest")]
use tracing::Span;
#[cfg(feature = "trace_guest")]
use tracing_opentelemetry::OpenTelemetrySpanExt;
Expand Down
3 changes: 1 addition & 2 deletions src/hyperlight_host/src/sandbox/uninitialized_evolve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,10 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

#[cfg(gdb)]
use std::sync::{Arc, Mutex};

use rand::Rng;
use rand::RngExt;
use tracing::{Span, instrument};

use super::SandboxConfiguration;
Expand Down
4 changes: 2 additions & 2 deletions src/tests/rust_guests/dummyguest/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/tests/rust_guests/simpleguest/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/tests/rust_guests/witguest/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.