This project was created after discovering a security vulnerability exists (found using cargo audit
) in the commonly used chrono cargo crate as of the then current version 0.4.24
. The only actual functionality we wanted at the time was to be able to get a time stamp of the current date and time in UTC for the purposes of saving to a SurrealDB database, and the ability to format our time stamps when displaying in various UI applications.
Update your Cargo.toml
file to add the stoicdreams_timestamp
crate as a dependency.
```toml [package] name = "nameofyour_app" version = "0.1.0" edition = "2021"
[dependencies] stoicdreams_timestamp = "0.1.0" ```
Use prelude for simple access to all structs and methods.
rust
use stoicdreams_timestamp::prelude::*;
Crate | Install Command | Example Run Command --- | --- | --- rustfmt | rustup component add rustfmt | cargo fmt clippy | rustup component add clippy | cargo clippy cargo-audit | cargo install cargo-audit | cargo audit
Erik Gassler - Stoic Dreams - Just a simpleton who likes making stuff with bits and bytes.
Support - Visit Stoic Dreams' GitHub Sponsor page if you would like to provide support to Stoic Dreams.