serum-dex/lockup/Cargo.toml

35 lines
989 B
TOML
Raw Normal View History

2020-09-23 23:39:36 -07:00
[package]
name = "serum-lockup"
2020-09-23 23:39:36 -07:00
version = "0.1.0"
description = "Serum Lockup"
2020-09-23 23:39:36 -07:00
repository = "https://github.com/project-serum/serum-dex"
edition = "2018"
[features]
2020-12-01 09:48:26 -08:00
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 = []
2020-09-23 23:39:36 -07:00
strict = []
default = []
[dependencies]
2020-10-08 11:42:45 -07:00
spl-token = { version = "2.0.6", default-features = false }
2020-09-23 23:39:36 -07:00
num_enum = "0.5.0"
thiserror = "1.0.20"
solana-client-gen = { path = "../solana-client-gen" }
serum-common = { path = "../common" }
bytemuck = "1.4.0"
arrayref = "0.3.6"
2020-09-23 23:39:36 -07:00
2020-12-01 09:48:26 -08:00
# Forks.
borsh = { git = "https://github.com/project-serum/borsh", branch = "serum" }
# Client only.
lazy_static = { version = "1.4.0", optional = true }
# Testing only.
[dev-dependencies]
rand = { version = "0.7.3" }
serum-common-tests = { path = "../common/tests" }
serum-lockup-client = { path = "./client" }