-
Notifications
You must be signed in to change notification settings - Fork 345
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (34 loc) · 1021 Bytes
/
Cargo.toml
File metadata and controls
42 lines (34 loc) · 1021 Bytes
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
[package]
name = "ruvector-delta-graph"
version = "0.1.0"
edition = "2021"
description = "Delta operations for graph structures - edge and node changes"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ruvnet/ruvector"
keywords = ["graph", "delta", "incremental", "streaming"]
categories = ["data-structures", "algorithms"]
[features]
default = []
parallel = ["rayon"]
serde = ["dep:serde", "dep:serde_json"]
[dependencies]
# Core delta library
ruvector-delta-core = { path = "../ruvector-delta-core" }
# Error handling
thiserror = "2.0"
# Data structures
parking_lot = "0.12"
dashmap = "6.0"
smallvec = { version = "1.13", features = ["union"] }
# Optional parallelism
rayon = { version = "1.10", optional = true }
# Optional serialization
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
[dev-dependencies]
criterion = "0.6"
proptest = "1.4"
# Benchmarks will be added later
# [[bench]]
# name = "graph_delta"
# harness = false