2019-02-07 08:44:42 -08:00
|
|
|
[package]
|
|
|
|
name = "solana-runtime"
|
|
|
|
description = "Solana runtime"
|
2021-03-10 12:46:17 -08:00
|
|
|
documentation = "https://docs.rs/solana-runtime"
|
2023-02-23 06:01:54 -08:00
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
2019-02-07 08:44:42 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
arrayref = { workspace = true }
|
2023-08-14 22:12:05 -07:00
|
|
|
base64 = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
bincode = { workspace = true }
|
|
|
|
blake3 = { workspace = true }
|
|
|
|
bv = { workspace = true, features = ["serde"] }
|
|
|
|
bytemuck = { workspace = true }
|
|
|
|
byteorder = { workspace = true }
|
|
|
|
bzip2 = { workspace = true }
|
|
|
|
crossbeam-channel = { workspace = true }
|
|
|
|
dashmap = { workspace = true, features = ["rayon", "raw-api"] }
|
|
|
|
dir-diff = { workspace = true }
|
|
|
|
flate2 = { workspace = true }
|
|
|
|
fnv = { workspace = true }
|
2023-06-26 10:14:27 -07:00
|
|
|
fs-err = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
im = { workspace = true, features = ["rayon", "serde"] }
|
|
|
|
index_list = { workspace = true }
|
|
|
|
itertools = { workspace = true }
|
|
|
|
lazy_static = { workspace = true }
|
|
|
|
log = { workspace = true }
|
|
|
|
lru = { workspace = true }
|
|
|
|
lz4 = { workspace = true }
|
|
|
|
memmap2 = { workspace = true }
|
|
|
|
modular-bitfield = { workspace = true }
|
|
|
|
num-derive = { workspace = true }
|
|
|
|
num-traits = { workspace = true }
|
|
|
|
num_cpus = { workspace = true }
|
2023-05-07 13:18:10 -07:00
|
|
|
num_enum = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
once_cell = { workspace = true }
|
|
|
|
ouroboros = { workspace = true }
|
2023-04-10 16:42:05 -07:00
|
|
|
percentage = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
rand = { workspace = true }
|
|
|
|
rayon = { workspace = true }
|
|
|
|
regex = { workspace = true }
|
|
|
|
serde = { workspace = true, features = ["rc"] }
|
|
|
|
serde_derive = { workspace = true }
|
2023-08-14 22:12:05 -07:00
|
|
|
serde_json = { workspace = true }
|
2023-06-09 11:55:01 -07:00
|
|
|
siphasher = { workspace = true }
|
2023-08-09 13:03:36 -07:00
|
|
|
solana-accounts-db = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
solana-address-lookup-table-program = { workspace = true }
|
|
|
|
solana-bpf-loader-program = { workspace = true }
|
|
|
|
solana-bucket-map = { workspace = true }
|
|
|
|
solana-compute-budget-program = { workspace = true }
|
|
|
|
solana-config-program = { workspace = true }
|
2023-07-06 10:08:18 -07:00
|
|
|
solana-cost-model = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
solana-frozen-abi = { workspace = true }
|
|
|
|
solana-frozen-abi-macro = { workspace = true }
|
2023-05-10 23:29:06 -07:00
|
|
|
solana-loader-v4-program = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
solana-measure = { workspace = true }
|
|
|
|
solana-metrics = { workspace = true }
|
|
|
|
solana-perf = { workspace = true }
|
|
|
|
solana-program-runtime = { workspace = true }
|
|
|
|
solana-rayon-threadlimit = { workspace = true }
|
|
|
|
solana-sdk = { workspace = true }
|
|
|
|
solana-stake-program = { workspace = true }
|
2023-04-19 03:58:08 -07:00
|
|
|
solana-system-program = { workspace = true }
|
2023-08-14 22:12:05 -07:00
|
|
|
solana-version = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
solana-vote-program = { workspace = true }
|
|
|
|
solana-zk-token-proof-program = { workspace = true }
|
|
|
|
solana-zk-token-sdk = { workspace = true }
|
2023-05-07 13:18:10 -07:00
|
|
|
static_assertions = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
strum = { workspace = true, features = ["derive"] }
|
|
|
|
strum_macros = { workspace = true }
|
|
|
|
symlink = { workspace = true }
|
|
|
|
tar = { workspace = true }
|
|
|
|
tempfile = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
zstd = { workspace = true }
|
2020-02-14 13:58:48 -08:00
|
|
|
|
2019-02-07 08:44:42 -08:00
|
|
|
[lib]
|
|
|
|
crate-type = ["lib"]
|
2019-05-29 18:30:49 -07:00
|
|
|
name = "solana_runtime"
|
2019-10-04 18:33:29 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
assert_matches = { workspace = true }
|
|
|
|
ed25519-dalek = { workspace = true }
|
|
|
|
libsecp256k1 = { workspace = true }
|
|
|
|
memoffset = { workspace = true }
|
|
|
|
rand_chacha = { workspace = true }
|
2023-08-09 13:03:36 -07:00
|
|
|
solana-accounts-db = { workspace = true, features = ["dev-context-only-utils"] }
|
2023-02-23 06:01:54 -08:00
|
|
|
solana-logger = { workspace = true }
|
2023-08-07 14:28:15 -07:00
|
|
|
# See order-crates-for-publishing.py for using this unusual `path = "."`
|
|
|
|
solana-runtime = { path = ".", features = ["dev-context-only-utils"] }
|
2023-07-13 06:44:08 -07:00
|
|
|
solana-sdk = { workspace = true, features = ["dev-context-only-utils"] }
|
2023-02-23 06:01:54 -08:00
|
|
|
static_assertions = { workspace = true }
|
|
|
|
test-case = { workspace = true }
|
2020-04-16 18:18:28 -07:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
2020-07-06 04:22:23 -07:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
rustc_version = { workspace = true }
|
2022-08-31 06:00:55 -07:00
|
|
|
|
2023-08-07 14:28:15 -07:00
|
|
|
[features]
|
|
|
|
dev-context-only-utils = []
|
|
|
|
|
2022-08-31 06:00:55 -07:00
|
|
|
[[bench]]
|
|
|
|
name = "prioritization_fee_cache"
|