-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (51 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
63 lines (51 loc) · 1.26 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[workspace]
members = [".", "overgraph-node", "overgraph-python"]
[package]
name = "overgraph"
version = "0.4.1"
edition = "2021"
description = "An absurdly fast embedded graph database. Pure Rust, sub-microsecond reads."
license = "MIT OR Apache-2.0"
repository = "https://github.com/Bhensley5/overgraph"
homepage = "https://overgraph.io"
readme = "README.md"
keywords = ["graph-database", "embedded", "performance", "in-process", "rust"]
categories = ["database-implementations", "data-structures"]
[dependencies]
crc32fast = "1"
memmap2 = "0.9"
rayon = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rmp-serde = "1"
[features]
cli = []
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
tempfile = "3"
[[bin]]
name = "overgraph-inspect"
path = "src/bin/inspect.rs"
required-features = ["cli"]
[[bin]]
name = "benchmark-harness"
path = "src/bin/benchmark_harness.rs"
required-features = ["cli"]
[[test]]
name = "inspect_integration"
required-features = ["cli"]
[[example]]
name = "knowledge_graph"
path = "examples/rust/knowledge_graph.rs"
[[bench]]
name = "core_ops"
harness = false
[[bench]]
name = "vector_ops"
harness = false
[[bench]]
name = "async_flush"
harness = false
[profile.release]
lto = true
strip = "symbols"