Files
solana/programs/native/bpf_loader/Cargo.toml
dependabot[bot] 6bca577d6d Bump libc from 0.2.48 to 0.2.49
Bumps [libc](https://github.com/rust-lang/libc) from 0.2.48 to 0.2.49.
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](https://github.com/rust-lang/libc/commits)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-02-22 16:45:14 -07:00

36 lines
706 B
TOML

[package]
name = "solana-bpfloader"
version = "0.12.0"
description = "Solana BPF Loader"
authors = ["Solana Maintainers <maintainers@solana.com>"]
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
edition = "2018"
[features]
bpf_c = []
bpf_rust = []
[dependencies]
bincode = "1.1.2"
byteorder = "1.3.1"
elf = "0.0.10"
libc = "0.2.49"
log = "0.4.2"
solana_rbpf = "=0.1.9"
serde = "1.0.88"
solana-logger = { path = "../../../logger", version = "0.12.0" }
solana-sdk = { path = "../../../sdk", version = "0.12.0" }
[build-dependencies]
walkdir = "2"
[lib]
name = "solana_bpf_loader"
crate-type = ["lib", "cdylib"]
[[bench]]
name = "bpf_loader"