2020-02-07 10:26:56 -08:00
|
|
|
[package]
|
2020-06-13 14:41:05 -07:00
|
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
2020-02-07 10:26:56 -08:00
|
|
|
edition = "2018"
|
|
|
|
name = "solana-remote-wallet"
|
|
|
|
description = "Blockchain, Rebuilt for Scale"
|
2021-03-12 23:31:17 -08:00
|
|
|
version = "1.7.0"
|
2020-02-07 10:26:56 -08:00
|
|
|
repository = "https://github.com/solana-labs/solana"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
homepage = "https://solana.com/"
|
2021-03-10 12:46:17 -08:00
|
|
|
documentation = "https://docs.rs/solana-remote-wallet"
|
2020-02-07 10:26:56 -08:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
base32 = "0.4.0"
|
2020-05-30 06:47:41 -07:00
|
|
|
console = "0.11.3"
|
2020-05-11 08:21:16 -07:00
|
|
|
dialoguer = "0.6.2"
|
2021-03-03 01:02:06 -08:00
|
|
|
hidapi = { version = "1.2.5", default-features = false }
|
2020-12-12 20:48:23 -08:00
|
|
|
log = "0.4.11"
|
2020-05-14 21:52:11 -07:00
|
|
|
num-derive = { version = "0.3" }
|
|
|
|
num-traits = { version = "0.2" }
|
2020-02-13 13:24:37 -08:00
|
|
|
parking_lot = "0.10"
|
2021-04-20 15:35:28 -07:00
|
|
|
qstring = "0.7.2"
|
2020-02-07 10:26:56 -08:00
|
|
|
semver = "0.9"
|
2021-03-15 22:16:08 -07:00
|
|
|
solana-sdk = { path = "../sdk", version = "=1.7.0" }
|
2020-02-07 10:26:56 -08:00
|
|
|
thiserror = "1.0"
|
2021-04-20 15:35:28 -07:00
|
|
|
uriparse = "0.6.3"
|
2020-02-07 10:26:56 -08:00
|
|
|
|
|
|
|
[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"
|
2020-04-16 18:18:28 -07:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|