-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
40 lines (34 loc) · 851 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
33
34
35
36
37
38
39
40
[package]
name = "datealgo"
version = "0.2.1"
edition = "2021"
authors = ["Nuutti Kotivuori <[email protected]>"]
description = "Low-level date algorithms for libraries"
keywords = ["calendar", "date", "gregorian", "algorithm"]
categories = ["algorithms", "date-and-time", "no-std", "no-std::no-alloc"]
homepage = "https://github.com/nakedible/datealgo-rs"
repository = "https://github.com/nakedible/datealgo-rs"
license = "MIT OR Apache-2.0"
[features]
default = ["std"]
std = []
asmdump = []
[lib]
path = "src/lib.rs"
bench = false
[[bench]]
name = "compare"
harness = false
[[bench]]
name = "basic"
harness = false
[[bench]]
name = "iai"
harness = false
[dev-dependencies]
chrono = "0.4.24"
criterion = "0.5.1"
fastrand = "2.0.0"
iai-callgrind = "0.9.0"
quickcheck = "1.0.3"
time = { version = "0.3.21", features = ["quickcheck", "large-dates"] }