writeable 0.4.0

A more efficient alternative to fmt::Display
Documentation
# This file is part of ICU4X. For terms of use, please see the file
# called LICENSE at the top level of the ICU4X source tree
# (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).

[package]
name = "writeable"
description = "A more efficient alternative to fmt::Display"
version = "0.4.0"
authors = ["The ICU4X Project Developers"]
edition = "2018"
readme = "README.md"
repository = "https://github.com/unicode-org/icu4x"
license-file = "LICENSE"
# Keep this in sync with other crates unless there are exceptions
include = [
    "src/**/*",
    "examples/**/*",
    "benches/**/*",
    "tests/**/*",
    "Cargo.toml",
    "LICENSE",
    "README.md"
]

[package.metadata.docs.rs]
all-features = true

[dev-dependencies]
criterion = "0.3"
icu_benchmark_macros = { version = "0.6", path = "../../tools/benchmark/macros" }
rand = { version = "0.8", features = ["small_rng"] }

[lib]
bench = false  # This option is required for Benchmark CI
path = "src/lib.rs"

[features]
default = []

bench = []

[[bench]]
name = "writeable"
harness = false