cloud-hypervisor/Cargo.toml
Rob Bradford fca911e5f3 main: Add logging support controlled by command line
This makes the log macros (error!, warn!, info!, etc) in the code work.
It currently defaults to showing only error! messages, but by passing an
increasing number of "-v"s on the command line the verbosity can be
increased.

By default log output goes onto stderr but it can also be sent to a
file.

Fixes: #121

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
2019-08-07 15:48:17 +01:00

27 lines
471 B
TOML

[package]
name = "cloud-hypervisor"
version = "0.1.0"
authors = ["The Cloud Hypervisor Authors"]
edition = "2018"
[dependencies]
clap = "2.33.0"
lazy_static = "1.3.0"
log = { version = "0.4.8", features = ["std"] }
vmm = { path = "vmm" }
[dev-dependencies]
ssh2 = "0.3.3"
dirs = "2.0.2"
credibility = "0.1.3"
tempdir= "0.3.7"
lazy_static= "1.3.0"
[features]
default = []
# Integration tests require a special environment to run in
integration_tests = []
[workspace]