-
Notifications
You must be signed in to change notification settings - Fork 30
/
Cargo.toml
34 lines (30 loc) · 943 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "virt"
version = "0.4.1"
edition = "2018"
authors = ["Sahid Orentino Ferdjaoui <[email protected]>",]
license = "LGPL-2.1"
readme = "README.md"
description = "Rust bindings to the libvirt C library"
documentation = "https://docs.rs/virt"
keywords = ["libvirt", "virtualization", "KVM", "QEMU", "Xen",]
categories = ["api-bindings", "emulators",]
repository = "https://gitlab.com/libvirt/libvirt-rust"
homepage = "https://libvirt.org/"
[dependencies]
libc = "0.2.0"
virt-sys = { path = "virt-sys", version = "0.3.0" }
uuid = "1.7.0"
[dev-dependencies]
serde = { version = "1.0.0", features = ["derive"] }
serde-xml-rs = { version = "0.6.0" }
pkg-config = { version = "0.3.0" }
regex = { version = "~1.9.0" }
[features]
qemu = ["virt-sys/qemu"]
bindgen_regenerate = ["virt-sys/bindgen_regenerate"]
api_coverage = []
[[example]]
name = "guest_agent"
path = "examples/guest_agent.rs"
required-features = [ "qemu" ]