| 1 | [package] |
| 2 | name = "sigit" |
| 3 | version = "1.0.4" |
| 4 | edition = "2024" |
| 5 | description = "siGit Code — ACP-compatible AI coding agent. Sí, git." |
| 6 | documentation = "https://github.com/getsigit/sigit" |
| 7 | license = "Apache-2.0" |
| 8 | repository = "https://github.com/getsigit/sigit" |
| 9 | homepage = "https://sigit.si" |
| 10 | readme = "README.md" |
| 11 | keywords = ["sigit", "cli", "ai", "coding-agent", "llm"] |
| 12 | categories = ["command-line-utilities"] |
| 13 | authors = ["Seto Elkahfi <seto@ondeinference.com>"] |
| 14 | |
| 15 | [[bin]] |
| 16 | name = "sigit" |
| 17 | path = "src/main.rs" |
| 18 | |
| 19 | [dependencies] |
| 20 | # ACP protocol SDK |
| 21 | agent-client-protocol = { version = "0.10.4", features = ["unstable_session_fork", "unstable_session_additional_directories"] } |
| 22 | |
| 23 | # Onde Inference engine (local LLM) |
| 24 | # onde = { path = "../onde" } |
| 25 | onde = "1.1.2" |
| 26 | |
| 27 | # Async runtime |
| 28 | async-trait = "0.1" |
| 29 | tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros", "io-std", "io-util", "sync", "time"] } |
| 30 | tokio-util = { version = "0.7", features = ["compat"] } |
| 31 | futures = "0.3" |
| 32 | |
| 33 | # TUI (interactive chat mode) |
| 34 | ratatui = "0.29" |
| 35 | crossterm = { version = "0.29", features = ["event-stream"] } |
| 36 | |
| 37 | # Utilities |
| 38 | anyhow = "1" |
| 39 | libc = "0.2" |
| 40 | log = "0.4" |
| 41 | tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] } |
| 42 | serde_json = "1" |
| 43 | regex = "1" |
| 44 | reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls"] } |
| 45 | uuid = { version = "1", features = ["v4"] } |