[package]
edition = "2021"
name = "yore"
version = "2.0.0"
authors = ["Andreas Liljeqvist <bonega@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust library for decoding/encoding character sets according to OEM code pages"
readme = "README.md"
keywords = [
"encoding",
"charset",
]
categories = ["encoding"]
license = "MIT"
repository = "https://github.com/bonega/yore/"
[features]
alloc = []
default = ["std"]
std = ["alloc"]
[lib]
name = "yore"
path = "src/lib.rs"
bench = false
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.3.5"
[dev-dependencies.rand]
version = "0.8.4"
[dev-dependencies.rand_pcg]
version = "0.3.1"