[package] name = "outer_attribute" version = "0.1.1" authors = ["Dmitrii Demenev "] edition = "2021" rust-version = "1.56.1" # https://github.com/foresterre/cargo-msrv description = "A library providiving `OuterAttribute` that implements `syn::parse::Parse` trait." documentation = "https://docs.rs/outer_attribute" readme = "README.md" repository = "https://github.com/JohnScience/outer_attribute" license = "MIT OR Apache-2.0" # license-file | not needed keywords = ["parsing", "syn", "outer", "attribute"] categories = ["development-tools::procedural-macro-helpers"] # workspace | not needed # build | not needed # links | not needed # exclude | not needed include = [ "/Cargo.toml", "/LICENSE_APACHE", "/LICENSE_MIT", "/README.md", "/src/lib.rs", "/tests/**", ] # publish | not needed # metadata | not needed # default-run | not needed autobins = false autoexamples = false autotests = false autobenches = false # resolver | not needed # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] syn = { version = "1.0.84", features=["parsing"] } proc-macro2 = "1.0.34" [features] # The features are mutually exclusive because their use in combination is counterproductive same_layout = [] different_layout = [] default = ["different_layout"]