solana-program-library/token-swap/program/Cargo.toml

28 lines
638 B
TOML

[package]
name = "spl-token-swap"
version = "0.1.0"
description = "Solana Program Library Token Swap"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana-program-library"
license = "Apache-2.0"
edition = "2018"
exclude = ["js/**"]
[features]
exclude_entrypoint = []
[dependencies]
arrayref = "0.3.6"
num-derive = "0.3"
num-traits = "0.2"
remove_dir_all = "=0.5.0"
solana-program = "1.4.3"
spl-token = { path = "../../token/program", features = [ "exclude_entrypoint" ] }
thiserror = "1.0"
[dev-dependencies]
[lib]
name = "spl_token_swap"
crate-type = ["cdylib", "lib"]