-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (55 loc) · 1.69 KB
/
Copy pathCargo.toml
File metadata and controls
65 lines (55 loc) · 1.69 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
65
# SPDX-License-Identifier: MPL-2.0
# SPDX-FileCopyrightText: 2025 Jonathan D.A. Jewell
[workspace]
resolver = "2"
members = [
"crates/oikosbot-cli",
"crates/oikosbot-analysis",
"crates/oikosbot-metrics",
"crates/oikosbot-pareto",
"crates/oikosbot-sarif",
"crates/oikosbot-eclexia",
"crates/oikosbot-telemetry",
"crates/oikosbot-capability",
"crates/oikosbot-dea",
]
# `oikosbot-fleet` is the OPTIONAL gitbot-fleet bridge. It is intentionally
# excluded from the default workspace so OikosBot builds standalone with no
# dependency on `hyperpolymath/gitbot-fleet`. Build it explicitly (with the
# fleet checked out as a sibling) only when wiring OikosBot into the fleet.
# See crates/oikosbot-fleet/README.md and DISAMBIGUATION.adoc.
exclude = [
"crates/oikosbot-fleet",
"fuzz",
]
[workspace.package]
version = "0.1.0"
authors = ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"]
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/hyperpolymath/oikosbot"
[workspace.dependencies]
# AST parsing
tree-sitter = "0.27.0"
tree-sitter-rust = "0.24.2"
tree-sitter-javascript = "0.25.0"
tree-sitter-python = "0.25.0"
# CLI
clap = { version = "4.5.55", features = ["derive", "cargo"] }
anyhow = "1.0.100"
thiserror = "2.0.18"
# Serialization
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
toml = "1.1.2"
# Logging
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
# Process execution (for Eclexia interpreter)
tokio = { version = "1.49.0", features = ["full"] }
# Carbon APIs
reqwest = { version = "0.12.28", features = ["json"] }
[profile.release]
lto = true
codegen-units = 1
panic = "abort"