diff --git a/src/storage/file.rs b/src/storage/file.rs index bfa147af..86faca14 100644 --- a/src/storage/file.rs +++ b/src/storage/file.rs @@ -10,9 +10,9 @@ pub enum FileHeaderSpec { UInteger, Float, Text, - Key { name: String, value_type: Box }, + Key { name: &'static str, value_type: Box }, Map { keys: Vec }, - Array { allowed_types: Box> }, + Array { allowed_types: Vec }, } #[derive(Debug)]