-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
35 lines (31 loc) · 917 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
[package]
name = "jammdb"
description = "An embedded single-file database for Rust"
version = "0.11.0"
authors = ["PJ Tatlow <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/pjtatlow/jammdb"
readme = "README.md"
keywords = ["db", "database", "embedded-database", "memory-map"]
categories = ["database", "database-implementations"]
exclude = [".*.yml", ".github/*", "ci/*", "tests/*", "makefile"]
[dependencies]
libc = "0.2.149"
memmap2 = "0.9.0"
page_size = "0.6.0"
fs4 = "0.7.0"
bytes = "1.5.0"
bumpalo = "3.14.0"
fnv = "1.0.7"
sha3 = "0.10.8"
[dev-dependencies]
bytes = { version = "1", features = ["serde"] }
rand = "0.8"
rmp-serde = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
[badges]
codecov = { repository = "pjtatlow/jammdb" }
appveyor = { repository = "pjtatlow/jammdb" }
maintenance = { status = "actively-developed" }