39 lines
1.0 KiB
TOML
39 lines
1.0 KiB
TOML
[package]
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
|
edition = "2018"
|
|
name = "solana-remote-wallet"
|
|
description = "Blockchain, Rebuilt for Scale"
|
|
version = "1.7.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.11.3"
|
|
dialoguer = "0.6.2"
|
|
hidapi = { version = "1.2.5", default-features = false }
|
|
log = "0.4.11"
|
|
num-derive = { version = "0.3" }
|
|
num-traits = { version = "0.2" }
|
|
parking_lot = "0.10"
|
|
semver = "0.9"
|
|
solana-sdk = { path = "../sdk", version = "=1.7.0" }
|
|
thiserror = "1.0"
|
|
url = "2.1.1"
|
|
|
|
[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"]
|