26 lines
615 B
TOML
26 lines
615 B
TOML
|
|
# Note: This crate must be built using build.sh
|
|
|
|
[package]
|
|
name = "solana-bpf-rust-noop"
|
|
version = "0.13.0"
|
|
description = "Solana BPF noop program written in Rust"
|
|
authors = ["Solana Maintainers <maintainers@solana.com>"]
|
|
repository = "https://github.com/solana-labs/solana"
|
|
license = "Apache-2.0"
|
|
homepage = "https://solana.com/"
|
|
|
|
[dependencies]
|
|
# byteorder = { version = "1.3.1", default-features = false }
|
|
# heapless = { version = "0.4.0", default-features = false }
|
|
# byte = { version = "0.2", default-features = false }
|
|
|
|
[workspace]
|
|
members = []
|
|
|
|
[lib]
|
|
name = "solana_bpf_rust_noop"
|
|
crate-type = ["cdylib"]
|
|
|
|
|