-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (22 loc) · 846 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 = "dateless"
version = "0.3.1"
authors = ["v1olen <[email protected]>"]
edition = "2018"
description = "Events & calendar library for Rust"
license = "Apache-2.0"
repository = "https://gitlab.com/v1olen/dateless"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4.19", features = ["serde"] }
optfield = "0.2.0"
serde = { optional = true, version = "1.0.125", features = ["derive"] }
typetag = { optional = true, version = "0.1.7" }
uuid = { version = "0.8", features = ["serde", "v4"] }
[target.'cfg(feature = "serde_support")'.dependencies]
chrono = { optional = true, version = "0.4.19", features = ["serde"] }
[features]
default = ["serde_support"]
serde_support = ["serde", "chrono", "typetag"]
[dev-dependencies]
serde_json = "1.0.64"