solana-program-library/examples/rust/custom-heap/Cargo.toml

29 lines
618 B
TOML
Raw Normal View History

2020-11-11 00:01:10 -08:00
[package]
name = "spl-example-custom-heap"
version = "1.0.0"
description = "Solana Program Library Custom Heap Example"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana-program-library"
license = "Apache-2.0"
edition = "2018"
publish = false
[features]
default = ["custom-heap"]
custom-heap = []
no-entrypoint = []
test-bpf = []
[dependencies]
solana-program = "1.5.11"
2020-11-11 00:01:10 -08:00
[dev-dependencies]
solana-program-test = "1.5.11"
solana-sdk = "1.5.11"
2020-11-11 00:01:10 -08:00
[lib]
crate-type = ["cdylib", "lib"]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]