[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-codec"
version = "0.3.5"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/README.zh_CN.md",
"/doc/**/user_guide*.md",
"/examples/**",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reusable byte and text codecs for Rust applications"
homepage = "https://github.com/qubit-ltd/rs-codec"
documentation = "https://docs.rs/qubit-codec"
readme = "README.md"
keywords = [
"codec",
"hex",
"base64",
"percent",
"qubit",
]
categories = [
"encoding",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-codec"
[lib]
name = "qubit_codec"
path = "src/lib.rs"
[[test]]
name = "tests"
path = "tests/mod.rs"
[dependencies.base64]
version = "0.22"
[dependencies.thiserror]
version = "2.0"
[profile.bench]
opt-level = 3
lto = true
codegen-units = 1
[profile.release]
opt-level = 3
lto = true
codegen-units = 1