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-12-20 18:45:42 -08:00
|
|
|
version = "0.23.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-09-19 09:39:37 -07:00
|
|
|
bs58 = "0.3.0"
|
2019-04-06 06:04:18 -07:00
|
|
|
clap = "2.33"
|
2019-11-28 09:59:31 -08:00
|
|
|
jsonrpc-core = "14.0.5"
|
2019-11-29 13:15:02 -08:00
|
|
|
jsonrpc-derive = "14.0.5"
|
2019-12-02 08:55:40 -08:00
|
|
|
jsonrpc-http-server = "14.0.5"
|
2019-08-01 14:31:18 -07:00
|
|
|
log = "0.4.8"
|
2019-12-15 20:37:43 -08:00
|
|
|
serde = "1.0.104"
|
2019-12-07 11:55:53 -08:00
|
|
|
serde_json = "1.0.44"
|
2019-12-20 18:45:42 -08:00
|
|
|
solana-clap-utils = { path = "../clap-utils", version = "0.23.0" }
|
|
|
|
solana-metrics = { path = "../metrics", version = "0.23.0" }
|
|
|
|
solana-sdk = { path = "../sdk", version = "0.23.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"
|