Add docker support for rust integration

This commit is contained in:
2026-04-03 12:31:11 +08:00
parent 4c30efd802
commit 72ddd9822c
5 changed files with 16 additions and 7 deletions

View File

@@ -125,7 +125,7 @@ pub fn delete_index_entry(py: Python<'_>, path: &str, entry_name: &str) -> PyRes
fs::write(&path_owned, serialized)
.map_err(|e| PyIOError::new_err(format!("Failed to write index: {}", e)))?;
Ok(false)
Ok(true)
})
}