mirror of
https://gitee.com/openharmony/third_party_rust_rust-base64
synced 2025-01-05 20:38:16 +00:00
23 lines
644 B
TOML
23 lines
644 B
TOML
[package]
|
|
name = "base64"
|
|
version = "0.9.1"
|
|
authors = ["Alice Maz <alice@alicemaz.com>", "Marshall Pierce <marshall@mpierce.org>"]
|
|
description = "encodes and decodes base64 as bytes or utf8"
|
|
repository = "https://github.com/alicemaz/rust-base64"
|
|
documentation = "https://github.com/alicemaz/rust-base64/blob/master/README.md"
|
|
readme = "README.md"
|
|
keywords = ["base64", "utf8", "encode", "decode"]
|
|
categories = ["encoding"]
|
|
license = "MIT/Apache-2.0"
|
|
|
|
[dependencies]
|
|
byteorder = "1.1.0"
|
|
safemem = "0.2.0"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.4"
|
|
|
|
[profile.bench]
|
|
# Useful for better disassembly when using `perf record` and `perf annotate`
|
|
debug = true
|