-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (30 loc) · 854 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
[workspace]
members = [".", "fuzz", "venndb-macros", "venndb-usage"]
[package]
description = "an in-memory database in Rust for rows queried using bit (flag) columns"
edition = "2021"
homepage = "https://github.com/plabayo/venndb"
license = "MIT OR Apache-2.0"
name = "venndb"
readme = "README.md"
repository = "https://github.com/plabayo/venndb"
keywords = ["database", "db", "memory", "bits"]
categories = ["database"]
authors = ["Glen De Cauwsemaecker <glen@plabayo.tech>"]
version = "0.5.0"
rust-version = "1.75.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
bitvec = "1.0.1"
hashbrown = "0.14.3"
rand = "0.8.5"
venndb-macros = { version = "0.5.0", path = "venndb-macros" }
[dev-dependencies]
divan = "0.1.14"
itertools = "0.13.0"
sqlite = "0.36.0"
[[bench]]
name = "proxydb"
harness = false