-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
15 lines (14 loc) · 926 Bytes
/
Copy pathCargo.toml
File metadata and controls
15 lines (14 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[package]
name = "thetime"
version = "0.5.6"
edition = "2021"
license = "Apache-2.0"
description = "A simple but powerful Rust library for dealing with the time, both NTP and System. Contains wrappers for functions often buried in modules. Has extensive support for unusual epochs (Windows LDAP 100ns, MacOS and MacOS CFA, SAS 4GL, WebKit and Chromium 1μs). Supports timezone conversion, and addition/subtraction of various amounts"
repository = "https://github.com/werdl/thetime"
documentation = "https://docs.rs/thetime"
categories = ["date-and-time", "localization", "network-programming"]
# obviously timezones.rs ntp.rs
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = {"version" = "0.4.31", default-features = false, features = ["clock"]} # need clock to get local times
serde = {version = "1.0.130", features = ["derive"]}