-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
32 lines (25 loc) · 1020 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 = "chinese-lunisolar-calendar"
version = "0.2.0"
authors = ["Magic Len <[email protected]>"]
edition = "2021"
rust-version = "1.67"
repository = "https://github.com/magiclen/chinese-lunisolar-calendar"
homepage = "https://magiclen.org/chinese-lunisolar-calendar"
keywords = ["chinese", "calendar", "lunar", "leap", "solar"]
categories = ["no-std", "localization", "date-and-time"]
description = "The traditional Chinese Calendar, known as 農曆 or 陰曆 in Chinese, is based on the moon, and is commonly referred to as the Lunar Calendar."
license = "MIT"
include = ["src/**/*", "Cargo.toml", "README.md", "LICENSE"]
[dependencies]
chrono = { version = "0.4", default-features = false, features = ["clock"] }
year-helper = "0.2"
chinese-variant = "1"
enum-ordinalize = { version = "4.2", default-features = false, features = ["derive", "traits"] }
[features]
default = ["std"]
std = ["chrono/std"]
ba-zi-weight = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]