2014-07-12 14:41:22 +00:00
|
|
|
[package]
|
|
|
|
name = "chrono"
|
2017-02-06 20:38:38 +00:00
|
|
|
version = "0.3.0"
|
2014-07-12 14:41:22 +00:00
|
|
|
authors = ["Kang Seonghoon <public+rust@mearie.org>"]
|
|
|
|
|
2014-11-19 01:59:32 +00:00
|
|
|
description = "Date and time library for Rust"
|
2017-02-05 20:49:32 +00:00
|
|
|
homepage = "https://github.com/chronotope/chrono"
|
|
|
|
documentation = "https://docs.rs/chrono/"
|
|
|
|
repository = "https://github.com/chronotope/chrono"
|
2014-12-17 01:28:14 +00:00
|
|
|
keywords = ["date", "time", "calendar"]
|
2017-02-05 19:38:09 +00:00
|
|
|
categories = ["date-and-time"]
|
2014-11-19 01:59:32 +00:00
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
|
2017-02-05 20:49:32 +00:00
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "chronotope/chrono" }
|
|
|
|
appveyor = { repository = "chronotope/chrono" }
|
|
|
|
|
2014-11-19 01:59:32 +00:00
|
|
|
[lib]
|
|
|
|
name = "chrono"
|
2014-10-10 06:01:31 +00:00
|
|
|
|
2014-12-25 07:46:00 +00:00
|
|
|
[dependencies]
|
2017-02-06 20:38:38 +00:00
|
|
|
time = "^0.1.36"
|
2016-01-09 17:29:15 +00:00
|
|
|
num = { version = "0.1", default-features = false }
|
2015-04-28 09:42:18 +00:00
|
|
|
rustc-serialize = { version = "0.3", optional = true }
|
2017-04-21 11:12:26 +00:00
|
|
|
serde = { version = "1", optional = true }
|
2015-04-28 17:08:32 +00:00
|
|
|
|
2015-11-09 14:26:36 +00:00
|
|
|
[dev-dependencies]
|
2017-04-21 11:12:26 +00:00
|
|
|
serde_json = { version = "1" }
|
|
|
|
bincode = { version = "0.7.0", features = ["serde"], default-features = false, git = "https://github.com/TyOverby/bincode.git" }
|