26 lines
780 B
TOML
26 lines
780 B
TOML
[package]
|
|
name = "base16ct"
|
|
version = "0.2.0"
|
|
description = """
|
|
Pure Rust implementation of Base16 a.k.a hexadecimal (RFC 4648) which avoids
|
|
any usages of data-dependent branches/LUTs and thereby provides portable
|
|
"best effort" constant-time operation and embedded-friendly no_std support
|
|
"""
|
|
authors = ["RustCrypto Developers"]
|
|
license = "Apache-2.0 OR MIT"
|
|
documentation = "https://docs.rs/base16ct"
|
|
repository = "https://github.com/RustCrypto/formats/tree/master/base16ct"
|
|
categories = ["cryptography", "encoding", "no-std", "parser-implementations"]
|
|
keywords = ["crypto", "hex", "hexadecimal"]
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
rust-version = "1.60"
|
|
|
|
[features]
|
|
alloc = []
|
|
std = ["alloc"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|