forked from shimunn/ctap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (32 loc) · 816 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
35
[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 <[email protected]>", "shimun <[email protected]>"]
edition = "2021"
readme = "README.md"
[dependencies]
rand = "0.8"
failure = "0.1"
failure_derive = "0.1"
num-traits = "0.2"
num-derive = "0.4"
byteorder = "1"
cbor-codec = "0.7"
ring = "0.17"
untrusted = "0.9"
rust-crypto = "0.2"
derive_builder = "0.20.0"
crossbeam = { version = "0.8.4", optional = true }
[dev-dependencies]
crossbeam = "0.8.4"
hex = "0.4.0"
[build-dependencies]
csv = "1.1.3"
serde = "1.0.106"
serde_derive = "1.0.106"
[features]
request_multiple = ["crossbeam"]