amplify 3.6.0

Amplifying Rust language capabilities: multiple generic trait implementations, type wrappers, derive macros
Documentation
[package]
name = "amplify"
version = "3.6.0"
description = "Amplifying Rust language capabilities: multiple generic trait implementations, type wrappers, derive macros"
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>", "Martin Habovstiak <martin.habovstiak@gmail.com>"]
keywords = ["generics", "core", "no_std", "wrap", "patterns"]
categories = ["data-structures", "no-std", "rust-patterns"]
repository = "https://github.com/LNP-BP/rust-amplify"
homepage = "https://github.com/LNP-BP"
license = "MIT"
readme = "README.md"
edition = "2018"
exclude = [".github", "derive", "syn", "serde_str_helpers", "stringly_conversions"]

[lib]
name = "amplify"
path = "src/lib.rs"

[dependencies]
libc = { version = "0.2", optional = true }
amplify_derive = { version = "2.7", path = "./derive", optional = true }
amplify_syn = { version = "1.1", path = "./syn", optional = true }
parse_arg = { version = "0.1.4", optional = true }
# This strange naming is a workaround for not being able to define required features for a dependency
# See https://github.com/rust-lang/api-guidelines/issues/180 for the explanation and references.
serde_crate = { package = "serde", version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
serde_yaml = { version = "0.8", optional = true }
toml = { version = "0.5", optional = true }
stringly_conversions = { version = "0.1.1", optional = true, features = ["alloc"] }

[dev-dependencies]
bincode = "1.3.3"

[features]
all = ["serde", "std", "parse_arg", "stringly_conversions", "c_raw", "proc_attr", "derive"]
c_raw = ["libc"]
proc_attr = ["amplify_syn"]
derive = ["amplify_derive", "std"]
serde = ["serde_crate", "std",
         "serde_yaml", "serde_json", "toml",
         "stringly_conversions",
         "stringly_conversions/alloc",
         "stringly_conversions/serde_str_helpers"]
default = ["std", "derive"]
std = ["derive"]

[workspace]
members = [".", "derive", "syn", "serde_str_helpers", "stringly_conversions"]
default-members = ["."]