Skip to repository content21 lines · 703 B · rust
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T00:51:45.715Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
build.rs
1fn main() {
2 let cargo_manifest_dir = std::env::var("CARGO_MANIFEST_DIR").unwrap();
3 let mut path = std::path::PathBuf::from(&cargo_manifest_dir);
4
5 if path.file_name().as_ref().and_then(|name| name.to_str()) != Some("inspector_ui") {
6 panic!(
7 "expected CARGO_MANIFEST_DIR to end with crates/inspector_ui, but got {cargo_manifest_dir}"
8 );
9 }
10 path.pop();
11
12 if path.file_name().as_ref().and_then(|name| name.to_str()) != Some("crates") {
13 panic!(
14 "expected CARGO_MANIFEST_DIR to end with crates/inspector_ui, but got {cargo_manifest_dir}"
15 );
16 }
17 path.pop();
18
19 println!("cargo:rustc-env=ZED_REPO_DIR={}", path.display());
20}
21