structural 0.3.0-alpha

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

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

[features]
default = ["std"]
std=["alloc"]
alloc=["core_extensions/alloc"]

# An internal cargo feature,used by tests
testing=["structural_derive/test_asserts"]
# Used as a workaround for `cargo deadlinks`,
# hides the re-exports from standard library crates.
hide_reexports=[]

specialization=[]
nightly_specialization=["specialization"]

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

disable_const_str=["structural_derive/disable_const_str"]

impl_fields=["structural_derive/impl_fields"]
nightly_impl_fields=["impl_fields"]

test_all=["all","testing"]
all=[
    "std",
    "hide_reexports",
    "nightly_specialization",
    "nightly_use_const_str",
    "nightly_impl_fields",
]


[dependencies]
structural_derive={version="0.3.0-alpha",path="../structural_derive"}

[dependencies.core_extensions]
version="0.1.15"
default_features=false
features=["colltraits"]


[build-dependencies]
rustc_version = "0.2"