fix compilation error by adding missing crate feature (#258)

This commit is contained in:
kirill lykov 2022-10-26 01:35:28 +02:00 committed by GitHub
parent d678cead95
commit 92992b3088
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ name = "crank"
path = "src/bin/main.rs"
[dependencies]
serum_dex = { path = "../", default-features = false, features = ["client"] }
serum_dex = { path = "../", default-features = false, features = ["client", "program"] }
serum-common = { path = "../../common", features = ["client"] }
spl-token = { version = "3.0.0-pre1", features = ["no-entrypoint"], default-features = false }
clap = { version = "3.1.6", features = ["derive"] }