* Update config program to accommodate multiple signers (#4946) * Update config program to accommodate multiple signers * Update install CLI * Remove account_type u32; add handling for unsigned keys in list * ConfigKeys doc * Make config_api more robust (#4980) * Make config_api more robust * Add test and update store instruction * Improve signature checks in config_api (#5001) automerge * Add validator-info CLI (#4970) * Add validator-info CLI * Add GetProgramAccounts method to solana-client * Update validator-info args, and add get subcommand * Update ValidatorInfo lengths * Add account filter for get --all * Update testnet participation doc to reflect validator-info * Flesh out tests * Review comments
25 lines
621 B
TOML
25 lines
621 B
TOML
[package]
|
|
name = "solana-config-api"
|
|
version = "0.16.3"
|
|
description = "config program API"
|
|
authors = ["Solana Maintainers <maintainers@solana.com>"]
|
|
repository = "https://github.com/solana-labs/solana"
|
|
license = "Apache-2.0"
|
|
homepage = "https://solana.com/"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bincode = "1.1.4"
|
|
log = "0.4.2"
|
|
serde = "1.0.92"
|
|
serde_derive = "1.0.92"
|
|
solana-logger = { path = "../../logger", version = "0.16.3" }
|
|
solana-sdk = { path = "../../sdk", version = "0.16.3" }
|
|
|
|
[dev-dependencies]
|
|
solana-runtime = { path = "../../runtime", version = "0.16.3" }
|
|
|
|
[lib]
|
|
crate-type = ["lib"]
|
|
name = "solana_config_api"
|