[package] name = "derive_tools_meta" version = "0.24.0" edition = "2021" authors = [ "Kostiantyn Wandalen ", "Dmytro Kryvoruchko ", ] license = "MIT" readme = "Readme.md" documentation = "https://docs.rs/derive_tools_meta" repository = "https://github.com/Wandalen/wTools/tree/master/module/core/derive_tools_meta" homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/derive_tools_meta" description = """ Collection of derives which extend STD. Its meta module. Don't use directly. """ categories = [ "algorithms", "development-tools" ] keywords = [ "fundamental", "general-purpose" ] [lints] workspace = true [package.metadata.docs.rs] features = [ "full" ] all-features = false [lib] proc-macro = true [features] default = [ "enabled", "derive_deref_mut", "derive_deref", "derive_from", "derive_new", "derive_inner_from", "derive_as_ref", "derive_as_mut", "derive_variadic_from", "derive_phantom" ] full = [ "enabled", "derive_deref_mut", "derive_deref", "derive_from", "derive_new", "derive_inner_from", "derive_as_ref", "derive_as_mut", "derive_variadic_from", "derive_phantom" ] enabled = [ "macro_tools/enabled", "iter_tools/enabled", "former_types/enabled" ] derive_as_mut = [] derive_as_ref = [] derive_deref = [] derive_deref_mut = [] derive_from = [] derive_new = [] derive_inner_from = [] derive_variadic_from = [] derive_phantom = [] [dependencies] # zzz : qqq : optimize features set macro_tools = { workspace = true, features = [ "attr", "attr_prop", "container_kind", "diag", "generic_args", "typ", "derive", "generic_params", "name", "phantom", "struct_like", "quantifier" ] } iter_tools = { workspace = true, features = [] } former_types = { workspace = true, features = [ "types_component_assign" ] } const_format = { version = "0.2.32" } # xxx2 : continue [dev-dependencies] test_tools = { workspace = true }