File: Cargo.toml

package info (click to toggle)
rustc 1.85.0%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 893,396 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,051; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (160 lines) | stat: -rw-r--r-- 3,127 bytes parent folder | download | duplicates (2)
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
149
150
151
152
153
154
155
156
157
158
159
160
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.70"
name = "jiff"
version = "0.1.13"
authors = ["Andrew Gallant <jamslam@gmail.com>"]
build = false
exclude = [
    "/.github",
    "/tmp",
]
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A date-time library that encourages you to jump into the pit of success.

This library is heavily inspired by the Temporal project.
"""
documentation = "https://docs.rs/jiff"
readme = "README.md"
keywords = [
    "date",
    "time",
    "calendar",
    "zone",
    "duration",
]
categories = [
    "date-and-time",
    "no-std",
]
license = "Unlicense OR MIT"
repository = "https://github.com/BurntSushi/jiff"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[profile.testrelease]
debug-assertions = false
inherits = "test"

[lib]
name = "jiff"
path = "src/lib.rs"

[[test]]
name = "integration"
path = "tests/lib.rs"

[dependencies.jiff-tzdb]
version = "0.1.1"
optional = true

[dependencies.log]
version = "0.4.21"
optional = true

[dependencies.serde]
version = "1.0.203"
optional = true

[dev-dependencies.anyhow]
version = "1.0.81"

[dev-dependencies.chrono]
version = "0.4.38"
features = ["serde"]

[dev-dependencies.chrono-tz]
version = "0.9.0"

[dev-dependencies.insta]
version = "1.39.0"

[dev-dependencies.quickcheck]
version = "1.0.3"
default-features = false

[dev-dependencies.serde]
version = "1.0.203"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1.0.117"

[dev-dependencies.tabwriter]
version = "1.4.0"

[dev-dependencies.time]
version = "0.3.36"
features = [
    "local-offset",
    "macros",
    "parsing",
]

[dev-dependencies.tzfile]
version = "0.1.3"

[dev-dependencies.walkdir]
version = "2.5.0"

[features]
alloc = []
default = [
    "std",
    "tz-system",
    "tzdb-zoneinfo",
]
js = [
    "dep:wasm-bindgen",
    "dep:js-sys",
]
logging = ["dep:log"]
serde = ["dep:serde"]
std = ["alloc"]
tz-system = [
    "std",
]
tzdb-bundle-always = [
    "dep:jiff-tzdb",
    "alloc",
]
tzdb-bundle-platform = [
    "dep:jiff-tzdb-platform",
    "alloc",
]
tzdb-zoneinfo = ["std"]

[target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dependencies.js-sys]
version = "0.3.50"
optional = true

[target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dependencies.wasm-bindgen]
version = "0.2.70"
optional = true

[target.'cfg(any(windows, target_family = "wasm"))'.dependencies.jiff-tzdb-platform]
version = "0.1.1"
optional = true

[target.'cfg(not(target_family = "wasm"))'.dev-dependencies.hifitime]
version = "3.9.0"