use-encoding 0.1.0

Feature-gated facade crate for RustUse encoding helpers
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.95.0"
name = "use-encoding"
version = "0.1.0"
authors = ["RustUse Contributors"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Feature-gated facade crate for RustUse encoding helpers"
homepage = "https://rustuse.org"
documentation = "https://rustuse.org"
readme = "README.md"
keywords = [
    "encoding",
    "base64",
    "hex",
    "utf8",
    "percent",
]
categories = [
    "encoding",
    "text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/RustUse/use-encoding"
resolver = "2"

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

[features]
ascii = ["dep:use-ascii"]
base32 = ["dep:use-base32"]
base64 = ["dep:use-base64"]
default = []
escape = ["dep:use-escape"]
full = [
    "percent",
    "base64",
    "hex",
    "ascii",
    "utf8",
    "escape",
    "base32",
]
hex = ["dep:use-hex"]
percent = ["dep:use-percent"]
utf8 = ["dep:use-utf8"]

[lib]
name = "use_encoding"
path = "src/lib.rs"

[[test]]
name = "facade"
path = "tests/facade.rs"

[dependencies.use-ascii]
version = "0.1.0"
optional = true

[dependencies.use-base32]
version = "0.1.0"
optional = true

[dependencies.use-base64]
version = "0.1.0"
optional = true

[dependencies.use-escape]
version = "0.1.0"
optional = true

[dependencies.use-hex]
version = "0.1.0"
optional = true

[dependencies.use-percent]
version = "0.1.0"
optional = true

[dependencies.use-utf8]
version = "0.1.0"
optional = true

[lints.rust]
unsafe_code = "forbid"