* Add storage mining pool * Set gossip port * Add create-storage-mining-pool-account wallet command * Add claim-storage-reward wallet command * Create storage account upfront * Add storage program to genesis * Use STORAGE_ACCOUNT_SPACE * Fix tests * Add wallet commands to create validator/replicator storage accounts * Add create_validator_storage_account() * Storage stage no longer implicitly creates a storage account
26 lines
659 B
TOML
26 lines
659 B
TOML
[package]
|
|
name = "solana-storage-api"
|
|
version = "0.15.0"
|
|
description = "Solana Storage 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.91"
|
|
serde_derive = "1.0.91"
|
|
solana-logger = { path = "../../logger", version = "0.15.0" }
|
|
solana-sdk = { path = "../../sdk", version = "0.15.0" }
|
|
assert_matches = "1.3.0"
|
|
|
|
[dev-dependencies]
|
|
solana-runtime = { path = "../../runtime", version = "0.15.0" }
|
|
|
|
[lib]
|
|
name = "solana_storage_api"
|
|
crate-type = ["lib"]
|