forked from solokeys/admin-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (42 loc) · 1.73 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
40
41
42
43
44
45
46
47
48
49
[package]
name = "admin-app"
version = "0.1.0"
authors = ["Conor Patrick <[email protected]>", "Nicolas Stalder <[email protected]>"]
repository = "https://github.com/solokeys/admin-app"
edition = "2021"
license = "Apache-2.0 OR MIT"
description = "Administrative Trussed app for SoloKeys Solo 2 security keys"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apdu-app = "0.1"
cbor-smol = { version = "0.5.0", features = ["heapless-v0-7", "heapless-bytes-v0-3"] }
ctaphid-dispatch = "0.1"
delog = "0.1"
iso7816 = "0.1"
littlefs2 = { version = "0.5", optional = true }
littlefs2-core = { version = "0.1", features = ["heapless-bytes03"] }
serde = { version = "1.0.180", default-features = false }
strum_macros = "0.25.2"
trussed = "0.1"
embedded-hal = { version = "0.2.7", optional = true }
hex-literal = "0.4.1"
rand_chacha = { version = "0.3.1", optional = true, default-features = false }
trussed-manage = { version = "0.1.0" }
trussed-se050-manage = { version = "0.1.0", optional = true }
[features]
default = []
se050 = ["trussed-se050-manage"]
factory-reset = []
log-all = []
log-none = []
log-info = []
log-debug = []
log-warn = []
log-error = []
# Utils to test migration
migration-tests = ["dep:littlefs2"]
[patch.crates-io]
ctaphid-dispatch = { git = "https://github.com/trussed-dev/ctaphid-dispatch.git", rev = "57cb3317878a8593847595319aa03ef17c29ec5b" }
trussed = { git = "https://github.com/trussed-dev/trussed.git", rev = "046478b7a4f6e2315acf9112d98308379c2e3eee" }
trussed-manage = { git = "https://github.com/trussed-dev/trussed-staging.git", tag = "manage-v0.1.0" }
trussed-se050-manage = { git = "https://github.com/Nitrokey/trussed-se050-backend.git", tag = "se050-manage-v0.1.0" }