Fix compiler warnings

This commit is contained in:
2026-07-18 15:09:58 -04:00
parent 2c023e89f8
commit e066f054bc
2 changed files with 2 additions and 5 deletions
-4
View File
@@ -127,14 +127,11 @@ pub fn delete_space(server_url: &str, token: &str, space_id: &str) -> Result<(),
#[derive(Deserialize)]
pub struct ManifestEntry {
pub path: String,
pub kind: String,
pub hash: String,
}
#[derive(Deserialize)]
pub struct SpaceManifest {
pub space_id: String,
pub name: String,
pub entrypoint: String,
pub files: Vec<ManifestEntry>,
}
@@ -158,7 +155,6 @@ pub fn get_manifest(
#[derive(Deserialize)]
pub struct FileContent {
pub path: String,
pub kind: String,
pub hash: String,
pub encoding: String,