Update
374
Cargo.lock
generated
|
|
@ -200,6 +200,12 @@ version = "0.21.7"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
||||
|
||||
[[package]]
|
||||
name = "bit_field"
|
||||
version = "0.10.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
|
||||
|
||||
[[package]]
|
||||
name = "bitflags"
|
||||
version = "1.3.2"
|
||||
|
|
@ -253,6 +259,18 @@ dependencies = [
|
|||
"syn 1.0.109",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "bytemuck"
|
||||
version = "1.14.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ed2490600f404f2b94c167e31d3ed1d5f3c225a0f3b80230053b3e0b7b962bd9"
|
||||
|
||||
[[package]]
|
||||
name = "byteorder"
|
||||
version = "1.5.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
||||
|
||||
[[package]]
|
||||
name = "bytes"
|
||||
version = "1.5.0"
|
||||
|
|
@ -336,7 +354,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b"
|
||||
dependencies = [
|
||||
"ciborium-io",
|
||||
"half",
|
||||
"half 1.8.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -345,6 +363,12 @@ version = "1.0.1"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "186dce98367766de751c42c4f03970fc60fc012296e706ccbb9d5df9b6c1e271"
|
||||
|
||||
[[package]]
|
||||
name = "color_quant"
|
||||
version = "1.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
||||
|
||||
[[package]]
|
||||
name = "colored"
|
||||
version = "2.1.0"
|
||||
|
|
@ -434,6 +458,46 @@ version = "0.8.6"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
||||
|
||||
[[package]]
|
||||
name = "crc32fast"
|
||||
version = "1.3.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-deque"
|
||||
version = "0.8.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
||||
dependencies = [
|
||||
"crossbeam-epoch",
|
||||
"crossbeam-utils",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-epoch"
|
||||
version = "0.9.18"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
||||
dependencies = [
|
||||
"crossbeam-utils",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-utils"
|
||||
version = "0.8.19"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
|
||||
|
||||
[[package]]
|
||||
name = "crunchy"
|
||||
version = "0.2.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
||||
|
||||
[[package]]
|
||||
name = "darling"
|
||||
version = "0.14.4"
|
||||
|
|
@ -563,6 +627,50 @@ version = "1.0.1"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
||||
|
||||
[[package]]
|
||||
name = "exr"
|
||||
version = "1.71.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "832a761f35ab3e6664babfbdc6cef35a4860e816ec3916dcfd0882954e98a8a8"
|
||||
dependencies = [
|
||||
"bit_field",
|
||||
"flume",
|
||||
"half 2.2.1",
|
||||
"lebe",
|
||||
"miniz_oxide",
|
||||
"rayon-core",
|
||||
"smallvec",
|
||||
"zune-inflate",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fdeflate"
|
||||
version = "0.3.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645"
|
||||
dependencies = [
|
||||
"simd-adler32",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "flate2"
|
||||
version = "1.0.28"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
|
||||
dependencies = [
|
||||
"crc32fast",
|
||||
"miniz_oxide",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "flume"
|
||||
version = "0.11.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181"
|
||||
dependencies = [
|
||||
"spin",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fnv"
|
||||
version = "1.0.7"
|
||||
|
|
@ -686,6 +794,16 @@ dependencies = [
|
|||
"wasm-bindgen",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "gif"
|
||||
version = "0.12.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045"
|
||||
dependencies = [
|
||||
"color_quant",
|
||||
"weezl",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "gimli"
|
||||
version = "0.28.1"
|
||||
|
|
@ -775,6 +893,15 @@ version = "1.8.2"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
|
||||
|
||||
[[package]]
|
||||
name = "half"
|
||||
version = "2.2.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0"
|
||||
dependencies = [
|
||||
"crunchy",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "hashbrown"
|
||||
version = "0.12.3"
|
||||
|
|
@ -901,6 +1028,24 @@ dependencies = [
|
|||
"unicode-normalization",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "image"
|
||||
version = "0.24.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "034bbe799d1909622a74d1193aa50147769440040ff36cb2baa947609b0a4e23"
|
||||
dependencies = [
|
||||
"bytemuck",
|
||||
"byteorder",
|
||||
"color_quant",
|
||||
"exr",
|
||||
"gif",
|
||||
"jpeg-decoder",
|
||||
"num-traits",
|
||||
"png",
|
||||
"qoi",
|
||||
"tiff",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "indexmap"
|
||||
version = "2.1.0"
|
||||
|
|
@ -940,18 +1085,9 @@ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
|||
|
||||
[[package]]
|
||||
name = "itertools"
|
||||
version = "0.10.5"
|
||||
version = "0.12.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
||||
dependencies = [
|
||||
"either",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "itertools"
|
||||
version = "0.11.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
||||
checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0"
|
||||
dependencies = [
|
||||
"either",
|
||||
]
|
||||
|
|
@ -962,6 +1098,15 @@ version = "1.0.10"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
|
||||
|
||||
[[package]]
|
||||
name = "jpeg-decoder"
|
||||
version = "0.3.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0"
|
||||
dependencies = [
|
||||
"rayon",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "js-sys"
|
||||
version = "0.3.66"
|
||||
|
|
@ -978,10 +1123,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
||||
|
||||
[[package]]
|
||||
name = "leptos"
|
||||
version = "0.5.4"
|
||||
name = "lebe"
|
||||
version = "0.5.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9d02b78d6e38acf8199426058a0d8c4030835d84a4ee16147df25be7fed707e0"
|
||||
checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
|
||||
|
||||
[[package]]
|
||||
name = "leptos"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c80d9f1e13c5d393e6ba11f2d7de784bf3192964800ecb26bf4bf53fcf1eeb82"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"leptos_config",
|
||||
|
|
@ -1020,9 +1171,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "leptos_axum"
|
||||
version = "0.5.4"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6283fd19b98f4f7535b80a32064747028fbf4f88ceac4e2a24e9a7d5ed6caf5a"
|
||||
checksum = "4a0d7afcba675d438528371ed4005fd32b3777e9e666ce758e12cee6ac21d137"
|
||||
dependencies = [
|
||||
"axum",
|
||||
"cfg-if",
|
||||
|
|
@ -1043,9 +1194,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "leptos_config"
|
||||
version = "0.5.4"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "afcaa5db5b22b794b624e14ffe2aefae215b2d21c60a230ae2d06fe21ae5da64"
|
||||
checksum = "60eddcf01df2b23397ccecde61f28e62924d27f2744a16b8af164840edd728cd"
|
||||
dependencies = [
|
||||
"config",
|
||||
"regex",
|
||||
|
|
@ -1056,9 +1207,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "leptos_dom"
|
||||
version = "0.5.4"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "af459b63567e8e9c921ecbe7863732dc8dcb7874eaad6826b7d3778a53ec0ea6"
|
||||
checksum = "9b3bd9f76b4b109b3dbd09b3dee7be882d03efa41ee6326521c65199563cc40d"
|
||||
dependencies = [
|
||||
"async-recursion",
|
||||
"cfg-if",
|
||||
|
|
@ -1067,7 +1218,7 @@ dependencies = [
|
|||
"getrandom",
|
||||
"html-escape",
|
||||
"indexmap",
|
||||
"itertools 0.10.5",
|
||||
"itertools",
|
||||
"js-sys",
|
||||
"leptos_reactive",
|
||||
"once_cell",
|
||||
|
|
@ -1086,9 +1237,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "leptos_hot_reload"
|
||||
version = "0.5.4"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4ea60376eb80a24b3ab082612d62211e3ea0fc4dee132f7ff34d5fa5a5108cd2"
|
||||
checksum = "1cf7817917639f60b928df7319490a5faa11a6a5d604343e63728911d53167f8"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"camino",
|
||||
|
|
@ -1104,9 +1255,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "leptos_integration_utils"
|
||||
version = "0.5.4"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c2dbbd7d721bcdd9aa7b20987063de41314c836a3ac67e263ca489857e337dec"
|
||||
checksum = "3a13551004ad7deddb6fd7004982228d7949122898e54bc14e3cf8629ae280d4"
|
||||
dependencies = [
|
||||
"futures",
|
||||
"leptos",
|
||||
|
|
@ -1118,15 +1269,15 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "leptos_macro"
|
||||
version = "0.5.4"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a7e96f4c450f4b5e2ccb135c2b1328890f911ca4ee89da9ed6d582df929e6cb5"
|
||||
checksum = "e236a357a03219a8a36448eedd43750684e48bdbef035349e1b2126b4bfe0d63"
|
||||
dependencies = [
|
||||
"attribute-derive",
|
||||
"cfg-if",
|
||||
"convert_case",
|
||||
"html-escape",
|
||||
"itertools 0.11.0",
|
||||
"itertools",
|
||||
"leptos_hot_reload",
|
||||
"prettyplease",
|
||||
"proc-macro-error",
|
||||
|
|
@ -1141,9 +1292,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "leptos_meta"
|
||||
version = "0.5.4"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "983bbf829598d275b01e96bd9fca71e4739dd7b9fdf69cb8898b30ebfb124332"
|
||||
checksum = "036b4e9b7290e46cc71b3b840bf7f06329651373e8d6dfdb0193ce807ed9d540"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"indexmap",
|
||||
|
|
@ -1155,9 +1306,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "leptos_reactive"
|
||||
version = "0.5.4"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "22207568e096ac153ba8da68635e3136c1ec614ea9012736fa861c05bfb2eeff"
|
||||
checksum = "e2c32bd5d151cbf7b061ec99c7f06ac7bea3bc6b31812fd4c02de4b580f47114"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"cfg-if",
|
||||
|
|
@ -1183,14 +1334,14 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "leptos_router"
|
||||
version = "0.5.4"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c1a2ff8b8e8ae8b17efd8be2a407f7f83ed57c5243f70f2d03e6635f9ff61848"
|
||||
checksum = "98ef23885e9c36ef301d92f9d222744b161ad9c6be4c5c56f7d3a681f821ce47"
|
||||
dependencies = [
|
||||
"cached",
|
||||
"cfg-if",
|
||||
"gloo-net",
|
||||
"itertools 0.11.0",
|
||||
"itertools",
|
||||
"js-sys",
|
||||
"lazy_static",
|
||||
"leptos",
|
||||
|
|
@ -1214,9 +1365,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "leptos_server"
|
||||
version = "0.5.4"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "272d018a5adf33d10ee57e6f0f83dccc305c68613cd207e8a653aeebd4cd5b4f"
|
||||
checksum = "e45262bcfeb4953528d8d705fae78943a9d95ea0c4e29f9578d8e38f53c49951"
|
||||
dependencies = [
|
||||
"inventory",
|
||||
"lazy_static",
|
||||
|
|
@ -1333,6 +1484,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
|
||||
dependencies = [
|
||||
"adler",
|
||||
"simd-adler32",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -1356,6 +1508,15 @@ dependencies = [
|
|||
"minimal-lexical",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "num-traits"
|
||||
version = "0.2.17"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
|
||||
dependencies = [
|
||||
"autocfg",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "num_cpus"
|
||||
version = "1.16.0"
|
||||
|
|
@ -1469,12 +1630,31 @@ version = "0.1.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
||||
|
||||
[[package]]
|
||||
name = "png"
|
||||
version = "0.17.11"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1f6c3c3e617595665b8ea2ff95a86066be38fb121ff920a9c0eb282abcd1da5a"
|
||||
dependencies = [
|
||||
"bitflags 1.3.2",
|
||||
"crc32fast",
|
||||
"fdeflate",
|
||||
"flate2",
|
||||
"miniz_oxide",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "powerfmt"
|
||||
version = "0.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
||||
|
||||
[[package]]
|
||||
name = "ppv-lite86"
|
||||
version = "0.2.17"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
||||
|
||||
[[package]]
|
||||
name = "prettyplease"
|
||||
version = "0.2.16"
|
||||
|
|
@ -1561,6 +1741,15 @@ dependencies = [
|
|||
"syn 1.0.109",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "qoi"
|
||||
version = "0.4.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
|
||||
dependencies = [
|
||||
"bytemuck",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "quote"
|
||||
version = "1.0.35"
|
||||
|
|
@ -1599,6 +1788,56 @@ version = "0.7.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
||||
|
||||
[[package]]
|
||||
name = "rand"
|
||||
version = "0.8.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
||||
dependencies = [
|
||||
"libc",
|
||||
"rand_chacha",
|
||||
"rand_core",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rand_chacha"
|
||||
version = "0.3.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
||||
dependencies = [
|
||||
"ppv-lite86",
|
||||
"rand_core",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rand_core"
|
||||
version = "0.6.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
||||
dependencies = [
|
||||
"getrandom",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rayon"
|
||||
version = "1.8.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051"
|
||||
dependencies = [
|
||||
"either",
|
||||
"rayon-core",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "rayon-core"
|
||||
version = "1.12.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
||||
dependencies = [
|
||||
"crossbeam-deque",
|
||||
"crossbeam-utils",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "redox_syscall"
|
||||
version = "0.4.1"
|
||||
|
|
@ -1861,9 +2100,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "server_fn"
|
||||
version = "0.5.4"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cfed18dfcc8d9004579c40482c3419c07f60ffb9c5b250542edca99f508b0ce9"
|
||||
checksum = "f62c98107db756a3675ec988f3e8fa4a6e9df166d344550ba27996c7cbf9cf68"
|
||||
dependencies = [
|
||||
"ciborium",
|
||||
"const_format",
|
||||
|
|
@ -1886,9 +2125,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "server_fn_macro"
|
||||
version = "0.5.4"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0b70ae8e22546ba85500391b36c08e3fba64871be8a26557a3663a8e08acb56f"
|
||||
checksum = "f4c65f010871fc1371cb8114f3dd597e0c2c613c98b6ac9434ba1e0273a14e6f"
|
||||
dependencies = [
|
||||
"const_format",
|
||||
"proc-macro-error",
|
||||
|
|
@ -1901,9 +2140,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "server_fn_macro_default"
|
||||
version = "0.5.4"
|
||||
version = "0.5.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7256ba61dfadb220598db418376e7bc2a34b96df36c4dc48f24ffe161810fc0b"
|
||||
checksum = "fcb68bd2870297d3c7538a22aed7455cf2e4a76bf81695acf0ab439ecaf4c13a"
|
||||
dependencies = [
|
||||
"server_fn_macro",
|
||||
"syn 2.0.48",
|
||||
|
|
@ -1918,6 +2157,12 @@ dependencies = [
|
|||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "simd-adler32"
|
||||
version = "0.3.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
||||
|
||||
[[package]]
|
||||
name = "simdutf8"
|
||||
version = "0.1.4"
|
||||
|
|
@ -1957,9 +2202,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "smallvec"
|
||||
version = "1.11.2"
|
||||
version = "1.12.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
|
||||
checksum = "2593d31f82ead8df961d8bd23a64c2ccf2eb5dd34b0a34bfb4dd54011c72009e"
|
||||
|
||||
[[package]]
|
||||
name = "socket2"
|
||||
|
|
@ -1971,6 +2216,15 @@ dependencies = [
|
|||
"windows-sys",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "spin"
|
||||
version = "0.9.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
||||
dependencies = [
|
||||
"lock_api",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "strsim"
|
||||
version = "0.10.0"
|
||||
|
|
@ -2064,6 +2318,17 @@ dependencies = [
|
|||
"syn 2.0.48",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tiff"
|
||||
version = "0.9.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
|
||||
dependencies = [
|
||||
"flate2",
|
||||
"jpeg-decoder",
|
||||
"weezl",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "time"
|
||||
version = "0.3.31"
|
||||
|
|
@ -2369,12 +2634,14 @@ dependencies = [
|
|||
"console_error_panic_hook",
|
||||
"console_log",
|
||||
"http",
|
||||
"image",
|
||||
"leptos",
|
||||
"leptos-use",
|
||||
"leptos_axum",
|
||||
"leptos_meta",
|
||||
"leptos_router",
|
||||
"log",
|
||||
"rand",
|
||||
"serde",
|
||||
"simple_logger",
|
||||
"thiserror",
|
||||
|
|
@ -2476,6 +2743,12 @@ dependencies = [
|
|||
"wasm-bindgen",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "weezl"
|
||||
version = "0.1.8"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
|
||||
|
||||
[[package]]
|
||||
name = "winapi"
|
||||
version = "0.3.9"
|
||||
|
|
@ -2623,3 +2896,12 @@ dependencies = [
|
|||
"quote",
|
||||
"syn 2.0.48",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "zune-inflate"
|
||||
version = "0.2.54"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
|
||||
dependencies = [
|
||||
"simd-adler32",
|
||||
]
|
||||
|
|
|
|||
|
|
@ -26,6 +26,8 @@ tracing = { version = "0.1.37", optional = true }
|
|||
http = "0.2.8"
|
||||
serde = { version = "1.0.195", features = ["derive"] }
|
||||
leptos-use = "0.9.0"
|
||||
image = "0.24.8"
|
||||
rand = "0.8.5"
|
||||
|
||||
[features]
|
||||
default = ["ssr", "hydrate"]
|
||||
|
|
@ -71,7 +73,7 @@ style-file = "style/output.css"
|
|||
assets-dir = "public"
|
||||
|
||||
# The IP and port (ex: 127.0.0.1:3000) where the server serves the content. Use it in your server setup.
|
||||
site-addr = "127.0.0.1:3000"
|
||||
site-addr = "0.0.0.0:3000"
|
||||
|
||||
# The port to use for automatic reload monitoring
|
||||
reload-port = 3001
|
||||
|
|
|
|||
89
input.css
|
|
@ -15,7 +15,10 @@ body {
|
|||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
overflow: auto;
|
||||
height: 90vh;
|
||||
align-items: flex-start;
|
||||
align-content: flex-start;
|
||||
}
|
||||
|
||||
.pic-outer {
|
||||
|
|
@ -24,3 +27,87 @@ body {
|
|||
align-items: center;
|
||||
transition: transform 1s linear;
|
||||
}
|
||||
|
||||
.pic-inner {
|
||||
transition: all 0.2s ease-in-out;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#country {
|
||||
background-color: rgba(0, 0, 0, 0.61);
|
||||
backdrop-filter: blur(5px);
|
||||
padding: 4px;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.pic-inner:hover {
|
||||
transform: scale(0.98);
|
||||
}
|
||||
|
||||
#info-button {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.dropbtn {
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 5px;
|
||||
min-width: 40px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#info-main {
|
||||
top: 12.5%;
|
||||
min-width: 50%;
|
||||
min-height: 75%;
|
||||
position: absolute;
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
backdrop-filter: blur(5px);
|
||||
overflow: auto;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
/* The container <div> - needed to position the dropdown content */
|
||||
.dropdown {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Dropdown Content (Hidden by Default) */
|
||||
.dropdown-content {
|
||||
display: none;
|
||||
position: absolute;
|
||||
margin-left: 5px;
|
||||
border-radius: 0.25rem;
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
backdrop-filter: blur(5px);
|
||||
min-width: 160px;
|
||||
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* Links inside the dropdown */
|
||||
.dropdown-content a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
}
|
||||
.dropdown-content a:last-child {
|
||||
border-radius: 0 0 0.25rem 0.25rem;
|
||||
}
|
||||
.dropdown-content a:first-child {
|
||||
border-radius: 0.25rem 0.25rem 0 0;
|
||||
}
|
||||
|
||||
/* Change color of dropdown links on hover */
|
||||
.dropdown-content a:hover {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
backdrop-filter: blur(10px);
|
||||
}
|
||||
|
||||
/* Show the dropdown menu on hover */
|
||||
.dropdown:hover .dropdown-content {
|
||||
display: block;
|
||||
}
|
||||
|
|
|
|||
BIN
public/2024-01-09 16:37:04.706296-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 1 MiB |
BIN
public/2024-01-09 16:37:04.706296-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
public/2024-01-09 16:37:04.706296-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 271 KiB |
|
Before Width: | Height: | Size: 3.8 MiB |
BIN
public/2024-01-09 16:59:09.815334-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 852 KiB |
BIN
public/2024-01-09 16:59:09.815334-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
public/2024-01-09 16:59:09.815334-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 232 KiB |
BIN
public/2024-01-09 17:04:04.507405-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
public/2024-01-09 17:04:04.507405-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
public/2024-01-09 17:04:04.507405-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 287 KiB |
BIN
public/2024-01-09 17:06:31.182765-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 757 KiB |
BIN
public/2024-01-09 17:06:31.182765-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 59 KiB |
BIN
public/2024-01-09 17:06:31.182765-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 205 KiB |
BIN
public/2024-01-09 17:20:34.821445-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 742 KiB |
BIN
public/2024-01-09 17:20:34.821445-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
public/2024-01-09 17:20:34.821445-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 204 KiB |
BIN
public/2024-01-09 17:36:49.085270-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 851 KiB |
BIN
public/2024-01-09 17:36:49.085270-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 62 KiB |
BIN
public/2024-01-09 17:36:49.085270-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 228 KiB |
BIN
public/2024-01-09 17:51:41.088380-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 770 KiB |
BIN
public/2024-01-09 17:51:41.088380-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
public/2024-01-09 17:51:41.088380-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 206 KiB |
BIN
public/2024-01-09 18:11:12.600452-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 826 KiB |
BIN
public/2024-01-09 18:11:12.600452-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 62 KiB |
BIN
public/2024-01-09 18:11:12.600452-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 224 KiB |
BIN
public/2024-01-09 19:01:18.187505-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 861 KiB |
BIN
public/2024-01-09 19:01:18.187505-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 61 KiB |
BIN
public/2024-01-09 19:01:18.187505-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 224 KiB |
BIN
public/2024-01-09 19:08:58.645316-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 699 KiB |
BIN
public/2024-01-09 19:08:58.645316-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
public/2024-01-09 19:08:58.645316-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 190 KiB |
BIN
public/2024-01-09 19:36:54.390252-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 811 KiB |
BIN
public/2024-01-09 19:36:54.390252-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 64 KiB |
BIN
public/2024-01-09 19:36:54.390252-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 224 KiB |
BIN
public/2024-01-10 01:15:12.399266-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 752 KiB |
BIN
public/2024-01-10 01:15:12.399266-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 60 KiB |
BIN
public/2024-01-10 01:15:12.399266-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 207 KiB |
BIN
public/2024-01-10 01:16:34.027579-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 718 KiB |
BIN
public/2024-01-10 01:16:34.027579-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
public/2024-01-10 01:16:34.027579-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 186 KiB |
BIN
public/2024-01-10 01:18:45.387528-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 793 KiB |
BIN
public/2024-01-10 01:18:45.387528-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
public/2024-01-10 01:18:45.387528-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 209 KiB |
BIN
public/2024-01-10 01:20:21.249365-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 900 KiB |
BIN
public/2024-01-10 01:20:21.249365-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 66 KiB |
BIN
public/2024-01-10 01:20:21.249365-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 241 KiB |
BIN
public/2024-01-10 01:22:55.272978-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 867 KiB |
BIN
public/2024-01-10 01:22:55.272978-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
public/2024-01-10 01:22:55.272978-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 240 KiB |
BIN
public/2024-01-10 01:24:57.411354-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 910 KiB |
BIN
public/2024-01-10 01:24:57.411354-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 65 KiB |
BIN
public/2024-01-10 01:24:57.411354-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 242 KiB |
BIN
public/2024-01-10 01:29:10.150918-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 710 KiB |
BIN
public/2024-01-10 01:29:10.150918-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
public/2024-01-10 01:29:10.150918-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 185 KiB |
BIN
public/2024-01-10 02:25:01.794669-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 826 KiB |
BIN
public/2024-01-10 02:25:01.794669-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 61 KiB |
BIN
public/2024-01-10 02:25:01.794669-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 221 KiB |
BIN
public/2024-01-10 02:26:56.321027-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 814 KiB |
BIN
public/2024-01-10 02:26:56.321027-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
public/2024-01-10 02:26:56.321027-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 241 KiB |
BIN
public/2024-01-10 02:28:55.242136-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 685 KiB |
BIN
public/2024-01-10 02:28:55.242136-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
public/2024-01-10 02:28:55.242136-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 174 KiB |
BIN
public/2024-01-10 02:31:03.603425-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 811 KiB |
BIN
public/2024-01-10 02:31:03.603425-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
public/2024-01-10 02:31:03.603425-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 214 KiB |
BIN
public/2024-01-10 02:32:59.895286-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 765 KiB |
BIN
public/2024-01-10 02:32:59.895286-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
public/2024-01-10 02:32:59.895286-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 198 KiB |
BIN
public/2024-01-10 02:35:27.059977-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 804 KiB |
BIN
public/2024-01-10 02:35:27.059977-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 60 KiB |
BIN
public/2024-01-10 02:35:27.059977-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 213 KiB |
BIN
public/2024-01-10 02:37:40.783016-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 930 KiB |
BIN
public/2024-01-10 02:37:40.783016-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 66 KiB |
BIN
public/2024-01-10 02:37:40.783016-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 246 KiB |
BIN
public/2024-01-10 02:49:08.120228-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 946 KiB |
BIN
public/2024-01-10 02:49:08.120228-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
public/2024-01-10 02:49:08.120228-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 265 KiB |
BIN
public/2024-01-10 02:52:28.744040-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 793 KiB |
BIN
public/2024-01-10 02:52:28.744040-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
public/2024-01-10 02:52:28.744040-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 213 KiB |
BIN
public/2024-01-10 02:56:03.974667-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 1 MiB |
BIN
public/2024-01-10 02:56:03.974667-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
public/2024-01-10 02:56:03.974667-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 283 KiB |
BIN
public/2024-01-10 02:58:21.694120-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 949 KiB |
BIN
public/2024-01-10 02:58:21.694120-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
public/2024-01-10 02:58:21.694120-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 256 KiB |
BIN
public/2024-01-10 03:01:13.682196-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 748 KiB |
BIN
public/2024-01-10 03:01:13.682196-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
public/2024-01-10 03:01:13.682196-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 196 KiB |
BIN
public/2024-01-10 03:04:01.434082-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 942 KiB |
BIN
public/2024-01-10 03:04:01.434082-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
public/2024-01-10 03:04:01.434082-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 259 KiB |
BIN
public/2024-01-10 03:07:12.118816-thumb-1024x1024.png
Normal file
|
After Width: | Height: | Size: 744 KiB |
BIN
public/2024-01-10 03:07:12.118816-thumb-256x256.png
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
public/2024-01-10 03:07:12.118816-thumb-512x512.png
Normal file
|
After Width: | Height: | Size: 193 KiB |