66 lines
1.5 KiB
TOML
66 lines
1.5 KiB
TOML
[package]
|
|
name = "solana-bpf-programs"
|
|
description = "Blockchain, Rebuilt for Scale"
|
|
version = "1.5.0"
|
|
documentation = "https://docs.rs/solana"
|
|
homepage = "https://solana.com/"
|
|
readme = "README.md"
|
|
repository = "https://github.com/solana-labs/solana"
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
|
license = "Apache-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[features]
|
|
bpf_c = []
|
|
bpf_rust = []
|
|
|
|
[build-dependencies]
|
|
walkdir = "2"
|
|
|
|
[dependencies]
|
|
bincode = "1.1.4"
|
|
byteorder = "1.3.2"
|
|
elf = "0.0.10"
|
|
solana-bpf-loader-program = { path = "../bpf_loader", version = "1.5.0" }
|
|
solana-logger = { path = "../../logger", version = "1.5.0" }
|
|
solana-measure = { path = "../../measure", version = "1.5.0" }
|
|
solana-runtime = { path = "../../runtime", version = "1.5.0" }
|
|
solana-sdk = { path = "../../sdk", version = "1.5.0" }
|
|
solana_rbpf = "=0.1.32"
|
|
|
|
[[bench]]
|
|
name = "bpf_loader"
|
|
|
|
[workspace]
|
|
members = [
|
|
"rust/128bit",
|
|
"rust/128bit_dep",
|
|
"rust/alloc",
|
|
"rust/custom_heap",
|
|
"rust/dep_crate",
|
|
"rust/deprecated_loader",
|
|
"rust/dup_accounts",
|
|
"rust/error_handling",
|
|
"rust/external_spend",
|
|
"rust/instruction_introspection",
|
|
"rust/invoke",
|
|
"rust/invoked",
|
|
"rust/iter",
|
|
"rust/many_args",
|
|
"rust/many_args_dep",
|
|
"rust/noop",
|
|
"rust/panic",
|
|
"rust/param_passing",
|
|
"rust/param_passing_dep",
|
|
"rust/rand",
|
|
"rust/ristretto",
|
|
"rust/sanity",
|
|
"rust/sha256",
|
|
"rust/call_depth",
|
|
"rust/sysval",
|
|
]
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|