-
Notifications
You must be signed in to change notification settings - Fork 30
/
Cargo.toml
45 lines (38 loc) · 1.22 KB
/
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
37
38
39
40
41
42
43
44
45
[package]
name = "pickledb"
version = "0.5.1"
authors = ["seladb <pcapplusplus@gmail.com>"]
license = "MIT"
readme = "README.md"
description = "A lightweight and simple key-value store written in Rust, heavily inspired by Python's PickleDB (https://pythonhosted.org/pickleDB/)"
repository = "https://github.com/seladb/pickledb-rs"
homepage = "https://github.com/seladb/pickledb-rs"
documentation = "http://docs.rs/pickledb"
keywords = ["database", "key-value-store", "db", "kv", "pickledb"]
categories = ["database-implementations", "data-structures"]
edition = "2018"
[badges]
travis-ci = { repository = "seladb/pickledb-rs" }
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", optional = true }
bincode = { version = "1.0", optional = true }
serde_yaml = { version = "0.8", optional = true }
serde_cbor = { version = "0.11", optional = true }
[dev-dependencies]
rand = "0.6"
rstest = "0.2"
matches = "0.1"
fs2 = "0.4"
[features]
default = ["json"]
json = ["dep:serde_json"]
bincode = ["dep:bincode"]
yaml = ["dep:serde_yaml"]
cbor = ["dep:serde_cbor"]
[[example]]
name = "hello_world"
path = "examples/hello_world/src/main.rs"
[[example]]
name = "lists"
path = "examples/lists/src/main.rs"