1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2021" 14rust-version = "1.81" 15name = "writeable" 16version = "0.6.1" 17authors = ["The ICU4X Project Developers"] 18build = false 19include = [ 20 "data/**/*", 21 "src/**/*", 22 "examples/**/*", 23 "benches/**/*", 24 "tests/**/*", 25 "Cargo.toml", 26 "LICENSE", 27 "README.md", 28] 29autolib = false 30autobins = false 31autoexamples = false 32autotests = false 33autobenches = false 34description = "A more efficient alternative to fmt::Display" 35readme = "README.md" 36license = "Unicode-3.0" 37repository = "https://github.com/unicode-org/icu4x" 38 39[package.metadata.docs.rs] 40all-features = true 41 42[package.metadata.workspaces] 43independent = true 44 45[features] 46either = ["dep:either"] 47 48[lib] 49name = "writeable" 50path = "src/lib.rs" 51bench = false 52 53[[example]] 54name = "writeable_message" 55path = "examples/writeable_message.rs" 56 57[[test]] 58name = "writeable" 59path = "tests/writeable.rs" 60 61[[bench]] 62name = "writeable" 63path = "benches/writeable.rs" 64harness = false 65 66[dependencies.either] 67version = "1.9.0" 68optional = true 69default-features = false 70 71[dev-dependencies.rand] 72version = "0.8" 73features = ["small_rng"] 74 75[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.criterion] 76version = "0.5.0" 77