mirror of
https://github.com/solokeys/admin-app.git
synced 2026-06-20 13:16:17 -07:00
51 lines
1.8 KiB
TOML
51 lines
1.8 KiB
TOML
[package]
|
|
name = "admin-app"
|
|
version = "0.1.0"
|
|
authors = ["Conor Patrick <conor@solokeys.com>", "Nicolas Stalder <nicolas@solokeys.com>"]
|
|
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-dispatch = "0.1"
|
|
cbor-smol = "0.4.0"
|
|
ctaphid-dispatch = "0.1"
|
|
delog = "0.1"
|
|
iso7816 = "0.1"
|
|
littlefs2 = "0.4"
|
|
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 = []
|
|
|
|
[patch.crates-io]
|
|
apdu-dispatch = { git = "https://github.com/trussed-dev/apdu-dispatch.git", rev = "915fc237103fcecc29d0f0b73391f19abf6576de" }
|
|
ctaphid-dispatch = { git = "https://github.com/trussed-dev/ctaphid-dispatch.git", rev = "57cb3317878a8593847595319aa03ef17c29ec5b" }
|
|
littlefs2 = { git = "https://github.com/trussed-dev/littlefs2.git", rev = "ebd27e49ca321089d01d8c9b169c4aeb58ceeeca" }
|
|
trussed = { git = "https://github.com/Nitrokey/trussed.git", tag = "v0.1.0-nitrokey.18" }
|
|
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" }
|