2018-11-30 15:07:08 -08:00
|
|
|
[package]
|
2019-02-01 09:06:28 -08:00
|
|
|
authors = ["Solana Maintainers <maintainers@solana.com>"]
|
|
|
|
edition = "2018"
|
2018-11-30 15:07:08 -08:00
|
|
|
name = "solana-vote-signer"
|
|
|
|
description = "Solana Vote Signing Service"
|
2019-03-11 16:21:19 -07:00
|
|
|
version = "0.13.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]
|
|
|
|
bs58 = "0.2.0"
|
|
|
|
clap = "2.31"
|
|
|
|
log = "0.4.2"
|
2019-02-13 09:44:22 -08:00
|
|
|
jsonrpc-core = "10.1.0"
|
|
|
|
jsonrpc-derive = "10.1.0"
|
|
|
|
jsonrpc-http-server = "10.1.0"
|
2019-03-01 09:51:42 -08:00
|
|
|
serde = "1.0.89"
|
2019-02-28 01:15:19 -08:00
|
|
|
serde_json = "1.0.39"
|
2019-03-11 16:21:19 -07:00
|
|
|
solana-sdk = { path = "../sdk", version = "0.13.0" }
|
|
|
|
solana-metrics = { path = "../metrics", version = "0.13.0" }
|
2018-11-30 15:07:08 -08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "solana_vote_signer"
|
|
|
|
crate-type = ["lib"]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "solana-vote-signer"
|
|
|
|
path = "src/bin/main.rs"
|