solana-program-library/feature-proposal/program/Cargo.toml

30 lines
708 B
TOML
Raw Normal View History

2020-11-06 11:40:18 -08:00
[package]
name = "spl-feature-proposal"
2020-11-18 17:51:12 -08:00
version = "1.0.0"
2020-11-06 11:40:18 -08:00
description = "Solana Program Library Feature Proposal Program"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana-program-library"
license = "Apache-2.0"
edition = "2018"
[features]
no-entrypoint = []
test-bpf = []
[dependencies]
borsh = "0.7.1"
borsh-derive = "0.8.1"
solana-program = "1.5.11"
2021-02-11 13:28:05 -08:00
spl-token = { version = "3.1", path = "../../token/program", features = ["no-entrypoint"] }
2020-11-06 11:40:18 -08:00
[dev-dependencies]
futures = "0.3"
solana-program-test = "1.5.11"
solana-sdk = "1.5.11"
2020-11-06 11:40:18 -08:00
[lib]
crate-type = ["cdylib", "lib"]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]