* move `ExecuteTimings` from `runtime::bank` to `program_runtime::timings` (cherry picked from commit7d32909e17) # Conflicts: # core/Cargo.toml # ledger/Cargo.toml # programs/bpf/Cargo.lock * Add execute metrics (cherry picked from commitb25e4a200b) * Add metrics for executor creation (cherry picked from commit848b6dfbdd) * Add helper macro for `AddAssign`ing with saturating arithmetic (cherry picked from commitdeb9344e49) * Use saturating_add_assign macro (cherry picked from commit72fc6096a0) * Consolidate process instruction execution timings to own struct (cherry picked from commit390ef0fbcd) Co-authored-by: Trent Nelson <trent@solana.com> Co-authored-by: Carl Lin <carl@solana.com>
36 lines
961 B
TOML
36 lines
961 B
TOML
[package]
|
|
name = "solana-program-runtime"
|
|
version = "1.9.4"
|
|
description = "Solana program runtime"
|
|
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-program-runtime"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
base64 = "0.13"
|
|
bincode = "1.3.3"
|
|
itertools = "0.10.1"
|
|
libc = "0.2.101"
|
|
libloading = "0.7.0"
|
|
log = "0.4.14"
|
|
num-derive = { version = "0.3" }
|
|
num-traits = { version = "0.2" }
|
|
serde = { version = "1.0.129", features = ["derive", "rc"] }
|
|
solana-logger = { path = "../logger", version = "=1.9.4" }
|
|
solana-measure = { path = "../measure", version = "=1.9.4" }
|
|
solana-sdk = { path = "../sdk", version = "=1.9.4" }
|
|
thiserror = "1.0"
|
|
|
|
[lib]
|
|
crate-type = ["lib"]
|
|
name = "solana_program_runtime"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[build-dependencies]
|
|
rustc_version = "0.4"
|