29 lines
719 B
TOML
29 lines
719 B
TOML
[package]
|
|
name = "spl-binary-oracle-pair"
|
|
version = "0.1.0"
|
|
description = "Solana Program Library Binary Oracle Pair"
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
|
repository = "https://github.com/solana-labs/solana-program-library"
|
|
license = "Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
test-bpf = []
|
|
|
|
[dependencies]
|
|
num-derive = "0.3"
|
|
num-traits = "0.2"
|
|
solana-program = "1.7.3"
|
|
spl-token = { version = "3.1", path = "../../token/program", features = [ "no-entrypoint" ] }
|
|
thiserror = "1.0"
|
|
uint = "0.8"
|
|
arbitrary = { version = "0.4", features = ["derive"], optional = true }
|
|
borsh = "0.8.2"
|
|
|
|
[dev-dependencies]
|
|
solana-program-test = "1.7.3"
|
|
solana-sdk = "1.7.3"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|