kv/Cargo.lock

189 lines
4.7 KiB
Plaintext
Raw Permalink Normal View History

2021-03-13 10:11:40 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2023-09-29 06:34:22 +00:00
version = 3
2021-03-18 09:53:39 +00:00
[[package]]
2023-09-29 06:34:22 +00:00
name = "bumpalo"
version = "3.14.0"
2021-03-18 09:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
2021-03-18 09:53:39 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "console_error_panic_hook"
2023-09-29 06:34:22 +00:00
version = "0.1.7"
2021-03-18 09:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
2021-03-18 09:53:39 +00:00
dependencies = [
2023-09-29 06:34:22 +00:00
"cfg-if",
2021-03-18 09:53:39 +00:00
"wasm-bindgen",
]
[[package]]
name = "console_log"
2023-09-29 06:34:22 +00:00
version = "1.0.0"
2021-03-18 09:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "be8aed40e4edbf4d3b4431ab260b63fdc40f5780a4766824329ea0f1eefe3c0f"
2021-03-18 09:53:39 +00:00
dependencies = [
"log",
"web-sys",
]
2021-03-13 10:43:24 +00:00
[[package]]
name = "either"
2023-09-29 06:34:22 +00:00
version = "1.9.0"
2021-03-13 10:43:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
2021-03-13 10:43:24 +00:00
[[package]]
name = "itertools"
2023-09-29 06:34:22 +00:00
version = "0.11.0"
2021-03-13 10:43:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
2021-03-13 10:43:24 +00:00
dependencies = [
"either",
]
2021-03-18 09:53:39 +00:00
[[package]]
name = "js-sys"
2023-09-29 06:34:22 +00:00
version = "0.3.64"
2021-03-18 09:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
2021-03-18 09:53:39 +00:00
dependencies = [
"wasm-bindgen",
]
2021-03-13 10:11:40 +00:00
[[package]]
name = "kv"
version = "0.0.1"
2021-03-13 10:43:24 +00:00
dependencies = [
2021-03-18 09:53:39 +00:00
"console_error_panic_hook",
"console_log",
2021-03-13 10:43:24 +00:00
"itertools",
2021-03-18 09:53:39 +00:00
"log",
2021-03-15 15:42:00 +00:00
"svg_fmt",
2021-03-18 09:53:39 +00:00
"wasm-bindgen",
"web-sys",
]
[[package]]
2023-09-29 06:34:22 +00:00
name = "log"
version = "0.4.20"
2021-03-18 09:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
2021-03-18 09:53:39 +00:00
[[package]]
2023-09-29 06:34:22 +00:00
name = "once_cell"
version = "1.18.0"
2021-03-18 09:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
2021-03-18 09:53:39 +00:00
[[package]]
name = "proc-macro2"
2023-09-29 06:34:22 +00:00
version = "1.0.67"
2021-03-18 09:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328"
2021-03-18 09:53:39 +00:00
dependencies = [
2023-09-29 06:34:22 +00:00
"unicode-ident",
2021-03-18 09:53:39 +00:00
]
[[package]]
name = "quote"
2023-09-29 06:34:22 +00:00
version = "1.0.33"
2021-03-18 09:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
2021-03-18 09:53:39 +00:00
dependencies = [
"proc-macro2",
2021-03-13 10:43:24 +00:00
]
2021-03-15 15:42:00 +00:00
[[package]]
name = "svg_fmt"
version = "0.4.0"
2021-03-20 21:51:19 +00:00
source = "git+https://github.com/FliegendeWurst/rust_debug?rev=c664b5d24dbcaf6e6fdd7c329dde231c5b05377e#c664b5d24dbcaf6e6fdd7c329dde231c5b05377e"
2021-03-18 09:53:39 +00:00
[[package]]
name = "syn"
2023-09-29 06:34:22 +00:00
version = "2.0.37"
2021-03-18 09:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8"
2021-03-18 09:53:39 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-09-29 06:34:22 +00:00
"unicode-ident",
2021-03-18 09:53:39 +00:00
]
[[package]]
2023-09-29 06:34:22 +00:00
name = "unicode-ident"
version = "1.0.12"
2021-03-18 09:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2021-03-18 09:53:39 +00:00
[[package]]
name = "wasm-bindgen"
2023-09-29 06:34:22 +00:00
version = "0.2.87"
2021-03-18 09:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
2021-03-18 09:53:39 +00:00
dependencies = [
2023-09-29 06:34:22 +00:00
"cfg-if",
2021-03-18 09:53:39 +00:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-09-29 06:34:22 +00:00
version = "0.2.87"
2021-03-18 09:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
2021-03-18 09:53:39 +00:00
dependencies = [
"bumpalo",
"log",
2023-09-29 06:34:22 +00:00
"once_cell",
2021-03-18 09:53:39 +00:00
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
2023-09-29 06:34:22 +00:00
version = "0.2.87"
2021-03-18 09:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
2021-03-18 09:53:39 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-09-29 06:34:22 +00:00
version = "0.2.87"
2021-03-18 09:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
2021-03-18 09:53:39 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-09-29 06:34:22 +00:00
version = "0.2.87"
2021-03-18 09:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
2021-03-18 09:53:39 +00:00
[[package]]
name = "web-sys"
2023-09-29 06:34:22 +00:00
version = "0.3.64"
2021-03-18 09:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 06:34:22 +00:00
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
2021-03-18 09:53:39 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]