()
| 10 | const RUNTIME_PACKAGE_ID: &str = "spacetimedb.runtime"; |
| 11 | |
| 12 | fn workspace_dir() -> PathBuf { |
| 13 | Path::new(env!("CARGO_MANIFEST_DIR")) |
| 14 | .ancestors() |
| 15 | .nth(2) |
| 16 | .expect("tools/regen should be two levels below the workspace root") |
| 17 | .to_path_buf() |
| 18 | } |
| 19 | |
| 20 | fn sdk_dir() -> PathBuf { |
| 21 | workspace_dir().join("sdks/csharp") |
no test coverage detected
searching dependent graphs…