Exclude chacha_cuda when chacha is disabled

This commit is contained in:
Michael Vines 2018-10-24 16:49:21 -07:00 committed by Grimes
parent 208e7d7943
commit af8a36b7fb
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ pub mod budget_instruction;
pub mod budget_transaction; pub mod budget_transaction;
#[cfg(feature = "chacha")] #[cfg(feature = "chacha")]
pub mod chacha; pub mod chacha;
#[cfg(feature = "cuda")] #[cfg(all(feature = "chacha", feature = "cuda"))]
pub mod chacha_cuda; pub mod chacha_cuda;
pub mod choose_gossip_peer_strategy; pub mod choose_gossip_peer_strategy;
pub mod client; pub mod client;