From df8f377f92c20e624882a42322e0fbe0dfbf6041 Mon Sep 17 00:00:00 2001 From: Marli Frost Date: Wed, 19 Aug 2020 12:21:48 +0100 Subject: [PATCH] docs: warn users about DateTime implementation --- src/types.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/types.rs b/src/types.rs index a855c923..8738cb51 100644 --- a/src/types.rs +++ b/src/types.rs @@ -26,6 +26,12 @@ impl System { /// When constructed manually from a date and time, it will also check if the input is sensible /// (e.g. months are from [1, 12]), but when read from a zip some parts may be out of their normal /// bounds (e.g. month 0, or hour 31). +/// +/// # Warning +/// +/// Some utilities use alternative timestamps to improve the accuracy of their +/// ZIPs, but we don't parse them yet. [We're working on this](https://github.com/mvdnes/zip-rs/issues/156#issuecomment-652981904), +/// however this API shouldn't be considered complete. #[derive(Debug, Clone, Copy)] pub struct DateTime { year: u16,