Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cli/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
24 changes: 24 additions & 0 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Standalone crate (own `[workspace]`) so it never gets pulled into a3s-code's
# workspace — the a3s-tui path dep only resolves inside the a3s monorepo, and
# this keeps a standalone clone of AI45Lab/Code building unchanged.
[package]
name = "a3s-code"
version = "0.1.0"
edition = "2021"
description = "Codex-style terminal UI for the A3S Code agent"
license = "MIT"
default-run = "a3s-code"

[[bin]]
name = "a3s-code"
path = "src/main.rs"

[dependencies]
a3s-code-core = { path = "../core" }
a3s-tui = { path = "../../tui" }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time"] }
anyhow = "1"
serde_json = "1"
similar = "2"

[workspace]
Loading
Loading