Add Cargo workspace, crate skeletons and the gate

Implemented-By: Laguna S 2.1 (OpenCode)
This commit is contained in:
2026-09-17 06:45:02 -07:00
parent 3e26c2e3c0
commit 8dc04b1d48
31 changed files with 516 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
[package]
name = "inferproxy"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
publish.workspace = true
[lints]
workspace = true
[dependencies]
proto.workspace = true
+1
View File
@@ -0,0 +1 @@
//! Forwards bytes between `infer.sock` and the llama-server router. It logs nothing.
+4
View File
@@ -0,0 +1,4 @@
fn main() {
eprintln!("inferproxy: not implemented until M2");
std::process::exit(2);
}