26 lines
460 B
TOML
26 lines
460 B
TOML
cargo-features = ["workspace-inheritance"]
|
|
|
|
[package]
|
|
name = "margin-trade"
|
|
version = "0.1.0"
|
|
description = "Created with Anchor"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
name = "margin_trade"
|
|
doctest = false
|
|
|
|
[features]
|
|
no-entrypoint = []
|
|
no-idl = []
|
|
no-log-ix-name = []
|
|
cpi = ["no-entrypoint"]
|
|
default = []
|
|
test-bpf = []
|
|
|
|
[dependencies]
|
|
anchor-lang = { workspace = true }
|
|
anchor-spl = { workspace = true }
|
|
solana-program = { workspace = true }
|