nonparallel 0.1.0

Rust macro for ensuring non-parallel execution of functions.
Documentation
[package]
name = "nonparallel"
version = "0.1.0"
authors = ["Danilo Bargen <mail@dbrgn.ch>"]
documentation = "https://docs.rs/nonparallel/"
repository = "https://github.com/dbrgn/nonparallel/"
license = "MIT OR Apache-2.0"
description = "Rust macro for ensuring non-parallel execution of functions."
readme = "README.md"
keywords = ["parallel", "concurrent", "lock", "macro", "testing"]
include = [
    "**/*.rs",
    "Cargo.toml",
    "README.md",
    "CHANGELOG.md",
    "LICENSE-MIT",
    "LICENSE-APACHE",
]
edition = "2018"

[lib]
proc-macro = true

[dependencies]
syn = { version = "1", features = ["full"] }
quote = "1"

[dev-dependencies]
lazy_static = "1"