multi-base 1.0.0

multibase in rust
Documentation
[package]
name = "multi-base"
version = "1.0.0"
authors = ["Friedel Ziegelmayer <dignifiedquire@gmail.com>", "Dave Grantham <dwg@linuxprogrammer.org>"]
edition = "2021"
license = "MIT"
readme = "README.md"
description = "multibase in rust"
repository = "https://github.com/cryptidtech/multi-base.git"
keywords = ["ipld", "ipfs", "multihash", "cid", "no_std"]
categories = ["encoding"]

[features]
default = ["std"]
std = ["data-encoding/std"]

[dependencies]
base-x = { version = "0.2.7", default-features = false }
data-encoding = { version = "2.3.1", default-features = false, features = ["alloc"] }
data-encoding-macro = "0.1.9"
thiserror = { version = "2.0", default-features = false }

[dev-dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
proptest = "1.4"
rand = "0.8"

[[bench]]
name = "multibase"
harness = false
path = "benches/multibase.rs"