-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (59 loc) · 2.3 KB
/
Cargo.toml
File metadata and controls
62 lines (59 loc) · 2.3 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
[workspace]
resolver = "2"
members = [
"crates/contextdb-core",
"crates/contextdb-tx",
"crates/contextdb-relational",
"crates/contextdb-graph",
"crates/contextdb-vector",
"crates/contextdb-parser",
"crates/contextdb-planner",
"crates/contextdb-engine",
"crates/contextdb-server",
"crates/contextdb-cli",
]
default-members = ["crates/contextdb-engine", "crates/contextdb-cli", "crates/contextdb-server"]
[workspace.package]
authors = ["John Cyriac <lucidprogrammer@hotmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/context-graph-ai/contextdb"
homepage = "https://contextdb.tech"
documentation = "https://contextdb.tech/docs/"
description = "Embedded database for agentic memory — relational, graph, and vector under unified MVCC transactions"
keywords = ["database", "embedded", "graph", "vector", "agentic"]
categories = ["database-implementations", "data-structures"]
[workspace.dependencies]
uuid = { version = "1.22.0", features = ["v4", "serde"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
thiserror = "2.0.18"
roaring = "0.11.3"
parking_lot = "0.12.5"
tracing = "0.1.44"
pest = "2.8.6"
pest_derive = "2.8.6"
rustyline = "17.0.2"
async-nats = "0.46"
tokio = { version = "1", features = ["full"] }
rmp-serde = "1"
clap = { version = "4", features = ["derive", "env"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
redb = "3"
bincode = { version = "2", features = ["serde"] }
tempfile = "3"
hnsw_rs = "0.3"
anndists = "0.1"
time = { version = "0.3", features = ["formatting", "parsing"] }
[workspace.metadata.release]
shared-version = true
tag-name = "v{{version}}"
tag-message = "v{{version}}"
pre-release-commit-message = "release: v{{version}}"
pre-release-replacements = [
{ file = "../../README.md", search = 'contextdb-engine = "[^"]+"', replace = 'contextdb-engine = "{{version}}"', min = 0 },
{ file = "../../README.md", search = 'contextdb-core = "[^"]+"', replace = 'contextdb-core = "{{version}}"', min = 0 },
{ file = "../../docs/getting-started.md", search = 'contextdb-engine = "[^"]+"', replace = 'contextdb-engine = "{{version}}"', min = 0 },
{ file = "../../docs/getting-started.md", search = 'contextdb-core = "[^"]+"', replace = 'contextdb-core = "{{version}}"', min = 0 },
]
publish = false
push = true