Fix compilation errors due to missing "features" section in Cargo.toml

- e.g. breaks in compilations during testnet deployment with Cuda enabled
This commit is contained in:
Pankaj Garg 2019-02-04 19:01:14 +00:00 committed by Grimes
parent 58f4e0653a
commit ac9f6a77c9
3 changed files with 9 additions and 0 deletions

View File

@ -8,6 +8,9 @@ license = "Apache-2.0"
homepage = "https://solana.com/"
edition = "2018"
[features]
cuda = []
[dependencies]
bincode = "1.0.0"
bytes = "0.4"

View File

@ -8,6 +8,9 @@ repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
[features]
cuda = []
[dependencies]
clap = "2.32.0"
dirs = "1.0.2"

View File

@ -8,6 +8,9 @@ license = "Apache-2.0"
homepage = "https://solana.com/"
edition = "2018"
[features]
cuda = []
[dependencies]
dirs = "1.0.2"
clap = "2.31"