-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (53 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
63 lines (53 loc) · 1.47 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]
resolver = "2"
members = [
"crates/agentic-connect",
"crates/agentic-connect-mcp",
"crates/agentic-connect-cli",
"crates/agentic-connect-ffi",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/agentralabs/agentic-connect"
homepage = "https://agentralabs.tech"
authors = ["Agentra Labs <contact@agentralabs.tech>"]
[workspace.dependencies]
# Core
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.35", features = ["full"] }
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "1.0"
anyhow = "1.0"
uuid = { version = "1.6", features = ["v4", "serde"] }
url = "2"
tempfile = "3"
# File format
lz4_flex = "0.11"
blake3 = "1"
memmap2 = "0.9"
# HTTP/API
reqwest = { version = "0.12", features = ["json", "multipart", "cookies", "rustls-tls"] }
# Crypto (credential vault)
ring = "0.17"
# Database
rusqlite = { version = "0.31", features = ["bundled"] }
# Sibling SDK
agentic-sdk = { version = "0.2.0", path = "../agentic-sdk" }
# Internal crates
agentic-connect = { version = "0.1.0", path = "crates/agentic-connect" }
agentic-connect-mcp = { version = "0.1.0", path = "crates/agentic-connect-mcp" }
[profile.dev]
codegen-units = 16
debug = 1
split-debuginfo = "unpacked"
incremental = true
[profile.test]
codegen-units = 16
debug = 1
split-debuginfo = "unpacked"
incremental = true