Files
solana/rpc/Cargo.toml
mergify[bot] 7427dafc36 feature: add new token program feature (backport #18780) (#18803)
* feature: add new token program feature (#18780)

* feature: add new token program feature

* Fixup test

* Update to spl-token v3.2.0

* Update Cargo.lock + fmt

* Update token program version in fetch-spl.sh

* Bump associated token program to 1.0.3

* Add aToken so

(cherry picked from commit 51f3b9aa7c)

# Conflicts:
#	Cargo.lock
#	account-decoder/Cargo.toml
#	accounts-cluster-bench/Cargo.toml
#	programs/bpf/Cargo.lock
#	rpc/Cargo.toml
#	sdk/src/feature_set.rs
#	tokens/Cargo.toml
#	transaction-status/Cargo.toml

* Fix merge issues

* Re-generate lock files

Co-authored-by: Jon Cinque <jon.cinque@gmail.com>
2021-07-21 15:05:45 +00:00

63 lines
2.4 KiB
TOML

[package]
name = "solana-rpc"
version = "1.7.7"
description = "Solana RPC"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
documentation = "https://docs.rs/solana-rpc"
edition = "2018"
[dependencies]
base64 = "0.12.3"
bincode = "1.3.1"
bs58 = "0.3.1"
crossbeam-channel = "0.4"
itertools = "0.9.0"
jsonrpc-core = "17.1.0"
jsonrpc-core-client = { version = "17.1.0", features = ["ipc", "ws"] }
jsonrpc-derive = "17.1.0"
jsonrpc-http-server = "17.1.0"
jsonrpc-pubsub = "17.1.0"
jsonrpc-ws-server = "17.1.0"
libc = "0.2.81"
log = "0.4.11"
regex = "1.3.9"
serde = "1.0.122"
serde_derive = "1.0.103"
serde_json = "1.0.56"
solana-account-decoder = { path = "../account-decoder", version = "=1.7.7" }
solana-client = { path = "../client", version = "=1.7.7" }
solana-faucet = { path = "../faucet", version = "=1.7.7" }
solana-gossip = { path = "../gossip", version = "=1.7.7" }
solana-ledger = { path = "../ledger", version = "=1.7.7" }
solana-measure = { path = "../measure", version = "=1.7.7" }
solana-metrics = { path = "../metrics", version = "=1.7.7" }
solana-perf = { path = "../perf", version = "=1.7.7" }
solana-poh = { path = "../poh", version = "=1.7.7" }
solana-runtime = { path = "../runtime", version = "=1.7.7" }
solana-sdk = { path = "../sdk", version = "=1.7.7" }
solana-storage-bigtable = { path = "../storage-bigtable", version = "=1.7.7" }
solana-transaction-status = { path = "../transaction-status", version = "=1.7.7" }
solana-version = { path = "../version", version = "=1.7.7" }
solana-vote-program = { path = "../programs/vote", version = "=1.7.7" }
spl-token-v2-0 = { package = "spl-token", version = "=3.2.0", features = ["no-entrypoint"] }
tokio = { version = "1", features = ["full"] }
tokio_02 = { version = "0.2", package = "tokio", features = ["full"] }
tokio-util = { version = "0.3", features = ["codec"] } # This crate needs to stay in sync with tokio_02, until that dependency can be removed
[dev-dependencies]
serial_test = "0.4.0"
solana-logger = { path = "../logger", version = "=1.7.7" }
solana-net-utils = { path = "../net-utils", version = "=1.7.7" }
solana-stake-program = { path = "../programs/stake", version = "=1.7.7" }
symlink = "0.1.0"
[lib]
crate-type = ["lib"]
name = "solana_rpc"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]