Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- [**breaking**] Replace the optional `chrono` feature with a `jiff` feature.
- [**breaking**] When the `jiff` feature is enabled, formatting `Time` values outside jiff's supported timestamp range now yields "∞" / "-∞" (instead of a formatted date or always "∞").
## [0.15.0](https://github.com/moia-oss/tinytime.rs/compare/v0.14.4...v0.15.0) - 2026-03-09

### Other
Expand Down
54 changes: 34 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ keywords = ["time", "tiny", "low-overhead"]
categories = ["date-and-time"]

[features]
chrono = ["dep:chrono"]
jiff = ["dep:jiff"]
rand = ["dep:rand"]
serde = ["dep:serde"]

[dependencies]
chrono = { version = "0.4.45", features = ["alloc"], default-features = false, optional = true }
jiff = { version = "0.2.28", features = ["alloc"], default-features = false, optional = true }
rand = { version = "0.10.1", features = ["thread_rng"], default-features = false, optional = true }
serde = { version = "1.0.228", features = ["derive"], default-features = false, optional = true }

Expand Down
108 changes: 0 additions & 108 deletions src/chrono.rs

This file was deleted.

Loading