logtimes/Cargo.lock

282 lines
7.6 KiB
Plaintext
Raw Permalink Normal View History

2020-07-30 10:15:18 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
2022-08-12 17:35:54 +02:00
[[package]]
name = "android_system_properties"
version = "0.1.5"
2022-08-12 17:35:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
2022-08-12 17:35:54 +02:00
dependencies = [
"libc",
]
2020-07-30 10:15:18 +02:00
[[package]]
name = "autocfg"
version = "1.1.0"
2020-07-30 10:15:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2020-07-30 10:15:18 +02:00
[[package]]
name = "bumpalo"
version = "3.15.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea184aa71bb362a1157c896979544cc23974e08fd265f29ea96b59f0b4a555b"
[[package]]
name = "cc"
version = "1.0.89"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0ba8f7aaa012f30d5b2861462f6708eccd49c3c39863fe083a308035f63d723"
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-07-30 10:15:18 +02:00
[[package]]
name = "chrono"
version = "0.4.34"
2020-07-30 10:15:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5bc015644b92d5890fab7489e49d21f879d5c990186827d42ec511919404f38b"
2020-07-30 10:15:18 +02:00
dependencies = [
"android-tzdata",
2022-08-12 17:35:54 +02:00
"iana-time-zone",
2020-07-30 10:15:18 +02:00
"num-traits",
"windows-targets",
2020-07-30 10:15:18 +02:00
]
2022-08-12 17:35:54 +02:00
[[package]]
name = "core-foundation-sys"
2023-12-31 10:42:35 +01:00
version = "0.8.6"
2022-08-12 17:35:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 10:42:35 +01:00
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
2022-08-12 17:35:54 +02:00
[[package]]
name = "iana-time-zone"
version = "0.1.60"
2022-08-12 17:35:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
2022-08-12 17:35:54 +02:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
2022-08-12 17:35:54 +02:00
"js-sys",
"wasm-bindgen",
"windows-core",
2022-08-12 17:35:54 +02:00
]
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
dependencies = [
"cc",
]
2020-07-30 10:15:18 +02:00
[[package]]
name = "js-sys"
version = "0.3.69"
2020-07-30 10:15:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
dependencies = [
"wasm-bindgen",
]
2022-08-12 17:35:54 +02:00
[[package]]
name = "libc"
version = "0.2.153"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
2022-08-12 17:35:54 +02:00
[[package]]
name = "log"
version = "0.4.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
2020-07-30 10:15:18 +02:00
[[package]]
name = "logtimes"
2024-03-05 18:57:32 +01:00
version = "1.0.6"
2020-07-30 10:15:18 +02:00
dependencies = [
"chrono",
]
[[package]]
name = "num-traits"
version = "0.2.18"
2020-07-30 10:15:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
2020-07-30 10:15:18 +02:00
dependencies = [
"autocfg",
]
[[package]]
name = "once_cell"
2023-12-31 10:42:35 +01:00
version = "1.19.0"
2020-07-30 10:15:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 10:42:35 +01:00
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
[[package]]
name = "proc-macro2"
version = "1.0.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
2020-07-30 10:15:18 +02:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
2024-01-05 22:21:21 +01:00
version = "1.0.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-05 22:21:21 +01:00
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
2023-04-05 17:50:00 +02:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "syn"
version = "2.0.52"
2023-04-05 17:50:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "unicode-ident"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
[[package]]
name = "wasm-bindgen"
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
2020-07-30 10:15:18 +02:00
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.92"
2020-07-30 10:15:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
2020-07-30 10:15:18 +02:00
[[package]]
name = "windows-core"
2023-12-31 10:42:35 +01:00
version = "0.52.0"
2023-04-05 17:50:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-31 10:42:35 +01:00
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
2023-04-05 17:50:00 +02:00
dependencies = [
"windows-targets",
2023-12-31 10:42:35 +01:00
]
[[package]]
name = "windows-targets"
version = "0.52.4"
2023-12-31 10:42:35 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
2023-12-31 10:42:35 +01:00
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
2023-04-05 17:50:00 +02:00
]
2023-12-31 10:42:35 +01:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.4"
2023-12-31 10:42:35 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
2023-12-31 10:42:35 +01:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.4"
2023-12-31 10:42:35 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
2023-12-31 10:42:35 +01:00
[[package]]
name = "windows_i686_gnu"
version = "0.52.4"
2023-12-31 10:42:35 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
2023-12-31 10:42:35 +01:00
[[package]]
name = "windows_i686_msvc"
version = "0.52.4"
2023-12-31 10:42:35 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
2023-12-31 10:42:35 +01:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.4"
2023-12-31 10:42:35 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
2023-12-31 10:42:35 +01:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.4"
2023-12-31 10:42:35 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
2023-12-31 10:42:35 +01:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.4"
2023-12-31 10:42:35 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"