36 lines
815 B
TOML
36 lines
815 B
TOML
[package]
|
|
name = "ctap_hmac"
|
|
description = "A Rust implementation of the FIDO2 CTAP protocol, including the HMAC extension"
|
|
version = "0.4.5"
|
|
license = "Apache-2.0/MIT"
|
|
homepage = "https://github.com/shimunn/ctap"
|
|
repository = "https://github.com/shimunn/ctap"
|
|
authors = ["Arda Xi <arda@ardaxi.com>", "shimun <shimun@shimun.net>"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
rand = "0.6"
|
|
failure = "0.1"
|
|
failure_derive = "0.1"
|
|
num-traits = "0.2"
|
|
num-derive = "0.2"
|
|
byteorder = "1"
|
|
cbor-codec = "0.7"
|
|
ring = "0.13"
|
|
untrusted = "0.6"
|
|
rust-crypto = "0.2"
|
|
derive_builder = "0.9.0"
|
|
crossbeam = { version = "0.7.3", optional = true }
|
|
[dev-dependencies]
|
|
crossbeam = "0.7.3"
|
|
hex = "0.4.0"
|
|
[build-dependencies]
|
|
csv = "1.1.3"
|
|
serde = "1.0.106"
|
|
serde_derive = "1.0.106"
|
|
|
|
|
|
[features]
|
|
request_multiple = ["crossbeam"]
|