Rework bytemuck dependencies for monorepo compatibility

This commit is contained in:
Michael Vines 2021-09-26 11:37:08 -07:00
parent 6ba3f4dc6d
commit dc52817408
1 changed files with 2 additions and 4 deletions

View File

@ -8,14 +8,12 @@ edition = "2018"
publish = false
[dependencies]
bytemuck = "1.7.2"
bytemuck_derive = "1.0.1"
bytemuck = { version = "1.7.2", features = ["derive"] }
getrandom = { version = "0.1", features = ["dummy"] }
num-derive = "0.3"
num-traits = "0.2"
solana-sdk = "=1.7.11"
spl-zk-token-crypto = { path = "../crypto" }
zeroable = "0.2.0"
getrandom = { version = "0.1", features = ["dummy"] }
[features]
test-bpf = []