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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
[]
= "jiff"
= "0.1.14" #:version
= ["Andrew Gallant <jamslam@gmail.com>"]
= "Unlicense OR MIT"
= "https://github.com/BurntSushi/jiff"
= "https://docs.rs/jiff"
= '''
A date-time library that encourages you to jump into the pit of success.
This library is heavily inspired by the Temporal project.
'''
= ["date-and-time", "no-std"]
= ["date", "time", "calendar", "zone", "duration"]
= "2021"
= ["/.github", "/tmp"]
= false
= false
= "1.70"
[]
= [
"jiff-cli",
"jiff-tzdb",
"jiff-tzdb-platform",
"examples/*",
]
# Features are documented in the "Crate features" section of the crate docs:
# https://docs.rs/jiff/*/#crate-features
[]
= ["std", "tz-system", "tzdb-bundle-platform", "tzdb-zoneinfo"]
= ["alloc"]
= []
= ["dep:serde"]
= ["dep:log"]
# When enabled, Jiff will include code that attempts to determine the "system"
# time zone. For example, on Unix systems, this is usually determined by
# looking at the symlink information on /etc/localtime. But in general, it's
# very platform specific and heuristic oriented. On some platforms, this may
# require extra dependencies. (For example, `windows-sys` on Windows.)
= ["std", "dep:windows-sys"]
# This conditionally bundles tzdb into the binary depending on which platform
# Jiff is being built for.
= ["dep:jiff-tzdb-platform", "alloc"]
# This forces the jiff-tzdb crate to be included. If tzdb-zoneinfo is enabled,
# then the system tzdb will take priority over the bundled database.
= ["dep:jiff-tzdb", "alloc"]
# This enables the system or "zoneinfo" time zone database. This is the
# database that is typically found at /usr/share/zoneinfo on macOS and Linux.
= ["std"]
# This enables bindings to web browser APIs for retrieving the current time
# and configured time zone. This ONLY applies on wasm32-unknown-unknown and
# wasm64-unknown-unknown targets. Specifically, *not* on wasm32-wasi or
# wasm32-unknown-emscripten targets.
#
# This is an "ecosystem" compromise due to the fact that there is no general
# way to determine at compile time whether a wasm target is intended for use
# on the "web." In practice, only wasm{32,64}-unknown-unknown targets are used
# on the web, but wasm{32,64}-unknown-unknown targets can be used in non-web
# contexts as well. Thus, the `js` feature should be enabled only by binaries,
# tests or benchmarks when it is *known* that the application will be used in a
# web context.
#
# Libraries that depend on Jiff should not need to define their own `js`
# feature just to forward it to Jiff. Instead, application authors can depend
# on Jiff directly and enable the `js` feature themselves.
#
# (This is the same dependency setup that the `getrandom` crate uses.)
= ["dep:wasm-bindgen", "dep:js-sys"]
[]
= { = "0.1.1", = "jiff-tzdb", = true }
= { = "0.4.21", = true }
= { = "1.0.203", = true }
# Note that the `cfg` gate for the `tzdb-bundle-platform` must repeat the
# target gate on this dependency. The intent is that `tzdb-bundle-platform`
# is enabled by default, but that the `tzdb-bundle-platform` crate is only
# actually used on platforms without a system tzdb (i.e., Windows and wasm).
[]
= { = "0.1.1", = "jiff-tzdb-platform", = true }
[]
= ">=0.52.0, <=0.59.*"
= false
= ["Win32_Foundation", "Win32_System_Time"]
= true
[]
= { = "0.3.50", = true }
= { = "0.2.70", = true }
[]
= "1.0.81"
= { = "0.4.38", = ["serde"] }
= "0.9.0"
# This adds approximately 50 new compilation units when running `cargo test`
# locally on Unix. Blech.
= { = "1.5.0", = ["std"] }
= "1.39.0"
# We force `serde` to be enabled in dev mode so that the docs render and test
# correctly. This is highly suspicious.
= { = "./", = ["serde"] }
= { = "1.0.3", = false }
= { = "1.0.203", = ["derive"] }
= "1.0.117"
= "1.4.0"
= { = "0.3.36", = ["local-offset", "macros", "parsing"] }
= "0.1.3"
= "2.5.0"
# hifitime doesn't build on wasm for some reason, so exclude it there.
[]
= "3.9.0"
[[]]
= "tests/lib.rs"
= "integration"
# This is just like the default 'test' profile, but debug_assertions are
# disabled. This is important to cover for Jiff because we do a lot of extra
# work in our internal ranged integer types when debug_assertions are enabled.
# It also makes types fatter. It's very useful for catching overflow bugs.
# But since there's a fair bit of logic there, it's also worth running tests
# without debug_assertions enabled to exercise the *actual* code paths used
# in production.
[]
= "test"
= false
[]
# We want to document all features.
= true
# Since this crate's feature setup is pretty complicated, it is worth opting
# into a nightly unstable option to show the features that need to be enabled
# for public API items. To do that, we set 'docsrs', and when that's enabled,
# we enable the 'doc_auto_cfg' feature.
#
# To test this locally, run:
#
# RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --all-features
= ["--cfg", "docsrs"]