blob: bc9ed5e13e9620fe059a8186068ee5a435e74213 (
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
|
[package]
name = "x86test-macro"
version = "0.0.3"
authors = ["Gerd Zellweger <mail@gerdzellweger.com>"]
repository = "https://github.com/gz/rust-x86"
documentation = "https://docs.rs/x86test-macro"
keywords = ["vm", "os", "amd64", "kvm", "x86-64"]
license = "MIT OR Apache-2.0"
edition = '2018'
description = """
Procedural macro plugin for x86test.
"""
[dependencies]
syn = { version = "0.15", features = ["full", "extra-traits"] }
quote = "0.6"
proc-macro2 = "0.4"
x86test-types = { path = "../x86test_types", version = "0.0.3" }
[lib]
proc-macro = true
|