[package] name = "ascii-armor" version = "0.9.0" description = "ASCII Armor: binary to text encoding library and command-line utility" keywords = ["ascii", "encoding"] categories = ["encoding", "value-formatting", "command-line-utilities"] readme = "README.md" authors = ["Dr. Maxim Orlovsky "] homepage = "https://github.com/UBIDECO/ascii-armor" repository = "https://github.com/UBIDECO/ascii-armor" rust-version = "1.76.0" # due to amplify edition = "2021" license = "Apache-2.0" [[bin]] name = "armor" path = "src/main.rs" [lib] name = "armor" [dependencies] amplify = "4.8.0" strict_encoding = { version = "2.8.1", optional = true } baid64 = { version = "0.4.0", optional = true } base85 = { version = "2.0.0", optional = true } sha2 = "0.10.8" [features] default = ["strict", "base85"] base64 = ["strict"] base85 = ["dep:base85"] strict = ["strict_encoding", "baid64"]