30 lines
715 B
TOML
30 lines
715 B
TOML
[package]
|
|
name = "stateless-asks"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
[features]
|
|
no-entrypoint = []
|
|
test-bpf = []
|
|
|
|
[dependencies]
|
|
borsh = "0.9.1"
|
|
solana-program = "1.8.1"
|
|
spl-token = { version = "3.2", path = "../../token/program", features = ["no-entrypoint"] }
|
|
spl-associated-token-account = {version = "1.0.3", features = ["no-entrypoint"]}
|
|
metaplex-token-metadata = { version = "0.0.1", features = ["no-entrypoint"] }
|
|
thiserror = "1.0"
|
|
|
|
[dev-dependencies]
|
|
solana-program-test = "1.8.1"
|
|
solana-sdk = "1.8.1"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|