forked from trussed-dev/flexiber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 812 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "flexiber"
version = "0.1.1"
authors = ["Nicolas Stalder <[email protected]>", "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 = []