-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (41 loc) · 1.45 KB
/
Copy pathCargo.toml
File metadata and controls
43 lines (41 loc) · 1.45 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
[workspace]
resolver = "3"
members = [
"contextgraph-types",
"contextgraph-host",
"contextgraph-conformance",
"contextgraph-trace",
"contextgraph-refprov",
"contextgraph-ripgrep",
"contextgraph-treesitter",
"contextgraph-mcp-bridge",
"contextgraph-mcp-server",
]
[workspace.package]
version = "2.0.0"
edition = "2024"
rust-version = "1.90"
license = "MIT OR Apache-2.0"
repository = "https://github.com/macanderson/context-graph-protocol"
homepage = "https://contextgraphprotocol.org"
# Default: crates opt IN to publishing. The four published Context Graph Protocol
# crates (types, host, conformance, trace) each set `publish = true`; any future
# internal/helper crate stays unpublished by default.
publish = false
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "process", "fs", "io-util", "sync"] }
async-trait = "0.1"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] }
futures-util = "0.3"
sha2 = "0.10"
ed25519-dalek = "2"
# RFC 8785 (JCS) canonicalization, used by the record layer's `record_hash` and
# by the conformance suite's golden vectors. One pin here so the library and the
# suite that checks it can never canonicalize with two different versions.
serde_json_canonicalizer = "0.3.2"
clap ={ version = "4", features = ["derive", "env"] }
colored = "3"
libc = "0.2"