зеркало из https://github.com/mozilla/gecko-dev.git
23 строки
609 B
TOML
23 строки
609 B
TOML
[package]
|
|
name = "base64"
|
|
version = "0.6.0"
|
|
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.0.0"
|
|
safemem = "0.2.0"
|
|
|
|
[dev-dependencies]
|
|
rand = "=0.3.15"
|
|
|
|
[profile.bench]
|
|
# Uncomment when using `perf record`
|
|
#debug = true
|