-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 915 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "metadata-store"
authors = ["Tyler Neely <tylerneely@gmail.com>"]
description = "A simple store for recoverable metadata that is written in atomic batches."
version = "0.2.4"
edition = "2021"
license = "MIT/Apache-2.0"
repository = "https://github.com/komora-io/metadata-store"
keywords = ["multi-threaded", "performance", "index", "database", "db"]
categories = ["concurrency", "data-structures", "rust-patterns", "database-implementations"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
crc32fast = "1.3.2"
crossbeam-channel = "0.5.8"
fault-injection = "1.0.9"
fnv = "1.0.7"
fs2 = "0.4.3"
inline-array = { version = "0.1.11", features = ["serde", "concurrent_map_minimum"] }
log = "0.4.19"
pagetable = "0.4.3"
parking_lot = "0.12.1"
rayon = "1.7.0"
zstd = "0.12.4"
[dev-dependencies]
env_logger = "0.10.0"