-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
28 lines (24 loc) · 934 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "libtzfile"
version = "3.1.1"
authors = ["Nicolas BAUW <nbauw@hotmail.com>"]
description = "This library provides low and high level parsing of the IANA system timezone information files (TZIF)."
keywords = ["timezone", "tzfiles", "TZIF", "json", "IANA"]
categories = ["date-and-time", "parsing", "no-std"]
edition = "2021"
license = "MIT"
repository = "https://github.com/nicolasbauw/rs-tzfile"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
byteorder = { version = "1", default-features = false }
chrono = { version = "0.4.37", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
[features]
default = ["std"]
json = ["serde", "serde_json", "chrono/serde", "chrono"]
parse = ["chrono"]
std = []
[package.metadata.docs.rs]
features = ["json"]