chrono-lc/Cargo.toml

28 lines
705 B
TOML
Raw Normal View History

2018-12-02 13:38:33 +00:00
[package]
name = "chrono_lc"
2024-05-12 18:02:20 +01:00
version = "0.1.7"
2023-08-23 16:26:04 +01:00
edition = "2021"
2024-05-12 16:29:00 +01:00
authors = [
"Alessandro Pellizzari <alex@amiran.it>",
"Erica Marigold <hi@devcomp.xyz>",
]
2018-12-14 09:20:05 +00:00
description = "Localised date and time formatting library for Rust, based on chrono"
2023-08-23 14:02:07 +01:00
homepage = "https://github.com/0x5eal/chrono-locale"
2018-12-14 09:20:05 +00:00
readme = "README.md"
keywords = ["date", "time", "calendar"]
categories = ["date-and-time"]
license = "MIT/Apache-2.0"
2023-08-23 14:02:07 +01:00
repository = "https://github.com/0x5eal/chrono-locale"
build = "build.rs"
2018-12-02 13:38:33 +00:00
[dependencies]
2023-09-19 06:57:33 +01:00
chrono = "0.4"
2018-12-02 13:38:33 +00:00
num-integer = { version = "0.1", default-features = false }
2018-12-02 16:30:21 +00:00
lazy_static = "1.2"
[build-dependencies]
2023-09-06 08:38:13 +01:00
serde = "1.0.188"
2018-12-02 16:30:21 +00:00
serde_json = "1"
2023-09-06 08:38:13 +01:00
serde_derive = "1.0.188"
walkdir = "2.4.0"