serum-dex/registry/meta-entity/Cargo.toml

29 lines
846 B
TOML

[package]
name = "serum-meta-entity"
version = "0.1.0"
description = "Serum Meta Entity"
repository = "https://github.com/project-serum/serum-dex"
edition = "2018"
[features]
program = ["borsh/serum-program", "solana-client-gen/program", "spl-token/program", "serum-common/program"]
client = ["borsh/serum-client", "solana-client-gen/client", "spl-token/default", "serum-common/client", "lazy_static"]
test = []
strict = []
default = []
[dependencies]
num_enum = "0.5.0"
thiserror = "1.0.20"
bytemuck = "1.4.0"
arrayref = "0.3.6"
spl-token = { version = "2.0.6", default-features = false }
solana-client-gen = { path = "../../solana-client-gen" }
serum-common = { path = "../../common" }
# Forks.
borsh = { git = "https://github.com/project-serum/borsh", branch = "serum" }
# Client only.
lazy_static = { version = "1.4.0", optional = true }