forked from solana-labs/solana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (35 loc) · 1.07 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
[package]
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
edition = "2018"
name = "solana-remote-wallet"
description = "Blockchain, Rebuilt for Scale"
version = "1.8.0"
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
documentation = "https://docs.rs/solana-remote-wallet"
[dependencies]
base32 = "0.4.0"
console = "0.14.1"
dialoguer = "0.8.0"
hidapi = { version = "1.2.6", default-features = false }
log = "0.4.14"
num-derive = { version = "0.3" }
num-traits = { version = "0.2" }
parking_lot = "0.11"
qstring = "0.7.2"
semver = "1.0"
solana-sdk = { path = "../sdk", version = "=1.8.0" }
thiserror = "1.0"
uriparse = "0.6.3"
[features]
default = ["linux-static-hidraw"]
linux-static-libusb = ["hidapi/linux-static-libusb"]
linux-static-hidraw = ["hidapi/linux-static-hidraw"]
linux-shared-libusb = ["hidapi/linux-shared-libusb"]
linux-shared-hidraw = ["hidapi/linux-shared-hidraw"]
[[bin]]
name = "solana-ledger-udev"
path = "src/bin/ledger-udev.rs"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]