solana/web3.js/examples/bpf-rust-noop/Cargo.toml

23 lines
518 B
TOML
Raw Normal View History

2019-05-10 14:16:35 -07:00
# Note: This crate must be built using build.sh
[package]
name = "solana-bpf-rust-noop"
2019-06-17 15:09:32 -07:00
version = "0.16.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]
2019-06-21 22:18:36 -07:00
solana-sdk-bpf-utils = { path = "../../bpf-sdk/rust/rust-utils" }
2019-05-10 14:16:35 -07:00
[workspace]
members = []
[lib]
crate-type = ["cdylib"]
2019-06-17 15:09:32 -07:00
name = "solana_bpf_rust_noop"