z-base-32 0.1.5

z-base-32: human-oriented base-32 encoding
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 = "2018"
name = "z-base-32"
version = "0.1.5"
authors = ["Matus Ferech <matus.ferech@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "z-base-32: human-oriented base-32 encoding"
readme = "README.md"
keywords = [
    "zbase32",
    "base32",
    "encode",
    "decode",
    "python",
]
categories = ["encoding"]
license = "MIT"
repository = "https://github.com/matusf/z-base-32"

[features]
cli = ["dep:clap"]
python = ["dep:pyo3"]

[lib]
name = "zbase32"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[[bin]]
name = "zbase32"
path = "src/bin/zbase32.rs"
required-features = ["cli"]

[dependencies.clap]
version = "4"
features = ["derive"]
optional = true

[dependencies.pyo3]
version = "0.29"
features = ["extension-module"]
optional = true

[dev-dependencies.quickcheck]
version = "1"

[profile.dist]
lto = "thin"
inherits = "release"