-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 1.69 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (38 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
[workspace]
resolver = "2"
# Glob picks up the closed-source `atomcode-codingplan-crypto` overlay
# the official build pipeline drops into `crates/` (see the stub at
# `crates/atomcode-codingplan-crypto/`). Adding any future crate is also
# a no-toml-edit operation.
members = ["crates/*"]
# `atomcode-codingplan-crypto` is intentionally absent from default-members:
# the stub is wired into atomcode-core via an optional dep behind the
# `codingplan-crypto` feature, so a default `cargo build` from the
# workspace root has no reason to compile it. The official build picks
# it up explicitly via `--features atomcode-core/codingplan-crypto`.
default-members = [
"crates/atomcode-core",
"crates/atomcode-cli",
"crates/atomcode-daemon",
"crates/atomcode-telemetry",
"crates/atomcode-tuix",
]
[profile.release]
opt-level = "z" # Optimize for size
lto = true # Link-time optimization — eliminates dead code across crates
codegen-units = 1 # Single codegen unit — better optimization, slower build
strip = true # Strip symbols automatically
panic = "abort" # Remove panic unwinding code — saves ~200-500KB
[profile.test]
debug = "line-tables-only" # Smaller binaries, faster linker
[workspace.package]
version = "4.25.9"
edition = "2021"
license = "MIT"
repository = "https://github.com/lvyuan1688/atomcode"
description = "Open-source terminal AI coding agent — Rust alternative to Claude Code, bring-your-own-LLM, edits code, runs commands, verifies changes autonomously"
keywords = ["ai", "agent", "cli", "coding", "llm"]
categories = ["command-line-utilities", "development-tools"]
[workspace.dependencies]
agent-client-protocol = "=1.0.1"
anyhow = "1"