2022-01-19 13:58:20 -08:00
|
|
|
[package]
|
|
|
|
name = "solana-bloom"
|
|
|
|
description = "Solana bloom filter"
|
|
|
|
documentation = "https://docs.rs/solana-bloom"
|
2023-02-23 06:01:54 -08:00
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
2022-01-19 13:58:20 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
bv = { workspace = true, features = ["serde"] }
|
|
|
|
fnv = { workspace = true }
|
|
|
|
log = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
|
|
|
rayon = { workspace = true }
|
|
|
|
serde = { workspace = true, features = ["rc"] }
|
|
|
|
serde_derive = { workspace = true }
|
|
|
|
solana-frozen-abi = { workspace = true }
|
|
|
|
solana-frozen-abi-macro = { workspace = true }
|
|
|
|
solana-sdk = { workspace = true }
|
2022-01-19 13:58:20 -08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["lib"]
|
|
|
|
name = "solana_bloom"
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
|
|
|
|
[build-dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
rustc_version = { workspace = true }
|