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