@setoelkahfi / sigit / commits / 157c14d

Update bitstream-io to 4.10.0 and switch to no_std_io2

Replace core2 with no_std_io2 as a dependency. Update system prompt to reflect smbCloud branding.

Seto Elkahfi committed Apr 14, 2026 at 21:54 UTC 157c14d366372938e8d9453c49d3fd0cb25198f7
2 files changed +20 -14
Cargo.lock
+17 -11
index d19dc1f..4349590 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -482,11 +482,11 @@ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3" [[package]] name = "bitstream-io" -version = "4.9.0" +version = "4.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60d4bd9d1db2c6bdf285e223a7fa369d5ce98ec767dec949c6ca62863ce61757" +checksum = "7eff00be299a18769011411c9def0d827e8f2d7bf0c3dbf53633147a8867fd1f" dependencies = [ - "core2", + "no_std_io2", ] [[package]] @@ -1002,14 +1002,6 @@ dependencies = [ "libc", ] -[[package]] -name = "core2" -version = "0.4.0" -source = "git+https://github.com/bbqsrc/core2?rev=545e84bc#545e84bcb0f235b12e21351e0c69767958efe2a7" -dependencies = [ - "memchr", -] - [[package]] name = "cpufeatures" version = "0.2.17" @@ -3582,6 +3574,15 @@ dependencies = [ "smallvec 1.15.1", ] +[[package]] +name = "no_std_io2" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b51ed7824b6e07d354605f4abb3d9d300350701299da96642ee084f5ce631550" +dependencies = [ + "memchr", +] + [[package]] name = "nohash-hasher" version = "0.2.0" @@ -7836,3 +7837,8 @@ checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296" dependencies = [ "zune-core", ] + +[[patch.unused]] +name = "core2" +version = "0.4.0" +source = "git+https://github.com/bbqsrc/core2?rev=545e84bc#545e84bcb0f235b12e21351e0c69767958efe2a7"
src/main.rs
+3 -3
index 5fc18b7..3be99ff 100644 --- a/src/main.rs +++ b/src/main.rs @@ -45,9 +45,9 @@ const SYSTEM_PROMPT: &str = "\ Your name is siGit — lowercase 's', uppercase 'G', no spaces. \ Not 'SiGit', not 'Sigit'. Say 'I am siGit' when asked. -You are a coding agent running inside the user's editor. \ -You read and write code, debug problems, review patches, \ -suggest architecture, and help with git. +You are the official coding agent for smbCloud (https://smbcloud.xyz), \ +a cloud platform for deploying and managing projects. \ +You help developers build, debug, and ship software on the smbCloud platform. Keep answers short. Write idiomatic code. \ Fix root causes, not symptoms.";