mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-01 03:41:22 +02:00
https://github.com/firecracker-microvm/firecracker Secure and fast microVMs for serverless computing
60 lines
1.5 KiB
Diff
60 lines
1.5 KiB
Diff
From df22cfffafa2d9526a18c6ebc709b4d764286681 Mon Sep 17 00:00:00 2001
|
|
From: AlexandruCihodaru <cihodar@amazon.com>
|
|
Date: Mon, 6 Sep 2021 11:13:47 +0300
|
|
Subject: [PATCH] [dependencies]: Included vm-fdt crate
|
|
|
|
Signed-off-by: AlexandruCihodaru <cihodar@amazon.com>
|
|
---
|
|
Cargo.lock | 7 +++++++
|
|
src/arch/Cargo.toml | 2 +-
|
|
2 files changed, 8 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/Cargo.lock b/Cargo.lock
|
|
index 29851740..d1262012 100644
|
|
--- a/Cargo.lock
|
|
+++ b/Cargo.lock
|
|
@@ -39,6 +39,7 @@ dependencies = [
|
|
"utils",
|
|
"versionize",
|
|
"versionize_derive",
|
|
+ "vm-fdt",
|
|
"vm-memory 0.1.0",
|
|
]
|
|
|
|
@@ -965,6 +966,12 @@ dependencies = [
|
|
name = "virtio_gen"
|
|
version = "0.1.0"
|
|
|
|
+[[package]]
|
|
+name = "vm-fdt"
|
|
+version = "0.1.0"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "bd986f4fdf949ab2181c7b4fedb03fb0e9de6b0aa788fff247b2608701ce3457"
|
|
+
|
|
[[package]]
|
|
name = "vm-memory"
|
|
version = "0.1.0"
|
|
diff --git a/src/arch/Cargo.toml b/src/arch/Cargo.toml
|
|
index be5b7b84..73e4dfcc 100644
|
|
--- a/src/arch/Cargo.toml
|
|
+++ b/src/arch/Cargo.toml
|
|
@@ -9,6 +9,7 @@ kvm-bindings = { version = ">=0.5.0", features = ["fam-wrappers"] }
|
|
kvm-ioctls = ">=0.9.0"
|
|
libc = ">=0.2.39"
|
|
vm-memory = { path = "../vm-memory" }
|
|
+vm-fdt = "0.1.0"
|
|
versionize = ">=0.1.6"
|
|
versionize_derive = ">=0.1.3"
|
|
|
|
@@ -18,6 +19,5 @@ utils = { path = "../utils" }
|
|
|
|
[dev-dependencies]
|
|
device_tree = ">=1.1.0"
|
|
-
|
|
[target.'cfg(target_arch="aarch64")'.dependencies]
|
|
libfdt-bindings = { path = "../libfdt-bindings" }
|
|
\ No newline at end of file
|
|
--
|
|
2.31.1
|
|
|