1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "jit_macros"
version = "0.0.9"
description = "JIT Macros"
authors = [ "Tom Bebbington <tophattedcoder@gmail.com>" ]
keywords = [ "compile", "compiler", "jit", "interpreter" ]
repository = "https://github.com/TomBebbington/jit.rs"
documentation = "http://tombebbington.github.io/jit.rs/"
license = "MIT"

[lib]
name = "jit_macros"
path = "src/macros.rs"
crate-type = ["rlib", "dylib"]

[dependencies]
matches = "*"