MCPcopy Create free account
hub / github.com/AI45Lab/Code / artifact_uris

Function artifact_uris

core/src/verification.rs:490–498  ·  view source on GitHub ↗
(metadata: Option<&serde_json::Value>)

Source from the content-addressed store, hash-verified

488}
489
490fn artifact_uris(metadata: Option<&serde_json::Value>) -> Vec<String> {
491 let mut uris = Vec::new();
492 if let Some(metadata) = metadata {
493 collect_artifact_uris(metadata, &mut uris);
494 }
495 uris.sort();
496 uris.dedup();
497 uris
498}
499
500fn collect_artifact_uris(value: &serde_json::Value, uris: &mut Vec<String>) {
501 match value {

Callers 1

check_from_executionMethod · 0.70

Calls 1

collect_artifact_urisFunction · 0.70

Tested by

no test coverage detected