#duration #instant #const #time

no-std fugit

Time library for embedded targets with ease-of-use and performance first

11 releases

0.3.7 Jun 6, 2023
0.3.6 Jun 23, 2022
0.3.5 Feb 14, 2022
0.3.3 Dec 25, 2021
0.1.4 Oct 31, 2021

#15 in Date and time

Download history 14797/week @ 2025-01-28 18427/week @ 2025-02-04 17343/week @ 2025-02-11 14253/week @ 2025-02-18 13333/week @ 2025-02-25 14858/week @ 2025-03-04 14465/week @ 2025-03-11 16289/week @ 2025-03-18 14507/week @ 2025-03-25 16377/week @ 2025-04-01 16945/week @ 2025-04-08 16386/week @ 2025-04-15 21674/week @ 2025-04-22 22257/week @ 2025-04-29 29235/week @ 2025-05-06 24032/week @ 2025-05-13

99,670 downloads per month
Used in 265 crates (118 directly)

MIT/Apache

150KB
2.5K SLoC

fugit

fugit provides a comprehensive library of Duration and Instant for the handling of time in embedded systems, doing all it can at compile time.

This library is a heavily inspired of std::chrono's Duration from C++ which does all it can at compile time.

Aims

  • no_std library with goals of user-friendliness and performance first
    • All methods are const fn that can be (i.e. non-trait methods)
    • Use no traits, concrete types all the way for maximum const-ification
    • Operations are supported between different bases and backing storages instead of implementing custom traits
    • All constants needed for comparing or changing timebase are guaranteed compile time generated
  • Support for both u32 and u64 backing storage with efficient instruction lowering on MCUs
    • On Cortex-M3 and up: no soft-impls pulled in for both u32 and u64 except when changing base on u64
    • Comparisons on u32 and u64 do not use division, only changing base with all constants calculated at compile time
  • Selection of base happens at compile time
    • A common problem is that run time changing of base robs us of a lot of optimization opportunities, but since there are no traits and short-hands select the correct base at compile time.

Dependencies

~160KB