30 lines
		
	
	
		
			663 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			663 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| 
 | |
| # Note: This crate must be built using build.sh
 | |
| 
 | |
| [package]
 | |
| name = "solana-bpf-rust-noop"
 | |
| version = "0.1.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/"
 | |
| edition = "2018"
 | |
| 
 | |
| [dependencies]
 | |
| num-derive = "0.2"
 | |
| num-traits = "0.2"
 | |
| solana-sdk = { git = "https://github.com/solana-labs/solana", default-features = false }
 | |
| thiserror = "1.0"
 | |
| 
 | |
| [features]
 | |
| program = ["solana-sdk/program"]
 | |
| default = ["program"]
 | |
| 
 | |
| [workspace]
 | |
| members = []
 | |
| 
 | |
| [lib]
 | |
| name = "solana_bpf_rust_noop"
 | |
| crate-type = ["cdylib"]
 |