[package]
edition = "2021"
name = "exemplars"
version = "0.0.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Trait for providing examples of a type"
homepage = "https://github.com/Kinrany/exemplars"
readme = "README.md"
keywords = [
"example",
"no_std",
]
categories = [
"development-tools::debugging",
"development-tools::testing",
"no-std::no-alloc",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Kinrany/exemplars.git"
[lib]
name = "exemplars"
path = "src/lib.rs"
[dependencies.bigdecimal_03]
version = "0.3.1"
optional = true
default-features = false
package = "bigdecimal"
[dependencies.bigdecimal_04]
version = "0.4.7"
optional = true
default-features = false
package = "bigdecimal"
[dependencies.rust_decimal]
version = "1.36.0"
optional = true
default-features = false
[dependencies.uuid]
version = "1.11.1"
optional = true
default-features = false
[features]
alloc = []
bigdecimal_03 = ["dep:bigdecimal_03"]
bigdecimal_04 = ["dep:bigdecimal_04"]
default = ["std"]
rust_decimal = ["dep:rust_decimal"]
std = ["alloc"]
uuid = ["dep:uuid"]