You've already forked apdu-dispatch
mirror of
https://github.com/trussed-dev/apdu-dispatch.git
synced 2026-03-11 16:36:07 -07:00
34 lines
647 B
TOML
34 lines
647 B
TOML
[package]
|
|
name = "apdu-dispatch"
|
|
version = "0.0.1"
|
|
authors = ["Conor Patrick <conor@solokeys.com>", "Nicolas Stalder <n@stalder.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0 OR MIT"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
delog = "0.1.0"
|
|
heapless = "0.7"
|
|
|
|
# Components
|
|
iso7816 = { git = "https://github.com/ycrypto/iso7816", branch = "main" }
|
|
interchange = "0.2.0"
|
|
|
|
|
|
[dev-dependencies]
|
|
# Testing
|
|
serial_test = { version = "*" }
|
|
|
|
[features]
|
|
default = []
|
|
std = ["delog/std"]
|
|
|
|
log-all = []
|
|
log-none = []
|
|
log-debug = []
|
|
log-info = []
|
|
log-trace = []
|
|
log-warn = []
|
|
log-error = []
|