Link Cargo.toml features

This commit is contained in:
Michael Vines 2018-12-20 14:21:39 -08:00
parent becfd1e9fa
commit dd25c5b085
3 changed files with 8 additions and 5 deletions

View File

@ -18,7 +18,7 @@ bpf_c = ["solana-bpfloader/bpf_c"]
chacha = []
cuda = []
erasure = []
ipv6 = []
ipv6 = ["solana-netutil/ipv6"]
test = []
unstable = []

View File

@ -20,8 +20,8 @@ solana-metrics = { path = "../metrics", version = "0.12.0" }
solana-sdk = { path = "../sdk", version = "0.12.0" }
[features]
chacha = []
chacha = ["solana/chacha"]
cuda = ["solana/cuda"]
erasure = []
ipv6 = []
unstable = []
erasure = ["solana/erasure"]
ipv6 = ["solana/ipv6"]
unstable = ["solana/unstable"]

View File

@ -8,6 +8,9 @@ license = "Apache-2.0"
homepage = "https://solana.com/"
edition = "2018"
[features]
ipv6 = []
[dependencies]
log = "0.4.2"
ipnetwork = "0.12.7"