-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (59 loc) · 2.24 KB
/
Copy pathCargo.toml
File metadata and controls
64 lines (59 loc) · 2.24 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
64
[workspace]
resolver = "2"
members = [
"crates/demo-karpathy-loop",
"crates/symbi-invis-strip",
"crates/symbi-kloop-bench",
"crates/symbi-toolclad-bridge",
"crates/symbi-escape-bench",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.82"
authors = ["Symbiont Karpathy-Loop Demo"]
license = "Apache-2.0"
[workspace.dependencies]
# `symbi-runtime` is a path-dep on a sibling checkout. To build this
# repo, clone both repositories side-by-side:
#
# <parent>/
# symbiont/ ← https://github.com/ThirdKeyAI/symbiont
# symbiont-orga-demo/ ← this repo
#
# CI does the same dual-checkout (`.github/workflows/ci.yml`).
# Operators who want a single-clone build can swap this dep to a
# git-dep pinned to a SHA — see CONTRIBUTING.md for the exact line.
symbi-runtime = { path = "../symbiont/crates/runtime", default-features = false, features = [
"cloud-llm",
"orga-adaptive",
"cedar",
] }
# Sanitiser crate — extracted in v6 so any Symbiont-adjacent agent
# framework with a knowledge-store / long-term-memory surface can reuse
# the same forbidden-range table without copying it. v10 enables the
# `metrics` feature so the harness can drain throughput counters per
# run; the feature is opt-in at the crate level so external consumers
# of the library default to zero overhead.
symbi-invis-strip = { path = "crates/symbi-invis-strip", features = ["metrics"] }
anyhow = "1"
async-trait = "0.1"
# Pulled in so the `stream` feature activates on the reqwest used by
# symbi-runtime's SchemaPin client (which calls `bytes_stream`). Without
# this we hit an E0599 on the shared reqwest::Response type.
reqwest = { version = "0.12", features = ["json", "stream"], default-features = true }
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive"] }
futures = "0.3"
rusqlite = { version = "0.31", features = ["bundled", "chrono"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1", features = ["v4", "serde"] }
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1