-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 1.09 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]
name = "quickleaf"
version = "0.4.10"
edition = "2021"
license = "Apache-2.0"
authors = ["Philippe Assis <codephilippe@gmail.com>"]
description = "A simple and efficient in-memory cache with support for filtering, ordering, limiting results, event notifications and eventual persistence"
keywords = ["cache", "persistence", "filter", "order", "limit"]
documentation = "https://docs.rs/quickleaf"
categories = ["caching", "data-structures"]
repository = "https://github.com/phlowdotdev/quickleaf"
readme = "README.md"
[dependencies]
valu3 = "0.9.2"
hashbrown = "0.16.0"
indexmap = "2.12.0"
# Optional dependencies for examples
ratatui = { version = "0.29", optional = true }
crossterm = { version = "0.29", optional = true }
# Optional dependencies for persist feature
rusqlite = { version = "0.37", features = ["bundled"], optional = true }
[features]
default = ["persist"]
event = []
persist = ["dep:rusqlite"]
tui-example = ["dep:ratatui", "dep:crossterm", "persist"]
[dev-dependencies]
criterion = { version = "0.7.0", features = ["html_reports"] }
[[bench]]
name = "quickleaf_bench"
harness = false