Lumbridge Compute — Apache-2.0
ci / rust (push) Failing after 18s

This commit is contained in:
Karti Tripathi
2026-08-03 23:47:51 -07:00
commit a8c8532105
40 changed files with 6101 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
[package]
name = "lumbridge-compute"
description = "Lumbridge Compute — safe AI workload orchestration for accelerator nodes."
readme = "README.md"
keywords = ["dgx-spark", "gb10", "llm", "orchestration", "unified-memory"]
categories = ["command-line-utilities"]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
authors = ["Karti Tripathi"]
repository = "https://git.karti.ai/lumbridge-public/compute"
rust-version = "1.88"
[[bin]]
name = "lumbridge-compute"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1"
anyhow = "1"
libc = "0.2"
rmcp = { version = "3", features = ["server", "transport-io", "macros"] }
schemars = "1"
tokio = { version = "1", features = ["rt", "io-std", "fs", "time"] }
# Lives at the workspace root upstream; Cargo ignores [profile] in members.
[profile.release]
strip = true
lto = true