blob: 96cbc0927c43a6f431e3183e7a708449858525be (
plain) (
blame)
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
|
[package]
name = "x86test"
version = "0.0.3"
authors = ["Gerd Zellweger <mail@gerdzellweger.com>"]
repository = "https://github.com/gz/rust-x86"
documentation = "https://docs.rs/x86test"
readme = "README.md"
keywords = ["vm", "os", "amd64", "kvm", "x86-64"]
license = "MIT OR Apache-2.0"
edition = '2018'
description = """
Custom test runner for bare-metal x86 tests.
"""
[dependencies]
x86test-macro = { path = "x86test_macro" }
x86test-types = { path = "x86test_types" }
kvm-sys = "0.3.0"
x86 = { path = ".." }
mmap = "0.1.1"
log = "0.4"
klogger = { version = "0.0.8", features = ["use_ioports"] }
|