1
0
mirror of https://github.com/osmarks/osmarkscalculator.git synced 2024-10-30 03:26:16 +00:00
osmarkscalculator/Cargo.lock

214 lines
5.7 KiB
Plaintext
Raw Normal View History

2022-11-10 17:31:44 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "anyhow"
2024-08-04 14:46:06 +00:00
version = "1.0.86"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
2022-11-10 17:31:44 +00:00
[[package]]
2023-11-28 16:47:17 +00:00
name = "bumpalo"
2024-08-04 14:46:06 +00:00
version = "3.16.0"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
2023-11-28 16:47:17 +00:00
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2022-11-10 17:31:44 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
2023-11-28 16:47:17 +00:00
name = "either"
2024-08-04 14:46:06 +00:00
version = "1.13.0"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
2022-11-10 17:31:44 +00:00
[[package]]
2023-11-28 16:47:17 +00:00
name = "inlinable_string"
2024-08-04 14:46:06 +00:00
version = "0.1.15"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "c8fae54786f62fb2918dcfae3d568594e50eb9b5c25bf04371af6fe7516452fb"
2022-11-10 17:31:44 +00:00
[[package]]
2023-11-28 16:47:17 +00:00
name = "itertools"
2024-08-04 14:46:06 +00:00
version = "0.10.5"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2022-11-10 17:31:44 +00:00
dependencies = [
2023-11-28 16:47:17 +00:00
"either",
2022-11-10 17:31:44 +00:00
]
[[package]]
2023-11-28 16:47:17 +00:00
name = "libc"
2024-08-04 14:46:06 +00:00
version = "0.2.155"
2023-11-28 16:47:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
2023-11-28 16:47:17 +00:00
[[package]]
name = "log"
2024-08-04 14:46:06 +00:00
version = "0.4.22"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
2022-11-10 17:31:44 +00:00
[[package]]
2023-11-28 16:47:17 +00:00
name = "memory_units"
version = "0.4.0"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-28 16:47:17 +00:00
checksum = "8452105ba047068f40ff7093dd1d9da90898e63dd61736462e9cdda6a90ad3c3"
2022-11-10 17:31:44 +00:00
[[package]]
2023-11-28 16:47:17 +00:00
name = "once_cell"
2024-08-04 14:46:06 +00:00
version = "1.19.0"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2023-11-28 16:47:17 +00:00
[[package]]
name = "osmarkscalculator"
version = "0.1.0"
2022-11-10 17:31:44 +00:00
dependencies = [
2023-11-28 16:47:17 +00:00
"anyhow",
"inlinable_string",
"itertools",
2024-08-04 14:46:06 +00:00
"seahash",
2023-11-28 16:47:17 +00:00
"wasm-bindgen",
"wee_alloc",
2022-11-10 17:31:44 +00:00
]
[[package]]
2023-11-28 16:47:17 +00:00
name = "proc-macro2"
2024-08-04 14:46:06 +00:00
version = "1.0.86"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
2023-11-28 16:47:17 +00:00
dependencies = [
"unicode-ident",
]
2022-11-10 17:31:44 +00:00
[[package]]
2023-11-28 16:47:17 +00:00
name = "quote"
2024-08-04 14:46:06 +00:00
version = "1.0.36"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
2022-11-10 17:31:44 +00:00
dependencies = [
2023-11-28 16:47:17 +00:00
"proc-macro2",
2022-11-10 17:31:44 +00:00
]
2024-08-04 14:46:06 +00:00
[[package]]
name = "seahash"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
2022-11-10 17:31:44 +00:00
[[package]]
2023-11-28 16:47:17 +00:00
name = "syn"
2024-08-04 14:46:06 +00:00
version = "2.0.72"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
2023-11-28 16:47:17 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2022-11-10 17:31:44 +00:00
[[package]]
2023-11-28 16:47:17 +00:00
name = "unicode-ident"
2024-08-04 14:46:06 +00:00
version = "1.0.12"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2022-11-10 17:31:44 +00:00
[[package]]
2023-11-28 16:47:17 +00:00
name = "wasm-bindgen"
2024-08-04 14:46:06 +00:00
version = "0.2.92"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
2022-11-10 17:31:44 +00:00
dependencies = [
2023-11-28 16:47:17 +00:00
"cfg-if 1.0.0",
"wasm-bindgen-macro",
2022-11-10 17:31:44 +00:00
]
[[package]]
2023-11-28 16:47:17 +00:00
name = "wasm-bindgen-backend"
2024-08-04 14:46:06 +00:00
version = "0.2.92"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
2022-11-10 17:31:44 +00:00
dependencies = [
2023-11-28 16:47:17 +00:00
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
2022-11-10 17:31:44 +00:00
]
[[package]]
2023-11-28 16:47:17 +00:00
name = "wasm-bindgen-macro"
2024-08-04 14:46:06 +00:00
version = "0.2.92"
2023-11-28 16:47:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
2022-11-10 17:31:44 +00:00
dependencies = [
2023-11-28 16:47:17 +00:00
"quote",
"wasm-bindgen-macro-support",
2022-11-10 17:31:44 +00:00
]
[[package]]
2023-11-28 16:47:17 +00:00
name = "wasm-bindgen-macro-support"
2024-08-04 14:46:06 +00:00
version = "0.2.92"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
2022-11-10 17:31:44 +00:00
dependencies = [
2023-11-28 16:47:17 +00:00
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2024-08-04 14:46:06 +00:00
version = "0.2.92"
2023-11-28 16:47:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-04 14:46:06 +00:00
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
2023-11-28 16:47:17 +00:00
[[package]]
name = "wee_alloc"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbb3b5a6b2bb17cb6ad44a2e68a43e8d2722c997da10e928665c72ec6c0a0b8e"
dependencies = [
"cfg-if 0.1.10",
"libc",
"memory_units",
"winapi",
2022-11-10 17:31:44 +00:00
]
[[package]]
2023-11-28 16:47:17 +00:00
name = "winapi"
version = "0.3.9"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-28 16:47:17 +00:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2022-11-10 17:31:44 +00:00
dependencies = [
2023-11-28 16:47:17 +00:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2022-11-10 17:31:44 +00:00
]
[[package]]
2023-11-28 16:47:17 +00:00
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
2022-11-10 17:31:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-28 16:47:17 +00:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"