mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 06:39:58 -07:00
20 lines
494 B
TOML
20 lines
494 B
TOML
[package]
|
|
name = "storable_vec"
|
|
description = "A very small, fast, efficient and simple storable Vec"
|
|
version = "0.1.3"
|
|
keywords = ["vec", "disk", "data"]
|
|
categories = ["database"]
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[features]
|
|
json = ["serde", "serde_json"]
|
|
|
|
[dependencies]
|
|
memmap2 = "0.9.5"
|
|
rayon = { workspace = true }
|
|
serde = { workspace = true, optional = true }
|
|
serde_json = { workspace = true, optional = true }
|
|
zerocopy = { workspace = true }
|