2019-05-10 14:16:35 -07:00
|
|
|
|
|
|
|
# Note: This crate must be built using build.sh
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "solana-bpf-rust-noop"
|
2020-02-25 09:48:12 -08:00
|
|
|
version = "0.1.0"
|
2019-05-10 14:16:35 -07:00
|
|
|
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/"
|
2019-06-17 15:09:32 -07:00
|
|
|
edition = "2018"
|
2019-05-10 14:16:35 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2020-02-25 09:48:12 -08:00
|
|
|
num-derive = "0.2"
|
|
|
|
num-traits = "0.2"
|
2019-09-13 12:36:08 -07:00
|
|
|
solana-sdk = { git = "https://github.com/solana-labs/solana", default-features = false }
|
2020-02-25 09:48:12 -08:00
|
|
|
thiserror = "1.0"
|
|
|
|
|
2019-09-13 12:36:08 -07:00
|
|
|
[features]
|
|
|
|
program = ["solana-sdk/program"]
|
|
|
|
default = ["program"]
|
2019-05-10 14:16:35 -07:00
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = []
|
|
|
|
|
|
|
|
[lib]
|
2019-06-17 15:09:32 -07:00
|
|
|
name = "solana_bpf_rust_noop"
|
2019-07-16 14:52:22 -08:00
|
|
|
crate-type = ["cdylib"]
|