-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (38 loc) · 1.16 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
[package]
name = "app-vanadium"
version = "0.0.1"
authors = ["Salvatore Ingala"]
edition = "2021"
[dependencies]
common = { path = "../common", features=["device_sdk"] }
include_gif = "1.2.0"
serde = {version="1.0.192", default-features = false, features = ["derive"]}
serde-json-core = { git = "https://github.com/rust-embedded-community/serde-json-core"}
hex = { version = "0.4.3", default-features = false, features = ["serde", "alloc"] }
numtoa = "0.2.4"
postcard = { version = "1.0.8", features = ["alloc"] }
ledger_secure_sdk_sys = "1.6.1"
zeroize = "1.8.1"
ledger_device_sdk = "1.19.1"
[profile.release]
opt-level = 3
lto = true
[features]
default = []
pending_review_screen = []
[package.metadata.ledger]
curve = ["secp256k1"]
flags = "0"
path = ["44'/1'"]
name = "Vanadium"
[package.metadata.ledger.nanox]
icon = "vanadium_14x14.gif"
[package.metadata.ledger.nanosplus]
icon = "vanadium_14x14.gif"
[package.metadata.ledger.stax]
icon = "vanadium_32x32.gif"
[package.metadata.ledger.flex]
icon = "vanadium_40x40.gif"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(target_os, values("stax", "flex", "nanos", "nanox", "nanosplus"))'] }
[workspace]