-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (37 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
47 lines (37 loc) · 1.15 KB
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
[package]
name = "stellar"
version = "6.0.3"
authors = ["overcat"]
edition = "2021"
[dependencies]
escape-bytes = { version = "0.1.1", default-features = false }
hex = { version = "0.4.3", default-features = false, features = ["alloc"] }
ledger_device_sdk = { version = "1.34.0" }
stellarlib = { path = "./stellarlib" }
stellar-strkey = { version = "0.0.16", default-features = false }
swap-utils = { path = "./swap-utils" }
[profile.release]
opt-level = 'z'
lto = true
[features]
default = ["ledger_device_sdk/nano_nbgl"]
debug = ["ledger_device_sdk/debug", "ledger_device_sdk/log_debug"]
[package.metadata.ledger]
curve = ["ed25519"]
flags = "0xa00"
path = ["44'/148'"]
name = "Stellar"
[package.metadata.ledger.nanox]
icon = "icons/stellar_14x14.gif"
[package.metadata.ledger.nanosplus]
icon = "icons/stellar_14x14.gif"
[package.metadata.ledger.stax]
icon = "icons/stellar_32x32.gif"
[package.metadata.ledger.flex]
icon = "icons/stellar_40x40.gif"
[package.metadata.ledger.apex_p]
icon = "icons/stellar_32x32.png"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(target_os, values("apex_p", "stax", "flex", "nanos", "nanox", "nanosplus"))',
] }