2018-11-30 15:07:08 -08:00
|
|
|
[package]
|
2020-06-13 14:41:05 -07:00
|
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
2019-02-01 09:06:28 -08:00
|
|
|
edition = "2018"
|
2018-11-30 15:07:08 -08:00
|
|
|
name = "solana-vote-signer"
|
|
|
|
description = "Solana Vote Signing Service"
|
2020-05-28 15:01:10 -07:00
|
|
|
version = "1.3.0"
|
2018-11-30 15:07:08 -08:00
|
|
|
repository = "https://github.com/solana-labs/solana"
|
|
|
|
license = "Apache-2.0"
|
2018-12-13 21:14:37 -08:00
|
|
|
homepage = "https://solana.com/"
|
2018-11-30 15:07:08 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2019-04-06 06:04:18 -07:00
|
|
|
clap = "2.33"
|
2020-06-03 03:54:19 -07:00
|
|
|
jsonrpc-core = "14.2.0"
|
2020-06-03 10:33:55 -07:00
|
|
|
jsonrpc-derive = "14.2.1"
|
2020-06-04 02:21:53 -07:00
|
|
|
jsonrpc-http-server = "14.2.0"
|
2019-08-01 14:31:18 -07:00
|
|
|
log = "0.4.8"
|
2020-06-09 12:53:15 -07:00
|
|
|
serde_json = "1.0.54"
|
2020-05-28 15:01:10 -07:00
|
|
|
solana-clap-utils = { path = "../clap-utils", version = "1.3.0" }
|
|
|
|
solana-metrics = { path = "../metrics", version = "1.3.0" }
|
|
|
|
solana-sdk = { path = "../sdk", version = "1.3.0" }
|
|
|
|
solana-version = { path = "../version", version = "1.3.0" }
|
2018-11-30 15:07:08 -08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["lib"]
|
2019-05-29 18:30:49 -07:00
|
|
|
name = "solana_vote_signer"
|
2018-11-30 15:07:08 -08:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "solana-vote-signer"
|
|
|
|
path = "src/bin/main.rs"
|
2020-04-16 18:18:28 -07:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|