Skip to content

Commit 88642ee

Browse files
committed
v0.1.0 — Initial release
1 parent 3ca0aa6 commit 88642ee

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "julian"
3-
version = "0.1.0-dev"
3+
version = "0.1.0"
44
edition = "2021"
55
rust-version = "1.66"
66
description = "Convert between Julian day numbers and Julian & Gregorian calendars"
77
authors = ["John Thorvald Wodder II <julian-rs@varonathe.org>"]
88
repository = "https://github.com/jwodder/julian-rs"
99
license = "MIT"
10-
keywords = ["calendar", "Gregorian calendar", "Julian calendar", "Julian day"]
10+
keywords = ["calendar", "gregorian-calendar", "julian-calendar", "julian-day"]
1111
categories = ["date-and-time"]
1212
exclude = ["/.*"]
1313

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
[![Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip) <!-- [![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) -->
1+
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
22
[![CI Status](https://github.com/jwodder/julian-rs/actions/workflows/test.yml/badge.svg)](https://github.com/jwodder/julian-rs/actions/workflows/test.yml)
33
[![codecov.io](https://codecov.io/gh/jwodder/julian-rs/branch/master/graph/badge.svg)](https://codecov.io/gh/jwodder/julian-rs)
44
[![MIT License](https://img.shields.io/github/license/jwodder/julian-rs.svg)](https://opensource.org/licenses/MIT)
55

6-
[GitHub](https://github.com/jwodder/julian-rs) <!-- | [crates.io](https://crates.io/crates/julian) | [Documentation](https://docs.rs/julian) --> | [Issues](https://github.com/jwodder/julian-rs/issues)
6+
[GitHub](https://github.com/jwodder/julian-rs) | [crates.io](https://crates.io/crates/julian) | [Documentation](https://docs.rs/julian) | [Issues](https://github.com/jwodder/julian-rs/issues)
77

88
`julian` is a Rust library for converting between [Julian day numbers][] and
99
dates in the [Gregorian calendar][] (either proleptic or with the Reformation
@@ -16,6 +16,18 @@ of your choice.
1616
[Gregorian calendar]: https://en.wikipedia.org/wiki/Gregorian_calendar
1717
[Julian calendar]: https://en.wikipedia.org/wiki/Julian_calendar
1818

19+
20+
Installation
21+
============
22+
23+
`julian` requires version 1.66 of Rust or higher. To use the `julian` library
24+
in your Cargo project, add the following to your `Cargo.toml`:
25+
26+
```toml
27+
[dependencies]
28+
julian = "0.1.0"
29+
```
30+
1931
Examples
2032
========
2133

0 commit comments

Comments
 (0)