1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
[package]
name = "data-encoding-macro"
version = "0.1.12"
authors = ["Julien Cretin <cretin@google.com>"]
license = "MIT"
edition = "2018"
keywords = ["no_std", "base64", "base32", "hex", "macro"]
categories = ["encoding", "no-std"]
readme = "README.md"
repository = "https://github.com/ia0/data-encoding"
documentation = "https://docs.rs/data-encoding-macro"
description = "Macros for data-encoding"
include = ["Cargo.toml", "LICENSE", "README.md", "src/lib.rs"]
[dependencies]
data-encoding = { version = "2.3", path = "..", default-features = false }
data-encoding-macro-internal = { version = "0.1.10", path = "internal" }
|