[package]
edition = "2021"
rust-version = "1.70.0"
name = "tick-encoding"
version = "0.1.4"
authors = ["Kyle Lacy <rust@kyle.space>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple encoding scheme to encode binary data into ASCII strings"
readme = "README.md"
keywords = [
"bytes",
"binary",
"encoding",
"percent",
]
categories = [
"encoding",
"no-std",
"no-std::no-alloc",
]
license = "MIT OR Unlicense"
repository = "https://github.com/kylewlacy/tick-encoding"
[features]
alloc = []
default = ["std"]
safe = []
std = [
"alloc",
"dep:thiserror",
]
[lib]
name = "tick_encoding"
path = "src/lib.rs"
[[test]]
name = "decode"
path = "tests/decode.rs"
[[test]]
name = "decode_in_place"
path = "tests/decode_in_place.rs"
[[test]]
name = "decode_iter"
path = "tests/decode_iter.rs"
[[test]]
name = "encode"
path = "tests/encode.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[bench]]
name = "decode"
path = "benches/decode.rs"
harness = false
[[bench]]
name = "decode_in_place"
path = "benches/decode_in_place.rs"
harness = false
[[bench]]
name = "encode"
path = "benches/encode.rs"
harness = false
[[bench]]
name = "functions"
path = "benches/functions.rs"
harness = false
[[bench]]
name = "iter"
path = "benches/iter.rs"
harness = false
[dependencies.thiserror]
version = "2.0.18"
optional = true
[dev-dependencies.assert_matches]
version = "1.5.0"
[dev-dependencies.divan]
version = "0.1.15"
[dev-dependencies.proptest]
version = "1.6.0"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1