36 lines
997 B
TOML
36 lines
997 B
TOML
[package]
|
|
name = "ctap2"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Fabian Kaczmarczyck <kaczmarczyck@google.com>",
|
|
"Guillaume Endignoux <guillaumee@google.com>",
|
|
"Jean-Michel Picod <jmichel@google.com>",
|
|
]
|
|
license = "Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
libtock = { path = "third_party/libtock-rs" }
|
|
cbor = { path = "libraries/cbor" }
|
|
crypto = { path = "libraries/crypto" }
|
|
byteorder = { version = "1", default-features = false }
|
|
arrayref = "0.3.6"
|
|
subtle = { version = "2.2", default-features = false, features = ["nightly"] }
|
|
|
|
[features]
|
|
std = ["cbor/std", "crypto/std", "crypto/derive_debug"]
|
|
debug_ctap = ["crypto/derive_debug"]
|
|
with_ctap1 = ["crypto/with_ctap1"]
|
|
panic_console = ["libtock/panic_console"]
|
|
|
|
[dev-dependencies]
|
|
elf2tab = "0.4.0"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
lto = true # Link Time Optimization usually reduces size of binaries and static libraries
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = true # Link Time Optimization usually reduces size of binaries and static libraries
|