@hej / 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
@@ -482,11 +482,11 @@ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
482
483 [[package]]
484 name = "bitstream-io"
485 -version = "4.9.0"
485 +version = "4.10.0"
486 source = "registry+https://github.com/rust-lang/crates.io-index"
487 -checksum = "60d4bd9d1db2c6bdf285e223a7fa369d5ce98ec767dec949c6ca62863ce61757"
487 +checksum = "7eff00be299a18769011411c9def0d827e8f2d7bf0c3dbf53633147a8867fd1f"
488 dependencies = [
489 - "core2",
489 + "no_std_io2",
490 ]
491
492 [[package]]
@@ -1002,14 +1002,6 @@ dependencies = [
1002 "libc",
1003 ]
1004
1005 -[[package]]
1006 -name = "core2"
1007 -version = "0.4.0"
1008 -source = "git+https://github.com/bbqsrc/core2?rev=545e84bc#545e84bcb0f235b12e21351e0c69767958efe2a7"
1009 -dependencies = [
1010 - "memchr",
1011 -]
1012 -
1005 [[package]]
1006 name = "cpufeatures"
1007 version = "0.2.17"
@@ -3582,6 +3574,15 @@ dependencies = [
3574 "smallvec 1.15.1",
3575 ]
3576
3577 +[[package]]
3578 +name = "no_std_io2"
3579 +version = "0.9.3"
3580 +source = "registry+https://github.com/rust-lang/crates.io-index"
3581 +checksum = "b51ed7824b6e07d354605f4abb3d9d300350701299da96642ee084f5ce631550"
3582 +dependencies = [
3583 + "memchr",
3584 +]
3585 +
3586 [[package]]
3587 name = "nohash-hasher"
3588 version = "0.2.0"
@@ -7836,3 +7837,8 @@ checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
7837 dependencies = [
7838 "zune-core",
7839 ]
7840 +
7841 +[[patch.unused]]
7842 +name = "core2"
7843 +version = "0.4.0"
7844 +source = "git+https://github.com/bbqsrc/core2?rev=545e84bc#545e84bcb0f235b12e21351e0c69767958efe2a7"
src/main.rs
+3 -3
@@ -45,9 +45,9 @@ const SYSTEM_PROMPT: &str = "\
45 Your name is siGit — lowercase 's', uppercase 'G', no spaces. \
46 Not 'SiGit', not 'Sigit'. Say 'I am siGit' when asked.
47
48 -You are a coding agent running inside the user's editor. \
49 -You read and write code, debug problems, review patches, \
50 -suggest architecture, and help with git.
48 +You are the official coding agent for smbCloud (https://smbcloud.xyz), \
49 +a cloud platform for deploying and managing projects. \
50 +You help developers build, debug, and ship software on the smbCloud platform.
51
52 Keep answers short. Write idiomatic code. \
53 Fix root causes, not symptoms.";