feat(grid-agent): add portable control plane (#126)
Some checks failed
CI / rust-skia (Rust only) (push) Successful in 2m44s
CI / required (push) Failing after 2m43s

This commit is contained in:
2026-08-18 04:29:12 +00:00
parent 058ed10005
commit 962d17257d
16 changed files with 4023 additions and 31 deletions

View File

@@ -2,14 +2,16 @@ use std::collections::BTreeSet;
use std::fs;
use std::path::{Path, PathBuf};
const ALLOWED_DEPENDENCIES: [&str; 8] = [
const ALLOWED_DEPENDENCIES: [&str; 10] = [
"libremetaverse",
"libremetaverse-types",
"reqwest",
"rustls",
"serde",
"serde_json",
"sha2",
"tokio",
"tokio-rustls",
"url",
];
@@ -46,7 +48,7 @@ fn runtime_source_has_no_subprocess_or_native_abi_escape_hatch() {
let mut files = Vec::with_capacity(20);
collect_rust_files(&source, &mut files);
assert!(
files.len() <= 20,
files.len() <= 24,
"source-file count needs a reviewed bound update"
);
for path in files {