-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (27 loc) · 1.12 KB
/
Cargo.toml
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
26
27
28
29
30
31
32
33
[package]
name = "rusty-asm"
version = "0.2.1"
authors = ["Jeremy Davis <jeremydavis519@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "A layer of syntactic sugar between Rust and inline assembly"
keywords = ["assembly", "assembler"]
repository = "https://github.com/jeremydavis519/rusty-asm"
categories = ["development-tools"]
readme = "README.md"
include = ["/Cargo.toml", "/src/**/*.rs", "/README.md", "/LICENSE-APACHE", "/LICENSE-MIT"]
[badges]
travis-ci = { repository = "jeremydavis519/rusty-asm", branch = "master" }
coveralls = { repository = "jeremydavis519/rusty-asm", branch = "master", service = "github" }
[lib]
crate-type = ["proc-macro"]
[dependencies]
proc-macro2 = "0.4"
quote = "0.6"
syn = { version = "0.15", default-features = false, features = ["clone-impls", "derive", "full", "parsing", "printing", "visit-mut", "extra-traits"] }
unicode-xid = { version = "0.1" }
[features]
default = [] # The default build is more stable but doesn't let us produce custom warnings from the macro.
proc-macro = ["proc-macro2/nightly", "proc-macro2/proc-macro"]
[dev-dependencies]
runtime-macros = "0.3"