solana-program-library/token/Cargo.toml

30 lines
729 B
TOML
Raw Normal View History

2020-05-29 15:00:47 -07:00
# Note: This crate must be built using do.sh
[package]
name = "spl-token"
version = "0.1.0"
description = "Solana Program Library Token"
2020-06-17 14:12:46 -07:00
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
2020-05-29 15:00:47 -07:00
repository = "https://github.com/solana-labs/solana-program-library"
license = "Apache-2.0"
edition = "2018"
[dependencies]
num-derive = "0.2"
num-traits = "0.2"
2020-06-26 15:20:03 -07:00
remove_dir_all = "=0.5.0"
2020-06-03 10:28:14 -07:00
solana-sdk = { version = "=1.2.0", default-features = false, features=["program"] }
solana-sdk-bpf-test = { path = "../bin/bpf-sdk/rust/test", default-features = false }
2020-05-29 15:00:47 -07:00
thiserror = "1.0"
[dev-dependencies]
rand = { version = "0.7.0"}
2020-06-26 15:20:03 -07:00
[build-dependencies]
2020-07-01 00:56:00 -07:00
cbindgen = "=0.14.2"
2020-06-26 15:20:03 -07:00
2020-05-29 15:00:47 -07:00
[lib]
name = "spl_token"
crate-type = ["cdylib", "lib"]