time

The most used Rust library for date and time handling. (by time-rs)

Time Alternatives

Similar projects and alternatives to time

  1. rust

    2,831 time VS rust

    Empowering everyone to build reliable and efficient software.

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. go

    2,267 time VS go

    The Go programming language

  4. rust-playground

    The Rust Playground

  5. sea-orm

    83 time VS sea-orm

    🐚 An async & dynamic ORM for Rust

  6. illumos-gate

    An open-source Unix operating system -- this is a read-only mirror of the official repository at https://code.illumos.org/plugins/gitiles/illumos-gate

  7. chrono

    24 time VS chrono

    Date and time library for Rust (by chronotope)

  8. bitvec

    17 time VS bitvec

    A crate for managing memory bit by bit

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. libs-team

    The home of the library team

  11. ouch

    13 time VS ouch

    Painless compression and decompression in the terminal

  12. crabz

    9 time VS crabz

    Like pigz, but rust

  13. uuid

    6 time VS uuid

    Generate and parse UUIDs. (by uuid-rs)

  14. binfarce

    4 time VS binfarce

    Extremely minimal parser for ELF/PE/Mach-o/ar

  15. hifitime

    2 time VS hifitime

    A high fidelity time management library in Rust

  16. bitsvec

    1 time VS bitsvec

    A bit vector with the Rust standard library's portable SIMD API.

  17. unzrip

    3 time VS unzrip

    Unzip implementation, support for parallel decompression, automatic detection encoding

  18. wyhash-rs

    wyhash fast portable non-cryptographic hashing algorithm and random number generator in Rust

  19. sea-schema

    🌿 SQL schema definition and discovery

  20. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better time alternative or higher similarity.

time discussion

Log in or Post with

time reviews and mentions

Posts with mentions or reviews of time. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-07-31.
  • Rust Just Failed an Important Test
    10 projects | news.ycombinator.com | 31 Jul 2024
    To clarify this a bit:

    1. The widely used Time crate had some code which converted to an unspecified type. The code then converted this again in a following line. Because there was only a single possible (identity) conversion, this code was a noop. Regardless this was fixed in [email protected] (released in April 9, 2024). [1]

    2. Rust 1.80 (released July 27, 2024) introduced a new trait implementations that made the second conversion now cause the first conversions to have two possible inferences. [2]

    3. Rust packages that upgraded the compiler to 1.80.0, but used a version of the time crate prior to 0.1.35 fail to build the time dependency. This is mitigated by the fact that 0.1.35 is a semver compatible update, which just requires running cargo update to use.

    [1]: https://github.com/time-rs/time/pull/671

    [2]: https://blog.rust-lang.org/2024/07/25/Rust-1.80.0.html#stabi...

    Something that would be neat to see from Rust here would be a way to measure the impact of these sorts of compiler and dependency bumps in order to reduce the blast radius of this sort of thing. Ideally being able to say "this change requires X devs to do process which cost Y minutes, so it's worth investing Z minutes to avoid / document it". I often want to make public API changes to a library I maintain, but the best tool I have for understanding who those changes will affect is often a GitHub search for code.

  • Rust: Actix-web and Daily Logging
    3 projects | dev.to | 13 Mar 2024
    // To load RUST_LOG from .env file. dotenv().ok(); /* On Ubuntu 22.10, calling UtcOffset's offset methods causes IndeterminateOffset error!! See also https://github.com/time-rs/time/pull/297 ... */ // TO_DO: 11 is the current number of hours the Australian Eastern Standard Time (AEST) // is ahead of UTC. This value need to be worked out dynamically -- if it is at all // possible on Linux!! // let guard = init_app_logger(UtcOffset::from_hms(11, 0, 0).unwrap());
  • Getaddrinfo() on glibc calls getenv(), oh boy
    10 projects | news.ycombinator.com | 16 Oct 2023
    The problem is that this effects higher languages too, because they often build on libc. And on some OSes, they don't have a choice, because the system call interface is unstable and/or undocumented).

    For example in rust, multiple time libraries were found to be unsound if `std::env::set_env` was ever called from a multi-threaded program. See:

    https://github.com/time-rs/time/issues/293 and https://github.com/chronotope/chrono/issues/499

    https://github.com/rust-lang/rust/issues/27970

    https://github.com/rust-lang/rust/issues/90308

  • The time crate has officially adopted an N-2 MSRV policy for end-user improvements and an N-4 MSRV policy for internal improvements.
    1 project | /r/rust | 1 Jul 2023
  • Simple, fast and safety alternative for unzip
    7 projects | /r/rust | 11 Mar 2023
    On that note, it would also be good to configure cargo-deny so that a CI pipeline and any maintainer can easily audit the current dependency versions. Sometimes CVEs require a new major semver (looking at you, time 0.1.x and thus chrono 0.4.x), so it's not enough to rely on people installing the tool with semver-compatible updates. Automatically auditing dependencies is really important, and given how easy cargo-deny makes it, I don't think many projects have any excuse not to configure it.
  • time: MSRV policy is changing beginning 2023-07-01 to N-2 rustc versions
    2 projects | /r/rust | 18 Dec 2022
  • Hifitime 3.5.0: time.rs and chrono alternative, only more precise, formally verified, and used in scientific and engineering programs
    2 projects | /r/rust | 16 Oct 2022
    I've come to understand that correct support for leap seconds for time computations cannot be implemented in a reliable and globally consistent manner. Here is a GitHub discussion that touches on this.
  • What's new in SeaORM 0.9.0
    6 projects | dev.to | 18 Jul 2022
    Upgrade time to 0.3
  • What lightweight date/time library to use? [2022 edition]
    1 project | /r/rust | 30 Mar 2022
    I'm not fully aware of all the history but here's what I think happened: time 0.1 was originally a minimal wrapper around libc time functions, maintained by Alex Crichton. (I seem to remember it may have been part of the std library before 1.0, but I'm not sure about that part.) In August of 2016 it was declared to no longer be actively maintained, with the README stating bugs would still get fixed.
  • What should we do about CVE-2020-26235 (localtime_r may be unsound)?
    4 projects | /r/rust | 10 Nov 2021
  • A note from our sponsor - SaaSHub
    www.saashub.com | 24 May 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic time repo stats
16
1,179
8.3
about 1 month ago

time-rs/time is an open source project licensed under Apache License 2.0 which is an OSI approved license.

The primary programming language of time is Rust.


Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com

Did you know that Rust is
the 5th most popular programming language
based on number of references?