2021-08-26 17:30:36 -07:00
|
|
|
[package]
|
|
|
|
name = "solana-program-runtime"
|
|
|
|
description = "Solana program runtime"
|
|
|
|
documentation = "https://docs.rs/solana-program-runtime"
|
2023-03-28 20:28:56 -07:00
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
2021-08-26 17:30:36 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
base64 = { workspace = true }
|
|
|
|
bincode = { workspace = true }
|
|
|
|
eager = { workspace = true }
|
|
|
|
enum-iterator = { workspace = true }
|
|
|
|
itertools = { workspace = true }
|
2023-02-24 10:42:33 -08:00
|
|
|
libc = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
log = { workspace = true }
|
|
|
|
num-derive = { workspace = true }
|
|
|
|
num-traits = { workspace = true }
|
2023-04-10 16:42:05 -07:00
|
|
|
percentage = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
rand = { workspace = true }
|
2023-06-19 12:36:05 -07:00
|
|
|
serde = { workspace = true, features = ["derive", "rc"] }
|
2023-02-23 06:01:54 -08:00
|
|
|
solana-frozen-abi = { workspace = true }
|
|
|
|
solana-frozen-abi-macro = { workspace = true }
|
|
|
|
solana-measure = { workspace = true }
|
|
|
|
solana-metrics = { workspace = true }
|
|
|
|
solana-sdk = { workspace = true }
|
|
|
|
solana_rbpf = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
2021-08-26 17:30:36 -07:00
|
|
|
|
2021-12-22 09:01:33 -08:00
|
|
|
[dev-dependencies]
|
2023-06-24 15:55:39 -07:00
|
|
|
libsecp256k1 = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
solana-logger = { workspace = true }
|
2023-07-13 06:44:08 -07:00
|
|
|
solana-sdk = { workspace = true, features = ["dev-context-only-utils"] }
|
2021-12-22 09:01:33 -08:00
|
|
|
|
2021-08-26 17:30:36 -07:00
|
|
|
[lib]
|
|
|
|
crate-type = ["lib"]
|
|
|
|
name = "solana_program_runtime"
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
|
|
|
|
[build-dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
rustc_version = { workspace = true }
|