[package]
edition = "2021"
name = "multi-base"
version = "1.0.0"
authors = [
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"Dave Grantham <dwg@linuxprogrammer.org>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "multibase in rust"
readme = "README.md"
keywords = [
"ipld",
"ipfs",
"multihash",
"cid",
"no_std",
]
categories = ["encoding"]
license = "MIT"
repository = "https://github.com/cryptidtech/multi-base.git"
[features]
default = ["std"]
std = ["data-encoding/std"]
[lib]
name = "multi_base"
path = "src/lib.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "security"
path = "tests/security.rs"
[[test]]
name = "thread_safety"
path = "tests/thread_safety.rs"
[[bench]]
name = "multibase"
path = "benches/multibase.rs"
harness = false
[dependencies.base-x]
version = "0.2.7"
default-features = false
[dependencies.data-encoding]
version = "2.3.1"
features = ["alloc"]
default-features = false
[dependencies.data-encoding-macro]
version = "0.1.9"
[dependencies.thiserror]
version = "2.0"
default-features = false
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.rand]
version = "0.8"