rust-osdev / bootloader

An experimental pure-Rust x86 bootloader
Apache License 2.0
1.39k stars 212 forks source link

Remove dependency on `time` crate #332

Closed phil-opp closed 1 year ago

phil-opp commented 1 year ago

Version 0.1 of the time crate has a vulnerability. Apparently it does not affect the chrono crate, which is the crate that depends on time, but it's better to be safe. We don't actually need the default chrono feature of fatfs, so we can easily remove both chrono and time from our dependency tree by disabling that feature.