Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Commit

Permalink
Make datastream size a 64bit value for large files
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelgbanks committed Jun 17, 2021
1 parent 9abb1eb commit 50121ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/foxml/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ pub struct FoxmlDatastreamVersion {
#[serde(rename = "MIMETYPE")]
pub mime_type: String,
#[serde(rename = "SIZE")]
pub size: Option<i32>,
pub size: Option<i64>,
#[serde(rename = "FORMAT_URI")]
pub format: Option<String>,
#[serde(rename = "$value")]
Expand Down

0 comments on commit 50121ea

Please sign in to comment.