First stab at Rust BPF (#2269)

First stab at Rust BPF
This commit is contained in:
jackcmay
2019-01-02 15:12:42 -08:00
committed by GitHub
parent e3478ee2ab
commit a461c5682d
19 changed files with 792 additions and 152 deletions

View File

@@ -1,12 +1,17 @@
# Note: This crate must be built using the makefile, try `make help` instead of `cargo build`
[package]
name = "solana-bpf-noop"
name = "solana-bpf-rust-noop"
version = "0.12.0"
description = "Solana BPF noop program"
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]
rbpf = "0.1.0"
solana-sdk = { path = "../../../../sdk", version = "0.12.0" }
heapless = { version = "0.4.0", default-features = false }
[workspace]
members = []