forked from trussed-dev/piv-authenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (34 loc) · 1.23 KB
/
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
36
37
38
39
[package]
name = "piv-authenticator"
version = "0.0.0-unreleased"
authors = ["Nicolas Stalder <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/solokeys/piv-authenticator"
documentation = "https://docs.rs/piv-authenticator"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apdu-dispatch = { git = "https://github.com/solokeys/apdu-dispatch", branch = "main", optional = true }
delog = "0.1.0"
# flexiber = { path = "/home/nicolas/projects/flexiber", features = ["derive", "heapless"] }
flexiber = { git = "https://github.com/nickray/flexiber", branch = "main", features = ["derive", "heapless"] }
heapless = "0.7"
hex-literal = "0.3"
interchange = "0.2.0"
iso7816 = { git = "https://github.com/ycrypto/iso7816", branch = "main" }
serde = { version = "1", default-features = false }
trussed = { git = "https://github.com/trussed-dev/trussed", branch = "main" }
# trussed = { path = "../../../trussed" }
untrusted = "0.7"
[dev-dependencies]
littlefs2 = "0.3.1"
rand_core = { version = "0.6", features = ["getrandom"] }
[features]
default = []
strict-pin = []
log-all = []
log-none = []
log-info = []
log-debug = []
log-warn = []
log-error = []