[package]
edition = "2021"
rust-version = "1.81"
name = "scll-core"
version = "1.0.0"
authors = ["Ievgen K. <ikh771@yahoo.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core of the Simple Card Lifecycle Library: transport/backend traits, GP commands, SCP02/03 state machines, CAP parser. No concrete transport or crypto (PDD §3.1)."
readme = false
keywords = [
"globalplatform",
"javacard",
"scp03",
"scp02",
"smartcard",
]
categories = [
"cryptography",
"hardware-support",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ievkh/scll-rust"
[lib]
name = "scll_core"
path = "src/lib.rs"
[[test]]
name = "replay_workflows"
path = "tests/replay_workflows.rs"
[dependencies.heapless]
version = "0.8"
default-features = false
[dependencies.miniz_oxide]
version = "0.8.4"
default-features = false
[dependencies.thiserror]
version = "2"
default-features = false
[dependencies.zeroize]
version = ">=1, <1.9"
default-features = false
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"