serum-dex/safe/Cargo.toml

29 lines
849 B
TOML
Raw Normal View History

2020-09-23 23:39:36 -07:00
[package]
name = "serum-safe"
version = "0.1.0"
description = "Serum Safe"
repository = "https://github.com/project-serum/serum-dex"
edition = "2018"
[features]
program = ["solana-client-gen/program", "spl-token/program", "serum-common/program"]
client = ["solana-client-gen/client", "spl-token/default", "serum-common/client", "lazy_static"]
2020-09-23 23:39:36 -07:00
test = ["rand", "solana-client-gen/client", "spl-token/default"]
strict = []
default = []
[dependencies]
serde = { version = "1.0", features = ["derive"] }
spl-token = { version = "=2.0.3", default-features = false }
num_enum = "0.5.0"
thiserror = "1.0.20"
solana-client-gen = { path = "../solana-client-gen" }
serum-common = { path = "../common" }
bytemuck = "1.4.0"
# Client only.
lazy_static = { version = "1.4.0", optional = true }
2020-09-23 23:39:36 -07:00
# Used for testing.
rand = { version = "0.7.3", optional = true }