forked from fabianmurariu/mapx2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (44 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
47 lines (44 loc) · 1.15 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[workspace]
members = ["diskhashmap", "diskdashmap", "locked_iter"]
resolver = "3"
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "Apache-2.0"
authors = ["Fabian Murariu <[email protected]>"]
repository = "https://github.com/fabianmurariu/mapx2"
homepage = "https://github.com/fabianmurariu/mapx2"
documentation = "https://docs.rs/diskhashmap"
description = "High-performance disk-backed hash maps for Rust"
readme = "Readme.MD"
keywords = ["hashmap", "disk", "storage", "mmap", "database"]
categories = [
"data-structures",
"database-implementations",
"memory-management",
]
rust-version = "1.85"
exclude = ["proptest-regressions/"]
[workspace.dependencies]
either = "1.15.0"
crossbeam-utils = "0.8.21"
rkyv = "0.8.11"
proptest = "1.7.0"
proptest-derive = "0.6.0"
memmap2 = "0.9.7"
tempfile = "3.20.0"
bytemuck = "1.23.1"
modular-bitfield = "0.12.0"
paste = "1.0.15"
rustc-hash = "2.1.1"
criterion = { version = "0.5", features = ["html_reports"] }
sled = "0.34.7"
rand = "0.9.2"
rand_chacha = "0.9.0"
rayon = "1.10.0"
parking_lot = "0.12"
lock_api = "0.4.13"
thiserror = "2.0"
[profile.release-with-debug]
inherits = "release"
debug = true