structural_derive 0.3.0-alpha

Implementation detail of the structural crate.
Documentation
[package]
name = "structural_derive"
version = "0.3.0-alpha"
authors = ["rodrimati1992 <rodrimatt1985@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/structural/"
description="Implementation detail of the structural crate."
keywords = ["data-structures"]
categories = ["data-structures","rust-patterns"]
repository = "https://github.com/rodrimati1992/structural_crates/"
include = [
    "Cargo.toml", 
    "src/**/*.rs", 
    "../APACHE_license", 
    "../MIT_license"
]

[features]
# A private internal feature,this is required to run tests in this crate,
# because declaring a crate as both a `[dependency]` and a `[dev-dependency]` causes 
# their features to be combined,
# causing the optional crates of `as_derive_utils` that are only for testing
# to be enabled in regular builds.
testing=["as_derive_utils/testing"]

# A private internal feature that enables some assertions used in `structural` tests.
test_asserts=[]
impl_fields=[]

# Re-enable this feature every time you want to test whether const generics work.
use_const_str=[]
disable_const_str=[]

[badges]
travis-ci = { repository =  "rodrimati1992/structural_crates/" }

[lib]
proc-macro = true

[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
typed-arena = "~1.5"

[dependencies.core_extensions]
default_features=false
version="0.1"

[dependencies.syn]
version = "1.0"
features=["full","extra-traits"]



###### as_derive_utils

[dependencies.as_derive_utils]
version="0.8.1"
default-features=false