ownable 1.0.0

Derive macro for structs/enums with Cow, which can convert Type<'a> to Type<'static> and more
Documentation
[dependencies.ownable-core]
default-features = false
version = "1.0"

[dependencies.ownable-macro]
version = "1.0"

[features]
default = ["std"]
std = ["ownable-core/std"]

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

[package]
authors = ["ALeX Kazik <alex@kazik.de>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["rust-patterns", "no-std"]
description = "Derive macro for structs/enums with Cow, which can convert Type<'a> to Type<'static> and more"
edition = "2021"
keywords = ["into_owned", "derive", "owned", "no_std"]
license = "MIT OR Apache-2.0"
name = "ownable"
readme = "README.md"
repository = "https://github.com/alexkazik/ownable"
rust-version = "1.63.0"
version = "1.0.0"

[[test]]
name = "basic"
path = "tests/basic.rs"

[[test]]
name = "const_generic"
path = "tests/const_generic.rs"

[[test]]
name = "function"
path = "tests/function.rs"

[[test]]
name = "generic_type"
path = "tests/generic_type.rs"

[[test]]
name = "reference"
path = "tests/reference.rs"