Closed twallis-geotab closed 1 year ago
Hey, thanks for the PR. Sorry it took so long to get back to working on this crate.
Ugh. This broke the examples. I had to back it out.
And the segfault isn't a big worry. The chrono dependency is only used in the example apps, not the library itself. But it might be cool to figure out an alternate way to format the time, if this is really an issue. Or push to get a fix upstream.
Running
cargo audit
in this crate reveals that there is a potential segfault intime v0.1.44
. This is caused by thechrono v0.4.19
dependency pulling intime v0.1.44
as part of its default features. This PR disables chrono's default features in dev-dependencies to get around the issue, aschrono
has not updated its owntime
dependency yet.