-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
18 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,23 @@ | ||
[package] | ||
name = "app" | ||
name = "solo-pc" | ||
version = "0.1.0" | ||
authors = ["Nicolas Stalder <[email protected]>", "Conor Patrick <[email protected]>"] | ||
edition = "2018" | ||
|
||
[lib] | ||
name = "app" | ||
|
||
[[bin]] | ||
name = "pc" | ||
path = "src/app_pc.rs" | ||
|
||
[dependencies] | ||
chacha20 = { version = "0.6.0", features = ["rng"] } | ||
delog = "0.1.0-alpha.3" | ||
heapless = "0.5.5" | ||
nb = "1" | ||
embedded-hal = { version = "0.2", features = ["unproven"] } | ||
generic-array = "0.14.3" | ||
interchange = "0.1.0" | ||
trussed = { git = "https://github.com/trussed-dev/trussed", branch = "main", features = ["clients-3"] } | ||
|
||
# components | ||
c-stubs = { path = "../../components/c-stubs" } | ||
trussed = { path = "../../components/trussed", features = ["clients-3"] } | ||
ctap-types = { path = "../../components/ctap-types" } | ||
fido-authenticator = { path = "../../components/fido-authenticator" } | ||
interchange = { path = "../../components/interchange" } | ||
piv-authenticator = { path = "../../components/piv-authenticator" } | ||
usbd-ccid = { path = "../../components/usbd-ccid" } | ||
usbd-ctaphid = { path = "../../components/usbd-ctaphid" } | ||
|
@@ -33,20 +27,18 @@ hid-dispatch = {path = "./../../components/hid-dispatch"} | |
applet-ndef = {path = "./../../components/applet-ndef"} | ||
applet-root = {path = "./../../components/applet-root"} | ||
applet-fido = {path = "./../../components/applet-fido"} | ||
delog = "0.1.0-alpha.3" | ||
|
||
# storage | ||
# littlefs2 = { git = "https://github.com/nickray/littlefs2", branch = "main" } | ||
littlefs2 = { git = "https://github.com/nickray/littlefs2", branch = "closures-instead-of-ub" } | ||
littlefs2 = "0.1.1" | ||
|
||
[features] | ||
default = [] | ||
|
||
# Use to auto-succeed every user presence check | ||
no-buttons= [] | ||
|
||
|
||
reconfig = [] | ||
# Reconfigure the NFC chip in any case | ||
reconfigure-nfc = [] | ||
|
||
log-all = [] | ||
log-none = [] | ||
|
@@ -57,10 +49,6 @@ log-error = [] | |
|
||
# patch dependencies like so to test local changes | ||
|
||
[patch.crates-io] | ||
heapless = { git = "https://github.com/nickray/heapless", branch = "bytebuf-0.5.6" } | ||
nisty = {git = "https://github.com/ycrypto/nisty", branch="main"} | ||
|
||
[profile.release] | ||
codegen-units = 1 | ||
opt-level = "z" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters