From 6b995785c780dd47cb0e02821001f446cf4ec211 Mon Sep 17 00:00:00 2001 From: Cara Salter Date: Wed, 20 Apr 2022 13:08:28 -0400 Subject: house: Allow for the introduction of new VMs Templates the XML and creates the disk images --- Cargo.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 3b329be..76d3b8a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,14 +5,33 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +build = "src/build.rs" + [dependencies] virt = { git = "https://gitlab.com/libvirt/libvirt-rust.git", rev = "10456b6e59ec73e8ef418cf0a29a9bf33be8ded6" } thiserror = "1" +rand = "0.8" +mac_address = "1" + [dependencies.serde] version = "1" features = [ "derive" ] + +[dependencies.tokio] +version = "1" +features = [ "full" ] + +[dependencies.uuid] +version = "1" +features = [ + "serde", + "v4" + ] + +[build-dependencies] +ructe = "0.14" -- cgit v1.2.3