serum-dex/dex/crank/Cargo.toml

29 lines
710 B
TOML
Raw Normal View History

2020-09-09 04:40:25 -07:00
[package]
name = "crank"
2020-09-22 02:28:30 -07:00
version = "0.2.0"
2020-09-09 04:40:25 -07:00
edition = "2018"
2020-10-08 11:32:23 -07:00
[[bin]]
name = "crank"
path = "src/bin/main.rs"
2020-09-09 04:40:25 -07:00
[dependencies]
2020-12-27 09:47:31 -08:00
serum_dex = { path = "../", default-features = false, features = ["client"] }
serum-common = { path = "../../common", features = ["client"] }
spl-token = { version = "3.0.0-pre1", features = ["no-entrypoint"], default-features = false }
2022-03-21 06:36:13 -07:00
clap = { version = "3.1.6", features = ["derive"] }
enumflags2 = "0.6.4"
2021-07-26 15:25:10 -07:00
solana-client = "1.6.18"
solana-sdk = "1.6.18"
2020-09-09 04:40:25 -07:00
anyhow = "1.0.32"
rand = "0.7.3"
safe-transmute = "0.11.0"
threadpool = "1.8.1"
sloggers = "1.0"
slog-scope = "4.3"
slog-stdlog = "4"
log = "0.4"
2020-09-15 03:11:02 -07:00
debug_print = "1.0.0"
tokio = {version = "0.2", features = ["full"]}
warp = "0.2"