-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (42 loc) · 1.42 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (42 loc) · 1.42 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
# Ethos workspace — lockstep versioning (plan §9: release engineering).
# Crates for later milestones (layout, tables, rag, security, render, mcp) join members
# when their lane opens; their directories exist with README placeholders.
[workspace]
resolver = "2"
members = [
"crates/ethos-core",
"crates/ethos-pdf",
"crates/ethos-layout",
"crates/ethos-tables",
"crates/ethos-verify",
"crates/ethos-cli",
"adapters/grounding/opendataloader-json",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.87"
license = "Apache-2.0"
repository = "https://github.com/docushell/ethos"
authors = ["Ethos maintainers"]
[workspace.dependencies]
# Base-crate dependencies are restricted by deny.toml (ADR-0004): permissive licenses only,
# no network-capable crates. Additions are reviewed against that policy.
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
sha2 = "0.10"
clap = { version = "4", features = ["derive"] }
tempfile = "3"
# dev-only
proptest = "1"
# internal
ethos-core = { path = "crates/ethos-core", version = "0.1.0", default-features = false }
ethos-layout = { path = "crates/ethos-layout", version = "0.1.0" }
ethos-tables = { path = "crates/ethos-tables", version = "0.1.0" }
[profile.release]
# Footprint discipline for the G2 gate (≤ 30 MB installed): strip + LTO + size-lean codegen.
strip = "symbols"
lto = "thin"
codegen-units = 1
panic = "abort"