-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (40 loc) · 1.09 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "packedtime-rs"
description = "Utilities for efficiently storing, parsing, formatting and truncating timestamps"
authors = ["Jörn Horstmann <[email protected]>"]
version = "0.3.1"
edition = "2021"
repository = "https://github.com/jhorstmann/packedtime-rs"
# contains date conversion code ported from
# https://github.com/ThreeTen/threetenbp/blob/master/src/main/java/org/threeten/bp/LocalDate.java
# the orignal java code is under BSD license
license = "Apache-2.0 OR BSD-3-Clause"
categories = ["date-and-time", "value-formatting"]
keywords = ["date", "time", "simd"]
exclude = [".github", ".cargo", "rust-toolchain"]
[profile.release]
opt-level = 3
lto = "fat"
debug = 2
[features]
default = []
expensive_tests = []
[dependencies]
[dev-dependencies]
criterion = "0.3"
chrono = "0.4.19"
chronoutil = "0.2.3"
time = {version = "0.3.11", features = ["parsing", "formatting"]}
rand = "0.8"
[[bench]]
name = "bench_format"
harness = false
[[bench]]
name = "bench_parse"
harness = false
[[bench]]
name = "bench_date_trunc"
harness = false
[[bench]]
name = "bench_date_add"
harness = false