[package] name = "vmm" version = "0.1.0" authors = ["Amazon Firecracker team "] edition = "2021" license = "Apache-2.0" [lib] bench = false [dependencies] aws-lc-rs = "1.0.2" bitflags = "2.0.2" derive_more = { version = "0.99.17", default-features = false, features = ["from", "display"] } event-manager = "0.3.0" kvm-bindings = { version = "0.6.0", features = ["fam-wrappers"] } kvm-ioctls = "0.14.0" lazy_static = "1.4.0" libc = "0.2.117" linux-loader = "0.9.0" serde = { version = "1.0.136", features = ["derive"] } semver = { version = "1.0.17", features = ["serde"] } serde_json = "1.0.78" timerfd = "1.5.0" thiserror = "1.0.32" userfaultfd = "0.5.1" versionize = "0.1.10" versionize_derive = "0.1.5" vm-allocator = "0.1.0" vm-fdt = "0.2.0" vm-superio = "0.7.0" log = { version = "0.4.17", features = ["serde"] } dumbo = { path = "../dumbo" } logger = { path = "../logger" } mmds = { path = "../mmds" } net_gen = { path = "../net_gen" } seccompiler = { path = "../seccompiler" } snapshot = { path = "../snapshot"} utils = { path = "../utils" } virtio_gen = { path = "../virtio_gen" } [dev-dependencies] criterion = { version = "0.5.0", default-features = false } device_tree = "1.1.0" proptest = { version = "1.0.0", default-features = false, features = ["std"] } [[bench]] name = "cpu_templates" harness = false