pydantic / speedate

Fast and simple datetime, date, time and duration parsing for rust.
https://docs.rs/speedate/latest/speedate/
MIT License
199 stars 17 forks source link

should support RFC3399Nano #18

Closed zhuxiujia closed 2 years ago

zhuxiujia commented 2 years ago

RFC3399Nano = 2000-02-29T01:01:50.999999999

samuelcolvin commented 2 years ago

Problem is that speedate is primarily built to parse temporal values for pydantic-core which in the end needs to create python datetime objects etc.

Python datetimes are limited to microsecond resolution.