-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 1.19 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
[package]
authors = ["BarbossHack <barbossh4ck@protonmail.com>"]
categories = ["database-implementations", "concurrency", "data-structures", "caching"]
description = "A key-value store based on linux shared-memory files (shm) for persisting state across program restarts."
edition = "2024"
homepage = "https://github.com/BarbossHack/shmap"
keywords = ["shm", "shared-memory", "inter-process", "store", "ramfs"]
license = "MIT OR Apache-2.0"
name = "shmap"
readme = "README.md"
repository = "https://github.com/BarbossHack/shmap"
rust-version = "1.85.0"
version = "0.5.0"
[dependencies]
aes-gcm = { version = "0.10.3", features = ["std"] }
bincode = { version = "2.0.0", default-features = false, features = ["std", "serde"] }
chrono = { version = "0.4.40", features = ["serde"] }
fdlimit = "0.3.0"
libc = "0.2.170"
log = "0.4.26"
memmap2 = "0.9.5"
named-lock = "0.4.1"
rand = "0.9.0"
serde = { version = "1.0.218", features = ["serde_derive"] }
sha2 = "0.10.8"
thiserror = "2.0.12"
[dev-dependencies]
env_logger = "0.11.6"
[lints.clippy]
missing_errors_doc = "allow"
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
undocumented_unsafe_blocks = "warn"
unwrap_used = "warn"