Files
solana/core/Cargo.toml

113 lines
3.7 KiB
TOML
Raw Permalink Normal View History

[package]
2019-08-21 10:23:33 -07:00
name = "solana-core"
description = "Blockchain, Rebuilt for Scale"
2020-10-02 08:25:42 -07:00
version = "1.2.33"
documentation = "https://docs.rs/solana"
homepage = "https://solana.com/"
2019-03-12 12:44:51 -07:00
readme = "../README.md"
repository = "https://github.com/solana-labs/solana"
authors = ["Solana Maintainers <maintainers@solana.com>"]
license = "Apache-2.0"
edition = "2018"
[badges]
codecov = { repository = "solana-labs/solana", branch = "master", service = "github" }
[dependencies]
Update spl-token to v2.0 (bp #11884) (#11896) * Update spl-token to v2.0 (#11884) * Update account-decoder to spl-token v2.0 * Update transaction-status to spl-token v2.0 * Update rpc to spl-token v2.0 * Update getTokenSupply to pull from Mint directly * Fixup to spl-token v2.0.1 (cherry picked from commit 76be36c9ceca88674b0401fd3c3242d233008a56) # Conflicts: # Cargo.lock # account-decoder/Cargo.toml # core/Cargo.toml # core/src/rpc.rs # transaction-status/Cargo.toml * Fix non-Cargo.lock conflicts * Limited Deserialize isn't limiting anything (#10952) * Add failing test * Use deserialize_from to enable limit * Cargo.lock * chore(deps): bump bincode from 1.2.1 to 1.3.1 (#10867) * chore(deps): bump bincode from 1.2.1 to 1.3.1 Bumps [bincode](https://github.com/servo/bincode) from 1.2.1 to 1.3.1. - [Release notes](https://github.com/servo/bincode/releases) - [Commits](https://github.com/servo/bincode/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * [auto-commit] Update all Cargo lock files * Switch from deprecated method * Add options to maintain behavior with bincode::options() Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com> Co-authored-by: Tyera Eulberg <tyera@solana.com> Co-authored-by: Tyera Eulberg <tyera@solana.com> Co-authored-by: Tyera Eulberg <teulberg@gmail.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com>
2020-08-29 01:27:10 +00:00
bincode = "1.3.1"
bv = { version = "0.11.1", features = ["serde"] }
bs58 = "0.3.1"
byteorder = "1.3.4"
chrono = { version = "0.4.11", features = ["serde"] }
core_affinity = "0.5.10"
crossbeam-channel = "0.4"
2020-07-23 17:23:51 -06:00
ed25519-dalek = "=1.0.0-pre.4"
fs_extra = "1.1.0"
flate2 = "1.0"
indexmap = "1.3"
itertools = "0.9.0"
jsonrpc-core = "15.0.0"
jsonrpc-core-client = { version = "15.0.0", features = ["ws"] }
jsonrpc-derive = "15.0.0"
jsonrpc-http-server = "15.0.0"
jsonrpc-pubsub = "15.0.0"
jsonrpc-ws-server = "15.0.0"
log = "0.4.8"
num_cpus = "1.13.0"
num-traits = "0.2"
2020-04-27 09:33:33 -07:00
rand = "0.7.0"
rand_chacha = "0.2.2"
rayon = "1.4.0"
regex = "1.3.7"
serde = "1.0.110"
serde_derive = "1.0.103"
serde_json = "1.0.53"
2020-10-02 08:25:42 -07:00
solana-account-decoder = { path = "../account-decoder", version = "1.2.33" }
solana-bpf-loader-program = { path = "../programs/bpf_loader", version = "1.2.33" }
solana-budget-program = { path = "../programs/budget", version = "1.2.33" }
solana-clap-utils = { path = "../clap-utils", version = "1.2.33" }
solana-client = { path = "../client", version = "1.2.33" }
solana-faucet = { path = "../faucet", version = "1.2.33" }
solana-genesis-programs = { path = "../genesis-programs", version = "1.2.33" }
solana-ledger = { path = "../ledger", version = "1.2.33" }
solana-logger = { path = "../logger", version = "1.2.33" }
solana-merkle-tree = { path = "../merkle-tree", version = "1.2.33" }
solana-metrics = { path = "../metrics", version = "1.2.33" }
solana-measure = { path = "../measure", version = "1.2.33" }
solana-net-utils = { path = "../net-utils", version = "1.2.33" }
solana-perf = { path = "../perf", version = "1.2.33" }
solana-runtime = { path = "../runtime", version = "1.2.33" }
solana-sdk = { path = "../sdk", version = "1.2.33" }
solana-stake-program = { path = "../programs/stake", version = "1.2.33" }
solana-storage-bigtable = { path = "../storage-bigtable", version = "1.2.33" }
solana-streamer = { path = "../streamer", version = "1.2.33" }
solana-sys-tuner = { path = "../sys-tuner", version = "1.2.33" }
solana-transaction-status = { path = "../transaction-status", version = "1.2.33" }
solana-version = { path = "../version", version = "1.2.33" }
solana-vote-program = { path = "../programs/vote", version = "1.2.33" }
solana-vote-signer = { path = "../vote-signer", version = "1.2.33" }
solana-rayon-threadlimit = { path = "../rayon-threadlimit", version = "1.2.33" }
spl-token-v2-0 = { package = "spl-token", version = "2.0.6", features = ["skip-no-mangle"] }
tempfile = "3.1.0"
thiserror = "1.0"
tokio = { version = "0.2.22", features = ["full"] }
tokio_01 = { version = "0.1", package = "tokio" }
tokio_fs_01 = { version = "0.1", package = "tokio-fs" }
tokio_io_01 = { version = "0.1", package = "tokio-io" }
trees = "0.2.1"
[dev-dependencies]
base64 = "0.12.3"
matches = "0.1.6"
reqwest = { version = "0.10.4", default-features = false, features = ["blocking", "rustls-tls", "json"] }
serial_test = "0.4.0"
serial_test_derive = "0.4.0"
2019-12-18 18:31:04 -05:00
systemstat = "0.1.5"
[[bench]]
name = "banking_stage"
[[bench]]
name = "blockstore"
[[bench]]
name = "crds_gossip_pull"
[[bench]]
name = "gen_keys"
[[bench]]
name = "sigverify_stage"
[[bench]]
name = "poh"
2019-10-06 12:56:17 -07:00
[[bench]]
name = "retransmit_stage"
[[bench]]
name = "cluster_info"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]