-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
32 lines (26 loc) · 821 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
29
30
31
32
[package]
name = "iso8601"
version = "0.6.1"
authors = [
"Jan-Erik Rediger <[email protected]>",
"Hendrik Sollich <[email protected]>",
]
description = "Parsing ISO8601 dates using nom"
keywords = [ "iso8601", "date-time", "parser", "nom" ]
categories = [ "parser-implementations", "date-and-time" ]
repository = "https://github.com/badboy/iso8601"
documentation = "https://docs.rs/iso8601/"
license = "MIT"
readme = "README.md"
edition = "2021"
[dependencies]
nom = { version = "7", default-features = false }
chrono = { version = "0.4", default-features = false, optional = true }
num-traits = { version = "0.2", optional = true }
serde = { version = "1.0", optional = true }
[dev-dependencies ]
serde_json = "1.0"
[features]
default = ["std"]
std = ["nom/std"]
chrono = ["dep:chrono", "dep:num-traits"]