Files
flexiber/Cargo.toml
2021-06-10 22:34:46 +02:00

35 lines
812 B
TOML

[package]
name = "flexiber"
version = "0.2.0"
authors = ["Nicolas Stalder <n@stalder.io>", "RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
edition = "2018"
description = "Encoding and decoding of BER-TLV as described in ISO 7816-4, without allocations."
repository = "https://github.com/nickray/flexiber"
categories = ["cryptography", "data-structures", "encoding", "no-std"]
keywords = ["crypto", "no_std", "serialization"]
readme = "README.md"
[dependencies]
delog = "0.1.0"
flexiber_derive = { version = "0.1", optional = true, path = "derive" }
[dependencies.heapless]
version = "0.7.0"
optional = true
[dev-dependencies]
hex-literal = "0.3.1"
[features]
alloc = []
derive = ["flexiber_derive"]
std = ["alloc"]
log-all = []
log-none = []
log-info = []
log-debug = []
log-warn = []
log-error = []