solana/core/Cargo.toml

110 lines
3.6 KiB
TOML
Raw Normal View History

[package]
2019-08-21 10:23:33 -07:00
name = "solana-core"
description = "Blockchain, Rebuilt for Scale"
2023-01-31 15:48:33 -08:00
version = "1.16.0"
homepage = "https://solanalabs.com/"
documentation = "https://docs.rs/solana-core"
2019-03-12 12:44:51 -07:00
readme = "../README.md"
repository = "https://github.com/solana-labs/solana"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
license = "Apache-2.0"
edition = "2021"
[badges]
codecov = { repository = "solana-labs/solana", branch = "master", service = "github" }
[dependencies]
ahash = "0.7.6"
base64 = "0.13.0"
bincode = "1.3.3"
bs58 = "0.4.0"
chrono = { version = "0.4.22", features = ["serde"] }
crossbeam-channel = "0.5"
dashmap = { version = "4.0.2", features = ["rayon", "raw-api"] }
eager = "0.1.0"
etcd-client = { version = "0.8.1", features = ["tls"] }
fs_extra = "1.2.0"
histogram = "0.6.9"
itertools = "0.10.5"
lazy_static = "1.4.0"
log = "0.4.17"
lru = "0.7.7"
min-max-heap = "1.3.0"
num_enum = "0.5.7"
rand = "0.7.0"
rand_chacha = "0.2.2"
rayon = "1.5.3"
Add fully-reproducible online tracer for banking (#29196) * Add fully-reproducible online tracer for banking * Don't use eprintln!()... * Update programs/sbf/Cargo.lock... * Remove meaningless assert_eq * Group test-only code under aptly named mod * Remove needless overflow handling in receive_until * Delay stat aggregation as it's possible now * Use Cow to avoid needless heap allocs * Properly consume metrics action as soon as hold * Trace UnprocessedTransactionStorage::len() instead * Loosen joining api over type safety for replaystage * Introce hash event to override these when simulating * Use serde_with/serde_as instead of hacky workaround * Update another Cargo.lock... * Add detailed comment for Packet::buffer serialize * Rename sender_overhead_minimized_receiver_loop() * Use type interference for TraceError * Another minor rename * Retire now useless ForEach to simplify code * Use type alias as much as possible * Properly translate and propagate tracing errors * Clarify --enable-banking-trace with better naming * Consider unclean (signal-based) node restarts.. * Tweak logging and cli * Remove Bank events as it's not needed anymore * Make tpu own banking tracer thread * Reduce diff a bit.. * Use latest serde_with * Finally use the published rolling-file crate * Make test code change more consistent * Revive dead and non-terminating test code path... * Dispose batches early now that possible * Split off thread handle very early at ::new() * Tweak message for TooSmallDirByteLimitl * Remove too much of indirection * Remove needless pub from ::channel() * Clarify test comments * Avoid needless event creation if tracer is disabled * Write tests around file rotation and spill-over * Remove unneeded PathBuf::clone()s... * Introduce inner struct instead of tuple... * Remove unused enum BankStatus... * Avoid .unwrap() for the case of disabled tracer...
2023-01-25 04:54:38 -08:00
rolling-file = "0.2.0"
serde = "1.0.152"
serde_derive = "1.0.103"
2023-01-31 15:48:33 -08:00
solana-address-lookup-table-program = { path = "../programs/address-lookup-table", version = "=1.16.0" }
solana-bloom = { path = "../bloom", version = "=1.16.0" }
solana-client = { path = "../client", version = "=1.16.0" }
solana-entry = { path = "../entry", version = "=1.16.0" }
solana-frozen-abi = { path = "../frozen-abi", version = "=1.16.0" }
solana-frozen-abi-macro = { path = "../frozen-abi/macro", version = "=1.16.0" }
solana-geyser-plugin-manager = { path = "../geyser-plugin-manager", version = "=1.16.0" }
solana-gossip = { path = "../gossip", version = "=1.16.0" }
solana-ledger = { path = "../ledger", version = "=1.16.0" }
solana-measure = { path = "../measure", version = "=1.16.0" }
solana-metrics = { path = "../metrics", version = "=1.16.0" }
solana-net-utils = { path = "../net-utils", version = "=1.16.0" }
solana-perf = { path = "../perf", version = "=1.16.0" }
solana-poh = { path = "../poh", version = "=1.16.0" }
solana-program-runtime = { path = "../program-runtime", version = "=1.16.0" }
solana-rayon-threadlimit = { path = "../rayon-threadlimit", version = "=1.16.0" }
solana-rpc = { path = "../rpc", version = "=1.16.0" }
solana-rpc-client-api = { path = "../rpc-client-api", version = "=1.16.0" }
solana-runtime = { path = "../runtime", version = "=1.16.0" }
solana-sdk = { path = "../sdk", version = "=1.16.0" }
solana-send-transaction-service = { path = "../send-transaction-service", version = "=1.16.0" }
solana-streamer = { path = "../streamer", version = "=1.16.0" }
solana-tpu-client = { path = "../tpu-client", version = "=1.16.0", default-features = false }
solana-transaction-status = { path = "../transaction-status", version = "=1.16.0" }
solana-version = { path = "../version", version = "=1.16.0" }
solana-vote-program = { path = "../programs/vote", version = "=1.16.0" }
sys-info = "0.9.1"
tempfile = "3.3.0"
thiserror = "1.0"
tokio = { version = "~1.14.1", features = ["full"] }
trees = "0.4.2"
[dev-dependencies]
matches = "0.1.9"
raptorq = "1.7.0"
serde_json = "1.0.83"
serial_test = "0.9.0"
2023-01-31 15:48:33 -08:00
solana-logger = { path = "../logger", version = "=1.16.0" }
solana-program-runtime = { path = "../program-runtime", version = "=1.16.0" }
solana-stake-program = { path = "../programs/stake", version = "=1.16.0" }
static_assertions = "1.1.0"
systemstat = "0.2.0"
test-case = "2.2.2"
[target."cfg(unix)".dependencies]
sysctl = "0.4.4"
[build-dependencies]
rustc_version = "0.4"
[[bench]]
name = "banking_stage"
[[bench]]
name = "cluster_info"
[[bench]]
name = "gen_keys"
[[bench]]
name = "sigverify_stage"
2019-10-06 12:56:17 -07:00
[[bench]]
name = "retransmit_stage"
[[bench]]
name = "unprocessed_packet_batches"
[package.metadata.docs.rs]
2021-09-17 13:16:14 -07:00
targets = ["x86_64-unknown-linux-gnu"]