-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (29 loc) · 989 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
30
31
32
33
34
35
36
[package]
name = "scdb"
version = "0.2.1"
edition = "2021"
license-file = "LICENSE"
repository = "https://github.com/sopherapps/scdb"
readme = "README.md"
description = "A very simple and fast key-value store but persisting data to disk, with a 'localStorage-like' API."
authors = ["Martin Ahindura <[email protected]>"]
keywords = ["cache", "key-value-store", "disk-cache", "database", "hashmap"]
categories = ["caching", "database"]
exclude = ["examples/*", ".github/*", "docs/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
twox-hash = { version = "1.6.3" }
clokwerk = "0.4"
memchr = "2.5.0"
[target.'cfg(unix)'.dependencies]
libc = "0.2.137"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["sysinfoapi"] }
[dev-dependencies]
serial_test = "0.9.0"
criterion = { version = "0.4" }
[target.'cfg(unix)'.dev-dependencies]
nix = "0.26.2"
[[bench]]
name = "scdb"
harness = false