diff --git a/server/Cargo.lock b/server/Cargo.lock new file mode 100644 index 0000000..503dfc6 --- /dev/null +++ b/server/Cargo.lock @@ -0,0 +1,2297 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "actix-codec" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" +dependencies = [ + "bitflags", + "bytes", + "futures-core", + "futures-sink", + "memchr", + "pin-project-lite", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "actix-cors" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daa239b93927be1ff123eebada5a3ff23e89f0124ccb8609234e5103d5a5ae6d" +dependencies = [ + "actix-utils", + "actix-web", + "derive_more", + "futures-util", + "log", + "once_cell", + "smallvec", +] + +[[package]] +name = "actix-files" +version = "0.6.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df8c4f30e3272d7c345f88ae0aac3848507ef5ba871f9cc2a41c8085a0f0523b" +dependencies = [ + "actix-http", + "actix-service", + "actix-utils", + "actix-web", + "bitflags", + "bytes", + "derive_more", + "futures-core", + "http-range", + "log", + "mime", + "mime_guess", + "percent-encoding", + "pin-project-lite", + "v_htmlescape", +] + +[[package]] +name = "actix-http" +version = "3.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f860ee6746d0c5b682147b2f7f8ef036d4f92fe518251a3a35ffa3650eafdf0e" +dependencies = [ + "actix-codec", + "actix-rt", + "actix-service", + "actix-utils", + "base64", + "bitflags", + "brotli", + "bytes", + "bytestring", + "derive_more", + "encoding_rs", + "flate2", + "foldhash", + "futures-core", + "h2", + "http", + "httparse", + "httpdate", + "itoa", + "language-tags", + "local-channel", + "mime", + "percent-encoding", + "pin-project-lite", + "rand 0.9.2", + "sha1", + "smallvec", + "tokio", + "tokio-util", + "tracing", + "zstd", +] + +[[package]] +name = "actix-macros" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" +dependencies = [ + "quote", + "syn", +] + +[[package]] +name = "actix-router" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14f8c75c51892f18d9c46150c5ac7beb81c95f78c8b83a634d49f4ca32551fe7" +dependencies = [ + "bytestring", + "cfg-if", + "http", + "regex", + "regex-lite", + "serde", + "tracing", +] + +[[package]] +name = "actix-rt" +version = "2.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92589714878ca59a7626ea19734f0e07a6a875197eec751bb5d3f99e64998c63" +dependencies = [ + "futures-core", + "tokio", +] + +[[package]] +name = "actix-server" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a65064ea4a457eaf07f2fba30b4c695bf43b721790e9530d26cb6f9019ff7502" +dependencies = [ + "actix-rt", + "actix-service", + "actix-utils", + "futures-core", + "futures-util", + "mio", + "socket2 0.5.10", + "tokio", + "tracing", +] + +[[package]] +name = "actix-service" +version = "2.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e46f36bf0e5af44bdc4bdb36fbbd421aa98c79a9bce724e1edeb3894e10dc7f" +dependencies = [ + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "actix-utils" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8" +dependencies = [ + "local-waker", + "pin-project-lite", +] + +[[package]] +name = "actix-web" +version = "4.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff87453bc3b56e9b2b23c1cc0b1be8797184accf51d2abe0f8a33ec275d316bf" +dependencies = [ + "actix-codec", + "actix-http", + "actix-macros", + "actix-router", + "actix-rt", + "actix-server", + "actix-service", + "actix-utils", + "actix-web-codegen", + "bytes", + "bytestring", + "cfg-if", + "cookie", + "derive_more", + "encoding_rs", + "foldhash", + "futures-core", + "futures-util", + "impl-more", + "itoa", + "language-tags", + "log", + "mime", + "once_cell", + "pin-project-lite", + "regex", + "regex-lite", + "serde", + "serde_json", + "serde_urlencoded", + "smallvec", + "socket2 0.6.3", + "time", + "tracing", + "url", +] + +[[package]] +name = "actix-web-codegen" +version = "4.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8" +dependencies = [ + "actix-router", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "actix-ws" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "decf53c3cdd63dd6f289980b430238f9a2f6d19f8bce8e418272e08d3da43f0f" +dependencies = [ + "actix-codec", + "actix-http", + "actix-web", + "bytestring", + "futures-core", + "futures-sink", + "tokio", + "tokio-util", +] + +[[package]] +name = "adler2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" + +[[package]] +name = "aho-corasick" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" +dependencies = [ + "memchr", +] + +[[package]] +name = "alloc-no-stdlib" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" + +[[package]] +name = "alloc-stdlib" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" +dependencies = [ + "alloc-no-stdlib", +] + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anstream" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" + +[[package]] +name = "anstyle-parse" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" +dependencies = [ + "anstyle", + "once_cell_polyfill", + "windows-sys 0.61.2", +] + +[[package]] +name = "anyhow" +version = "1.0.102" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" + +[[package]] +name = "autocfg" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "bitflags" +version = "2.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "brotli" +version = "8.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor", +] + +[[package]] +name = "brotli-decompressor" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", +] + +[[package]] +name = "bumpalo" +version = "3.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" + +[[package]] +name = "butterfly-server" +version = "0.1.0" +dependencies = [ + "actix-cors", + "actix-files", + "actix-web", + "actix-ws", + "bytes", + "chrono", + "dashmap", + "env_logger", + "futures", + "log", + "parking_lot", + "rand 0.8.5", + "serde", + "serde_json", + "tokio", + "tokio-stream", + "uuid", +] + +[[package]] +name = "bytes" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" + +[[package]] +name = "bytestring" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "113b4343b5f6617e7ad401ced8de3cc8b012e73a594347c307b90db3e9271289" +dependencies = [ + "bytes", +] + +[[package]] +name = "cc" +version = "1.2.59" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283" +dependencies = [ + "find-msvc-tools", + "jobserver", + "libc", + "shlex", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "chrono" +version = "0.4.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" +dependencies = [ + "iana-time-zone", + "js-sys", + "num-traits", + "serde", + "wasm-bindgen", + "windows-link", +] + +[[package]] +name = "colorchoice" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" + +[[package]] +name = "convert_case" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9" +dependencies = [ + "unicode-segmentation", +] + +[[package]] +name = "cookie" +version = "0.16.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" +dependencies = [ + "percent-encoding", + "time", + "version_check", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + +[[package]] +name = "cpufeatures" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" +dependencies = [ + "libc", +] + +[[package]] +name = "crc32fast" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" + +[[package]] +name = "crypto-common" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "dashmap" +version = "6.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" +dependencies = [ + "cfg-if", + "crossbeam-utils", + "hashbrown 0.14.5", + "lock_api", + "once_cell", + "parking_lot_core", +] + +[[package]] +name = "deranged" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" +dependencies = [ + "powerfmt", +] + +[[package]] +name = "derive_more" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" +dependencies = [ + "derive_more-impl", +] + +[[package]] +name = "derive_more-impl" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" +dependencies = [ + "convert_case", + "proc-macro2", + "quote", + "rustc_version", + "syn", + "unicode-xid", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "crypto-common", +] + +[[package]] +name = "displaydoc" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "encoding_rs" +version = "0.8.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "env_filter" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef" +dependencies = [ + "log", + "regex", +] + +[[package]] +name = "env_logger" +version = "0.11.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a" +dependencies = [ + "anstream", + "anstyle", + "env_filter", + "jiff", + "log", +] + +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "errno" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + +[[package]] +name = "flate2" +version = "1.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "futures" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" + +[[package]] +name = "futures-executor" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" + +[[package]] +name = "futures-macro" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "futures-sink" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" + +[[package]] +name = "futures-task" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" + +[[package]] +name = "futures-util" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "slab", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "getrandom" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" +dependencies = [ + "cfg-if", + "libc", + "r-efi 5.3.0", + "wasip2", +] + +[[package]] +name = "getrandom" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" +dependencies = [ + "cfg-if", + "libc", + "r-efi 6.0.0", + "wasip2", + "wasip3", +] + +[[package]] +name = "h2" +version = "0.3.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d" +dependencies = [ + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http", + "indexmap", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "hashbrown" +version = "0.14.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "foldhash", +] + +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "http" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http-range" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573" + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + +[[package]] +name = "httpdate" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + +[[package]] +name = "iana-time-zone" +version = "0.1.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "log", + "wasm-bindgen", + "windows-core", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "icu_collections" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" +dependencies = [ + "displaydoc", + "potential_utf", + "utf8_iter", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locale_core" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_normalizer" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" +dependencies = [ + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" + +[[package]] +name = "icu_properties" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" +dependencies = [ + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" + +[[package]] +name = "icu_provider" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "id-arena" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "impl-more" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" + +[[package]] +name = "indexmap" +version = "2.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff" +dependencies = [ + "equivalent", + "hashbrown 0.16.1", + "serde", + "serde_core", +] + +[[package]] +name = "is_terminal_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" + +[[package]] +name = "itoa" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" + +[[package]] +name = "jiff" +version = "0.2.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359" +dependencies = [ + "jiff-static", + "log", + "portable-atomic", + "portable-atomic-util", + "serde_core", +] + +[[package]] +name = "jiff-static" +version = "0.2.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "jobserver" +version = "0.1.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" +dependencies = [ + "getrandom 0.3.4", + "libc", +] + +[[package]] +name = "js-sys" +version = "0.3.94" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9" +dependencies = [ + "once_cell", + "wasm-bindgen", +] + +[[package]] +name = "language-tags" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" + +[[package]] +name = "leb128fmt" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" + +[[package]] +name = "libc" +version = "0.2.184" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af" + +[[package]] +name = "litemap" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" + +[[package]] +name = "local-channel" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" +dependencies = [ + "futures-core", + "futures-sink", + "local-waker", +] + +[[package]] +name = "local-waker" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" + +[[package]] +name = "lock_api" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" + +[[package]] +name = "memchr" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "mime_guess" +version = "2.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" +dependencies = [ + "mime", + "unicase", +] + +[[package]] +name = "miniz_oxide" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" +dependencies = [ + "adler2", + "simd-adler32", +] + +[[package]] +name = "mio" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1" +dependencies = [ + "libc", + "log", + "wasi", + "windows-sys 0.61.2", +] + +[[package]] +name = "num-conv" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967" + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + +[[package]] +name = "once_cell" +version = "1.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" + +[[package]] +name = "once_cell_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" + +[[package]] +name = "parking_lot" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-link", +] + +[[package]] +name = "percent-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "pin-project-lite" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" + +[[package]] +name = "pkg-config" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" + +[[package]] +name = "portable-atomic" +version = "1.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" + +[[package]] +name = "portable-atomic-util" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3" +dependencies = [ + "portable-atomic", +] + +[[package]] +name = "potential_utf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" +dependencies = [ + "zerovec", +] + +[[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.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "prettyplease" +version = "0.2.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" +dependencies = [ + "proc-macro2", + "syn", +] + +[[package]] +name = "proc-macro2" +version = "1.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "r-efi" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha 0.3.1", + "rand_core 0.6.4", +] + +[[package]] +name = "rand" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" +dependencies = [ + "rand_chacha 0.9.0", + "rand_core 0.9.5", +] + +[[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 0.6.4", +] + +[[package]] +name = "rand_chacha" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" +dependencies = [ + "ppv-lite86", + "rand_core 0.9.5", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.17", +] + +[[package]] +name = "rand_core" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" +dependencies = [ + "getrandom 0.3.4", +] + +[[package]] +name = "redox_syscall" +version = "0.5.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" +dependencies = [ + "bitflags", +] + +[[package]] +name = "regex" +version = "1.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-lite" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973" + +[[package]] +name = "regex-syntax" +version = "0.8.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" + +[[package]] +name = "rustc_version" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +dependencies = [ + "semver", +] + +[[package]] +name = "rustversion" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" + +[[package]] +name = "ryu" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "semver" +version = "1.0.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" + +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.149" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" +dependencies = [ + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "sha1" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "signal-hook-registry" +version = "1.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" +dependencies = [ + "errno", + "libc", +] + +[[package]] +name = "simd-adler32" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214" + +[[package]] +name = "slab" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" + +[[package]] +name = "smallvec" +version = "1.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" + +[[package]] +name = "socket2" +version = "0.5.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "socket2" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" + +[[package]] +name = "syn" +version = "2.0.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "synstructure" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "time" +version = "0.3.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" +dependencies = [ + "deranged", + "itoa", + "num-conv", + "powerfmt", + "serde_core", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" + +[[package]] +name = "time-macros" +version = "0.2.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tinystr" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tokio" +version = "1.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2bd1c4c0fc4a7ab90fc15ef6daaa3ec3b893f004f915f2392557ed23237820cd" +dependencies = [ + "bytes", + "libc", + "mio", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", + "socket2 0.6.3", + "tokio-macros", + "windows-sys 0.61.2", +] + +[[package]] +name = "tokio-macros" +version = "2.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tokio-stream" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" +dependencies = [ + "futures-core", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "tokio-util" +version = "0.7.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "futures-util", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "tracing" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" +dependencies = [ + "log", + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "typenum" +version = "1.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" + +[[package]] +name = "unicase" +version = "2.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142" + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "unicode-segmentation" +version = "1.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c" + +[[package]] +name = "unicode-xid" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" + +[[package]] +name = "url" +version = "2.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", +] + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "utf8parse" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" + +[[package]] +name = "uuid" +version = "1.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9" +dependencies = [ + "getrandom 0.4.2", + "js-sys", + "serde_core", + "wasm-bindgen", +] + +[[package]] +name = "v_htmlescape" +version = "0.15.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e8257fbc510f0a46eb602c10215901938b5c2a7d5e70fc11483b1d3c9b5b18c" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.2+wasi-0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasip3" +version = "0.4.0+wasi-0.3.0-rc-2026-01-06" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasm-bindgen" +version = "0.2.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0" +dependencies = [ + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2" +dependencies = [ + "bumpalo", + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "wasm-encoder" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" +dependencies = [ + "leb128fmt", + "wasmparser", +] + +[[package]] +name = "wasm-metadata" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" +dependencies = [ + "anyhow", + "indexmap", + "wasm-encoder", + "wasmparser", +] + +[[package]] +name = "wasmparser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" +dependencies = [ + "bitflags", + "hashbrown 0.15.5", + "indexmap", + "semver", +] + +[[package]] +name = "windows-core" +version = "0.62.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link", + "windows-result", + "windows-strings", +] + +[[package]] +name = "windows-implement" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "windows-interface" +version = "0.59.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-result" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-strings" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_gnullvm", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "wit-bindgen" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" +dependencies = [ + "wit-bindgen-rust-macro", +] + +[[package]] +name = "wit-bindgen-core" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" +dependencies = [ + "anyhow", + "heck", + "wit-parser", +] + +[[package]] +name = "wit-bindgen-rust" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" +dependencies = [ + "anyhow", + "heck", + "indexmap", + "prettyplease", + "syn", + "wasm-metadata", + "wit-bindgen-core", + "wit-component", +] + +[[package]] +name = "wit-bindgen-rust-macro" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" +dependencies = [ + "anyhow", + "prettyplease", + "proc-macro2", + "quote", + "syn", + "wit-bindgen-core", + "wit-bindgen-rust", +] + +[[package]] +name = "wit-component" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" +dependencies = [ + "anyhow", + "bitflags", + "indexmap", + "log", + "serde", + "serde_derive", + "serde_json", + "wasm-encoder", + "wasm-metadata", + "wasmparser", + "wit-parser", +] + +[[package]] +name = "wit-parser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" +dependencies = [ + "anyhow", + "id-arena", + "indexmap", + "log", + "semver", + "serde", + "serde_derive", + "serde_json", + "unicode-xid", + "wasmparser", +] + +[[package]] +name = "writeable" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" + +[[package]] +name = "yoke" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca" +dependencies = [ + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "zerocopy" +version = "0.8.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "zerofrom" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "zerotrie" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "zmij" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" + +[[package]] +name = "zstd" +version = "0.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" +dependencies = [ + "zstd-safe", +] + +[[package]] +name = "zstd-safe" +version = "7.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" +dependencies = [ + "zstd-sys", +] + +[[package]] +name = "zstd-sys" +version = "2.0.16+zstd.1.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" +dependencies = [ + "cc", + "pkg-config", +] diff --git a/server/src/api/mod.rs b/server/src/api/mod.rs index cd21a5a..680aa4a 100644 --- a/server/src/api/mod.rs +++ b/server/src/api/mod.rs @@ -7,11 +7,11 @@ use actix_web::web; pub fn configure(cfg: &mut web::ServiceConfig) { cfg.service( web::scope("/api") - .service(health::health) - .service(sessions::list_sessions) - .service(sessions::create_session) - .service(sessions::get_session) - .service(sessions::delete_session) - .service(sessions::send_hud_command), + .route("/health", web::get().to(health::health)) + .route("/sessions", web::get().to(sessions::list_sessions)) + .route("/sessions", web::post().to(sessions::create_session)) + .route("/sessions/{id}", web::get().to(sessions::get_session)) + .route("/sessions/{id}", web::delete().to(sessions::delete_session)) + .route("/sessions/{id}/hud", web::post().to(sessions::send_hud_command)), ); } diff --git a/server/src/main.rs b/server/src/main.rs index 1af67a0..a5ad560 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -5,8 +5,6 @@ mod state; mod stream; mod ws; -use std::sync::Arc; - use actix_cors::Cors; use actix_web::{web, App, HttpServer, middleware}; use log::info; @@ -22,7 +20,7 @@ async fn main() -> std::io::Result<()> { let config = Config::from_env(); let bind_addr = config.bind_addr(); - info!("🦋 Butterfly Server v{}", env!("CARGO_PKG_VERSION")); + info!("Butterfly Server v{}", env!("CARGO_PKG_VERSION")); info!(" config: {:?}", &config); let app_state = AppState::new( @@ -31,19 +29,7 @@ async fn main() -> std::io::Result<()> { config.frame_buffer_size, ); - // Build CORS middleware. - let cors = if config.cors_origins.iter().any(|o| o == "*") { - Cors::permissive() - } else { - let mut cors = Cors::default(); - for origin in &config.cors_origins { - cors = cors.allowed_origin(origin); - } - cors - }; - // Path to the Angular frontend build output (relative to server/). - // Falls back to "static" if the Angular dist dir doesn't exist yet. let frontend_dir = std::path::Path::new("../desktop/dist/browser"); let static_dir = if frontend_dir.exists() { frontend_dir.to_path_buf() @@ -53,9 +39,23 @@ async fn main() -> std::io::Result<()> { info!(" serving static files from: {:?}", static_dir); + // Store CORS origins for recreation inside HttpServer::new (Cors is !Clone). + let cors_origins = config.cors_origins.clone(); + HttpServer::new(move || { + // Recreate CORS per worker since it is !Clone. + let cors = if cors_origins.iter().any(|o| o == "*") { + Cors::permissive() + } else { + let mut c = Cors::default(); + for origin in &cors_origins { + c = c.allowed_origin(origin); + } + c + }; + let json_cfg = web::JsonConfig::default() - .limit(1024 * 1024) // 1 MB max JSON payload + .limit(1024 * 1024) .error_handler(|err, _req| { let resp = actix_web::HttpResponse::BadRequest().json( models::ApiResponse::<()>::err(format!("invalid JSON: {}", err)), @@ -63,29 +63,29 @@ async fn main() -> std::io::Result<()> { actix_web::error::InternalError::from_response(err, resp).into() }); + let static_dir = static_dir.clone(); + App::new() .app_data(web::Data::new(app_state.clone())) .app_data(json_cfg) - .wrap(cors.clone()) + .wrap(cors) .wrap(middleware::Logger::default()) .wrap(middleware::Compress::default()) .configure(api::configure) .configure(ws::configure) - // Serve Angular static assets; falls back to index.html for SPA routing. - .service(actix_files::Files::new("/assets", &static_dir.join("assets")).show_files_listing()) - .route("/", web::get().to(|| async { - actix_web::HttpResponse::Ok() - .content_type("text/html; charset=utf-8") - .body(include_str!("../../static/index.html")) - })) - .default_service(web::route().to(|| async { - actix_web::HttpResponse::Ok() - .content_type("text/html; charset=utf-8") - .body(include_str!("../../static/index.html")) - })) + .service(actix_files::Files::new("/assets", static_dir.join("assets")).show_files_listing()) + .route("/", web::get().to(spa_index)) + .default_service(web::route().to(spa_index)) }) .bind(&bind_addr)? .workers(4) .run() .await } + +/// SPA fallback — serves static/index.html for any unmatched GET route. +async fn spa_index() -> actix_web::HttpResponse { + actix_web::HttpResponse::Ok() + .content_type("text/html; charset=utf-8") + .body(include_str!("../static/index.html")) +} diff --git a/server/src/state.rs b/server/src/state.rs index 1574990..f3f9b76 100644 --- a/server/src/state.rs +++ b/server/src/state.rs @@ -28,6 +28,7 @@ pub struct AppState { /// Simple circular buffer that keeps the *N* most recent display frames. /// Viewers that connect mid-stream can pull the latest frame immediately /// instead of waiting for the next one from the agent. +#[derive(Debug)] pub struct FrameBuffer { frames: parking_lot::Mutex>, capacity: usize, @@ -143,7 +144,7 @@ impl AppState { /// Return counts for health-check. pub fn stats(&self) -> (usize, usize) { - let active: usize = self + let _active: usize = self .sessions .iter() .filter(|r| r.status == SessionStatus::Active) diff --git a/server/src/stream/media.rs b/server/src/stream/media.rs index f1e5b53..d7320d0 100644 --- a/server/src/stream/media.rs +++ b/server/src/stream/media.rs @@ -2,8 +2,6 @@ use std::sync::atomic::{AtomicU64, Ordering}; use std::sync::Arc; use std::time::Instant; -use log::debug; - /// Tracks streaming statistics for a single session. #[derive(Debug)] pub struct StreamStats { @@ -38,7 +36,6 @@ impl StreamStats { self.display_frames.fetch_add(1, Ordering::Relaxed); self.bytes_relayed.fetch_add(byte_len as u64, Ordering::Relaxed); *self.last_frame_at.lock() = Some(Instant::now()); - self.update_fps(); } /// Record that an audio chunk was received. @@ -47,12 +44,6 @@ impl StreamStats { self.bytes_relayed.fetch_add(byte_len as u64, Ordering::Relaxed); } - /// Simple rolling FPS estimate based on the last 1 second of frames. - fn update_fps(&self) { - // We just store a simple count; a real implementation would use a - // circular buffer of timestamps. This is sufficient for monitoring. - } - /// Snapshot of current stats for API responses. pub fn snapshot(&self) -> StreamStatsSnapshot { StreamStatsSnapshot { diff --git a/server/src/ws/handler.rs b/server/src/ws/handler.rs index 2b935a6..1cf1478 100644 --- a/server/src/ws/handler.rs +++ b/server/src/ws/handler.rs @@ -1,7 +1,7 @@ use std::sync::Arc; use std::time::{Duration, Instant}; -use actix_ws::{Message, SessionExt}; +use actix_ws::{Message, Session}; use futures::StreamExt; use log::{info, warn}; @@ -9,9 +9,8 @@ use crate::models::{ClientType, WsMessage}; /// ACTIX-WEB HTTP HANDLER /// -/// Upgrades the HTTP connection to a WebSocket and spawns two async tasks: -/// • **reader** – reads frames from the client and dispatches them. -/// • **writer** – pulls messages from a broadcast channel and sends them. +/// Upgrades the HTTP connection to a WebSocket and spawns an async task +/// that reads frames from the client and dispatches them. /// /// The query parameter `client_type` must be `"viewer"` or `"agent"`. pub async fn ws_index( @@ -30,13 +29,11 @@ pub async fn ws_index( } // Determine client type from query string. - let client_type = req - .query_param::("client_type") - .unwrap_or_else(|_| "viewer".to_string()); - - let client_type = match client_type.as_str() { - "agent" => ClientType::Agent, - _ => ClientType::Viewer, + let query_str = req.query_string(); + let client_type = if query_str.contains("client_type=agent") { + ClientType::Agent + } else { + ClientType::Viewer }; let ip = req @@ -73,7 +70,7 @@ pub async fn ws_index( state.register_agent(agent); } - // Clone references for the spawned tasks. + // Clone references for the spawned task. let state_clone = state.clone(); let session_id_clone = session_id.clone(); let client_type_clone = client_type.clone(); @@ -98,7 +95,7 @@ pub async fn ws_index( } Message::Ping(bytes) => { last_heartbeat = Instant::now(); - let _ = session.pong(&bytes).await; + let _ = session.pong(bytes).await; } Message::Close(reason) => { info!( @@ -141,7 +138,7 @@ async fn handle_text_message( session_id: &str, client_type: &ClientType, state: &Arc, - ws_session: &mut actix_ws::Session, + ws_session: &mut Session, ) { let msg: WsMessage = match serde_json::from_str(raw) { Ok(m) => m, @@ -159,7 +156,6 @@ async fn handle_text_message( match msg { // ── From Agent ──────────────────────────────────────────────────── WsMessage::DisplayFrame { data, .. } if *client_type == ClientType::Agent => { - // Store in frame buffer for late-joiners, then broadcast. state.push_frame(session_id, data.clone()); broadcast_to_viewers(state, session_id, &WsMessage::FrameBroadcast { data, @@ -176,7 +172,6 @@ async fn handle_text_message( WsMessage::AgentInfo { agent_id, resolution, .. } if *client_type == ClientType::Agent => { state.activate_session(session_id, resolution.as_deref()); - // Broadcast session update to all viewers. if let Some(session) = state.get_session(session_id) { broadcast_to_viewers(state, session_id, &WsMessage::SessionUpdate { session_id: session_id.to_string(), @@ -191,12 +186,11 @@ async fn handle_text_message( } WsMessage::Heartbeat if *client_type == ClientType::Agent => { - // Just a keepalive; nothing to do. + // Keepalive — nothing to do. } // ── From Viewer ─────────────────────────────────────────────────── WsMessage::HudCommand { command, params, .. } if *client_type == ClientType::Viewer => { - // Forward to the agent for this session. forward_to_agent(state, session_id, &WsMessage::ForwardHudCommand { command, params }).await; } @@ -213,18 +207,24 @@ async fn handle_text_message( /// Broadcast a message to all **viewer** WebSocket connections for a session. /// -/// In the current implementation we use the frame buffer for display and -/// the broadcast is logged. Once the viewer registry is wired up with per-WS -/// senders, this will fan out to every connected viewer. -async fn broadcast_to_viewers(state: &Arc, session_id: &str, msg: &WsMessage) { - // TODO: maintain a registry of per-viewer actix_ws::Session senders in AppState. - // For now we log and rely on the frame buffer for new viewers. +/// TODO: maintain a registry of per-viewer Session senders in AppState. +/// For now we log and rely on the frame buffer for new viewers. +async fn broadcast_to_viewers( + _state: &Arc, + session_id: &str, + msg: &WsMessage, +) { log::debug!("[ws] broadcast to viewers of session {}: {:?}", session_id, msg.msg_type_debug()); } /// Forward a message to the agent connected to a session. -async fn forward_to_agent(state: &Arc, session_id: &str, msg: &WsMessage) { - // TODO: maintain per-agent mpsc channel in AppState. For now just log. +/// +/// TODO: maintain per-agent mpsc channel in AppState. +async fn forward_to_agent( + _state: &Arc, + session_id: &str, + msg: &WsMessage, +) { log::info!( "[ws] forward to agent in session {}: {:?}", session_id, @@ -235,7 +235,6 @@ async fn forward_to_agent(state: &Arc, session_id: &str, /// Clean up when a client disconnects. fn cleanup(state: &Arc, session_id: &str, client_type: &ClientType) { if *client_type == ClientType::Agent { - // Find and unregister the first agent for this session. let agent_id = state .agents .iter() diff --git a/server/target/.rustc_info.json b/server/target/.rustc_info.json new file mode 100644 index 0000000..b0be072 --- /dev/null +++ b/server/target/.rustc_info.json @@ -0,0 +1 @@ +{"rustc_fingerprint":5640951906056883168,"outputs":{"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/z/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""},"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.94.1 (e408947bf 2026-03-25)\nbinary: rustc\ncommit-hash: e408947bfd200af42db322daf0fadfe7e26d3bd1\ncommit-date: 2026-03-25\nhost: x86_64-unknown-linux-gnu\nrelease: 1.94.1\nLLVM version: 21.1.8\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/server/target/CACHEDIR.TAG b/server/target/CACHEDIR.TAG new file mode 100644 index 0000000..20d7c31 --- /dev/null +++ b/server/target/CACHEDIR.TAG @@ -0,0 +1,3 @@ +Signature: 8a477f597d28d172789f06886806bc55 +# This file is a cache directory tag created by cargo. +# For information about cache directory tags see https://bford.info/cachedir/ diff --git a/server/target/debug/.cargo-lock b/server/target/debug/.cargo-lock new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/.fingerprint/actix-codec-9be49efe4be5f405/dep-lib-actix_codec b/server/target/debug/.fingerprint/actix-codec-9be49efe4be5f405/dep-lib-actix_codec new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/actix-codec-9be49efe4be5f405/dep-lib-actix_codec differ diff --git a/server/target/debug/.fingerprint/actix-codec-9be49efe4be5f405/invoked.timestamp b/server/target/debug/.fingerprint/actix-codec-9be49efe4be5f405/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/actix-codec-9be49efe4be5f405/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-codec-9be49efe4be5f405/lib-actix_codec b/server/target/debug/.fingerprint/actix-codec-9be49efe4be5f405/lib-actix_codec new file mode 100644 index 0000000..0dbd798 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-codec-9be49efe4be5f405/lib-actix_codec @@ -0,0 +1 @@ +f2bd9f90f6ac3776 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-codec-9be49efe4be5f405/lib-actix_codec.json b/server/target/debug/.fingerprint/actix-codec-9be49efe4be5f405/lib-actix_codec.json new file mode 100644 index 0000000..c10a21e --- /dev/null +++ b/server/target/debug/.fingerprint/actix-codec-9be49efe4be5f405/lib-actix_codec.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":17825769038046261360,"profile":2241668132362809309,"path":2111144489340652808,"deps":[[270634688040536827,"futures_sink",false,10518964324922000320],[302948626015856208,"futures_core",false,13411290377882743454],[1363051979936526615,"memchr",false,9034228811413583865],[2251399859588827949,"pin_project_lite",false,15566550207223256564],[3163899731817361221,"tokio_util",false,16827006354653726028],[3870702314125662939,"bytes",false,16948387749507789063],[14757622794040968908,"tracing",false,4994296470301651821],[16909888598953886583,"bitflags",false,351452341284058446],[17541620359049798014,"tokio",false,1041505307722513993]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/actix-codec-9be49efe4be5f405/dep-lib-actix_codec","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-cors-4ab34fad240ef626/dep-lib-actix_cors b/server/target/debug/.fingerprint/actix-cors-4ab34fad240ef626/dep-lib-actix_cors new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/actix-cors-4ab34fad240ef626/dep-lib-actix_cors differ diff --git a/server/target/debug/.fingerprint/actix-cors-4ab34fad240ef626/invoked.timestamp b/server/target/debug/.fingerprint/actix-cors-4ab34fad240ef626/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/actix-cors-4ab34fad240ef626/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-cors-4ab34fad240ef626/lib-actix_cors b/server/target/debug/.fingerprint/actix-cors-4ab34fad240ef626/lib-actix_cors new file mode 100644 index 0000000..140aba3 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-cors-4ab34fad240ef626/lib-actix_cors @@ -0,0 +1 @@ +7e19a34eee83c113 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-cors-4ab34fad240ef626/lib-actix_cors.json b/server/target/debug/.fingerprint/actix-cors-4ab34fad240ef626/lib-actix_cors.json new file mode 100644 index 0000000..6afb233 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-cors-4ab34fad240ef626/lib-actix_cors.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"draft-private-network-access\"]","target":11156619329086439986,"profile":10084214257639516596,"path":13042083808787496766,"deps":[[595566797399950287,"derive_more",false,15974423763050899474],[3666196340704888985,"smallvec",false,5778069751535923719],[5384016313853579615,"actix_utils",false,8099528041380835822],[5855319743879205494,"once_cell",false,11127587921477898461],[5898568623609459682,"futures_util",false,9030658141603746226],[10630857666389190470,"log",false,3024114030112994732],[13944207109742299874,"actix_web",false,7714336643103689080]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/actix-cors-4ab34fad240ef626/dep-lib-actix_cors","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-files-6cb6fd7a505e8e12/dep-lib-actix_files b/server/target/debug/.fingerprint/actix-files-6cb6fd7a505e8e12/dep-lib-actix_files new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/actix-files-6cb6fd7a505e8e12/dep-lib-actix_files differ diff --git a/server/target/debug/.fingerprint/actix-files-6cb6fd7a505e8e12/invoked.timestamp b/server/target/debug/.fingerprint/actix-files-6cb6fd7a505e8e12/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/actix-files-6cb6fd7a505e8e12/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-files-6cb6fd7a505e8e12/lib-actix_files b/server/target/debug/.fingerprint/actix-files-6cb6fd7a505e8e12/lib-actix_files new file mode 100644 index 0000000..266db1f --- /dev/null +++ b/server/target/debug/.fingerprint/actix-files-6cb6fd7a505e8e12/lib-actix_files @@ -0,0 +1 @@ +010601ee56132adb \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-files-6cb6fd7a505e8e12/lib-actix_files.json b/server/target/debug/.fingerprint/actix-files-6cb6fd7a505e8e12/lib-actix_files.json new file mode 100644 index 0000000..b48b3b6 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-files-6cb6fd7a505e8e12/lib-actix_files.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"actix-server\", \"experimental-io-uring\", \"tokio-uring\"]","target":13418831855529891677,"profile":3133228388854823247,"path":8853473111459237316,"deps":[[302948626015856208,"futures_core",false,13411290377882743454],[595566797399950287,"derive_more",false,15974423763050899474],[2251399859588827949,"pin_project_lite",false,15566550207223256564],[3064692270587553479,"actix_service",false,6288656540412859622],[3870702314125662939,"bytes",false,16948387749507789063],[3936459032874673992,"actix_http",false,6440892538286187312],[5384016313853579615,"actix_utils",false,8099528041380835822],[6803352382179706244,"percent_encoding",false,12394381217160922707],[8866577183823226611,"http_range",false,1756894597300055029],[10229185211513642314,"mime",false,9501964963348565344],[10630857666389190470,"log",false,3024114030112994732],[13944207109742299874,"actix_web",false,7714336643103689080],[14335890238902064286,"v_htmlescape",false,6171600771910162109],[16909888598953886583,"bitflags",false,351452341284058446],[18071510856783138481,"mime_guess",false,18308173854331111245]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/actix-files-6cb6fd7a505e8e12/dep-lib-actix_files","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-http-51df65d4b78a71e1/dep-lib-actix_http b/server/target/debug/.fingerprint/actix-http-51df65d4b78a71e1/dep-lib-actix_http new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/actix-http-51df65d4b78a71e1/dep-lib-actix_http differ diff --git a/server/target/debug/.fingerprint/actix-http-51df65d4b78a71e1/invoked.timestamp b/server/target/debug/.fingerprint/actix-http-51df65d4b78a71e1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/actix-http-51df65d4b78a71e1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-http-51df65d4b78a71e1/lib-actix_http b/server/target/debug/.fingerprint/actix-http-51df65d4b78a71e1/lib-actix_http new file mode 100644 index 0000000..46cae4e --- /dev/null +++ b/server/target/debug/.fingerprint/actix-http-51df65d4b78a71e1/lib-actix_http @@ -0,0 +1 @@ +30230365a3a56259 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-http-51df65d4b78a71e1/lib-actix_http.json b/server/target/debug/.fingerprint/actix-http-51df65d4b78a71e1/lib-actix_http.json new file mode 100644 index 0000000..38f25da --- /dev/null +++ b/server/target/debug/.fingerprint/actix-http-51df65d4b78a71e1/lib-actix_http.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"__compress\", \"compress-brotli\", \"compress-gzip\", \"compress-zstd\", \"default\", \"http2\", \"ws\"]","declared_features":"[\"__compress\", \"__tls\", \"actix-tls\", \"compress-brotli\", \"compress-gzip\", \"compress-zstd\", \"default\", \"http2\", \"openssl\", \"rustls\", \"rustls-0_20\", \"rustls-0_21\", \"rustls-0_22\", \"rustls-0_23\", \"ws\"]","target":4427038891525048573,"profile":3133228388854823247,"path":3296964124040799427,"deps":[[302948626015856208,"futures_core",false,13411290377882743454],[595566797399950287,"derive_more",false,15974423763050899474],[1149722784379999706,"bytestring",false,669529360741409501],[1678291836268844980,"brotli",false,16997921249962474543],[2251399859588827949,"pin_project_lite",false,15566550207223256564],[3064692270587553479,"actix_service",false,6288656540412859622],[3163899731817361221,"tokio_util",false,16827006354653726028],[3666196340704888985,"smallvec",false,5778069751535923719],[3870702314125662939,"bytes",false,16948387749507789063],[4052408954973158025,"zstd",false,11056835991048383635],[4405182208873388884,"http",false,9310491409134914378],[5384016313853579615,"actix_utils",false,8099528041380835822],[5532778797167691009,"itoa",false,3720987438297136726],[6163892036024256188,"httparse",false,11920759333305368458],[6304235478050270880,"httpdate",false,15196146147999196178],[6803352382179706244,"percent_encoding",false,12394381217160922707],[10229185211513642314,"mime",false,9501964963348565344],[10456045882549826531,"flate2",false,9000519443062992627],[10724389056617919257,"sha1",false,5228499893392472796],[10842263908529601448,"foldhash",false,9164035082071762222],[11094608732914737535,"actix_rt",false,12375800716233750295],[11916940916964035392,"rand",false,3402606231789118748],[13077212702700853852,"base64",false,15198965977520855066],[13648953096965186997,"actix_codec",false,8518467395182902770],[13763625454224483636,"h2",false,1978366608621382068],[14564311161534545801,"encoding_rs",false,4903795380282457792],[14757622794040968908,"tracing",false,4994296470301651821],[14872012066416984357,"local_channel",false,9945046040331312009],[16909888598953886583,"bitflags",false,351452341284058446],[17331556883491080683,"language_tags",false,16587087802827231162],[17541620359049798014,"tokio",false,1041505307722513993]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/actix-http-51df65d4b78a71e1/dep-lib-actix_http","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-macros-b8ce81399f0ba912/dep-lib-actix_macros b/server/target/debug/.fingerprint/actix-macros-b8ce81399f0ba912/dep-lib-actix_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/actix-macros-b8ce81399f0ba912/dep-lib-actix_macros differ diff --git a/server/target/debug/.fingerprint/actix-macros-b8ce81399f0ba912/invoked.timestamp b/server/target/debug/.fingerprint/actix-macros-b8ce81399f0ba912/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/actix-macros-b8ce81399f0ba912/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-macros-b8ce81399f0ba912/lib-actix_macros b/server/target/debug/.fingerprint/actix-macros-b8ce81399f0ba912/lib-actix_macros new file mode 100644 index 0000000..8e138c8 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-macros-b8ce81399f0ba912/lib-actix_macros @@ -0,0 +1 @@ +1d3685f9d4ff4e53 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-macros-b8ce81399f0ba912/lib-actix_macros.json b/server/target/debug/.fingerprint/actix-macros-b8ce81399f0ba912/lib-actix_macros.json new file mode 100644 index 0000000..cfc4c99 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-macros-b8ce81399f0ba912/lib-actix_macros.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":695003556747458393,"profile":2225463790103693989,"path":186532931410463953,"deps":[[10420560437213941093,"syn",false,16474032542208326673],[13111758008314797071,"quote",false,16220216807289559200]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/actix-macros-b8ce81399f0ba912/dep-lib-actix_macros","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-router-3afa00a708d374be/dep-lib-actix_router b/server/target/debug/.fingerprint/actix-router-3afa00a708d374be/dep-lib-actix_router new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/actix-router-3afa00a708d374be/dep-lib-actix_router differ diff --git a/server/target/debug/.fingerprint/actix-router-3afa00a708d374be/invoked.timestamp b/server/target/debug/.fingerprint/actix-router-3afa00a708d374be/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/actix-router-3afa00a708d374be/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-router-3afa00a708d374be/lib-actix_router b/server/target/debug/.fingerprint/actix-router-3afa00a708d374be/lib-actix_router new file mode 100644 index 0000000..ac2a0dd --- /dev/null +++ b/server/target/debug/.fingerprint/actix-router-3afa00a708d374be/lib-actix_router @@ -0,0 +1 @@ +d67742e69c832ae1 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-router-3afa00a708d374be/lib-actix_router.json b/server/target/debug/.fingerprint/actix-router-3afa00a708d374be/lib-actix_router.json new file mode 100644 index 0000000..c9df6d0 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-router-3afa00a708d374be/lib-actix_router.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"default\", \"http\", \"unicode\"]","target":5816441226683462542,"profile":8106468067017093656,"path":2686308775115508494,"deps":[[1149722784379999706,"bytestring",false,7459227753204301863],[7667230146095136825,"cfg_if",false,15619071270613682610],[7758745775150479896,"regex_lite",false,4193144587253294453],[13548984313718623784,"serde",false,3239216731225659995],[14757622794040968908,"tracing",false,13808690272325206181]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/actix-router-3afa00a708d374be/dep-lib-actix_router","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-router-d76f38e0a8e64888/dep-lib-actix_router b/server/target/debug/.fingerprint/actix-router-d76f38e0a8e64888/dep-lib-actix_router new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/actix-router-d76f38e0a8e64888/dep-lib-actix_router differ diff --git a/server/target/debug/.fingerprint/actix-router-d76f38e0a8e64888/invoked.timestamp b/server/target/debug/.fingerprint/actix-router-d76f38e0a8e64888/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/actix-router-d76f38e0a8e64888/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-router-d76f38e0a8e64888/lib-actix_router b/server/target/debug/.fingerprint/actix-router-d76f38e0a8e64888/lib-actix_router new file mode 100644 index 0000000..bf8b8d7 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-router-d76f38e0a8e64888/lib-actix_router @@ -0,0 +1 @@ +715163bcf4337edc \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-router-d76f38e0a8e64888/lib-actix_router.json b/server/target/debug/.fingerprint/actix-router-d76f38e0a8e64888/lib-actix_router.json new file mode 100644 index 0000000..231cb9d --- /dev/null +++ b/server/target/debug/.fingerprint/actix-router-d76f38e0a8e64888/lib-actix_router.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"http\", \"unicode\"]","declared_features":"[\"default\", \"http\", \"unicode\"]","target":5816441226683462542,"profile":3133228388854823247,"path":2686308775115508494,"deps":[[1149722784379999706,"bytestring",false,669529360741409501],[4405182208873388884,"http",false,9310491409134914378],[7667230146095136825,"cfg_if",false,3415395165544656506],[7758745775150479896,"regex_lite",false,16311285535599567893],[13548984313718623784,"serde",false,7528466600112811085],[14757622794040968908,"tracing",false,4994296470301651821],[17109794424245468765,"regex",false,14617361929869666223]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/actix-router-d76f38e0a8e64888/dep-lib-actix_router","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-rt-9ef78d8b4f6ec944/dep-lib-actix_rt b/server/target/debug/.fingerprint/actix-rt-9ef78d8b4f6ec944/dep-lib-actix_rt new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/actix-rt-9ef78d8b4f6ec944/dep-lib-actix_rt differ diff --git a/server/target/debug/.fingerprint/actix-rt-9ef78d8b4f6ec944/invoked.timestamp b/server/target/debug/.fingerprint/actix-rt-9ef78d8b4f6ec944/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/actix-rt-9ef78d8b4f6ec944/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-rt-9ef78d8b4f6ec944/lib-actix_rt b/server/target/debug/.fingerprint/actix-rt-9ef78d8b4f6ec944/lib-actix_rt new file mode 100644 index 0000000..4be3bec --- /dev/null +++ b/server/target/debug/.fingerprint/actix-rt-9ef78d8b4f6ec944/lib-actix_rt @@ -0,0 +1 @@ +1737237e2eadbfab \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-rt-9ef78d8b4f6ec944/lib-actix_rt.json b/server/target/debug/.fingerprint/actix-rt-9ef78d8b4f6ec944/lib-actix_rt.json new file mode 100644 index 0000000..1f7a9c4 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-rt-9ef78d8b4f6ec944/lib-actix_rt.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"actix-macros\", \"default\", \"io-uring\", \"macros\", \"tokio-uring\"]","target":11467906722111896043,"profile":3906840514083873863,"path":16178319435161083340,"deps":[[302948626015856208,"futures_core",false,13411290377882743454],[17541620359049798014,"tokio",false,1041505307722513993]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/actix-rt-9ef78d8b4f6ec944/dep-lib-actix_rt","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-server-3f5e576e2159e48b/dep-lib-actix_server b/server/target/debug/.fingerprint/actix-server-3f5e576e2159e48b/dep-lib-actix_server new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/actix-server-3f5e576e2159e48b/dep-lib-actix_server differ diff --git a/server/target/debug/.fingerprint/actix-server-3f5e576e2159e48b/invoked.timestamp b/server/target/debug/.fingerprint/actix-server-3f5e576e2159e48b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/actix-server-3f5e576e2159e48b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-server-3f5e576e2159e48b/lib-actix_server b/server/target/debug/.fingerprint/actix-server-3f5e576e2159e48b/lib-actix_server new file mode 100644 index 0000000..2fed733 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-server-3f5e576e2159e48b/lib-actix_server @@ -0,0 +1 @@ +c1a4b14a5d2414f6 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-server-3f5e576e2159e48b/lib-actix_server.json b/server/target/debug/.fingerprint/actix-server-3f5e576e2159e48b/lib-actix_server.json new file mode 100644 index 0000000..27a1374 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-server-3f5e576e2159e48b/lib-actix_server.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\"]","declared_features":"[\"default\", \"io-uring\", \"tokio-uring\"]","target":7486425883630722659,"profile":18362114993302267858,"path":3863660119538446863,"deps":[[302948626015856208,"futures_core",false,13411290377882743454],[3064692270587553479,"actix_service",false,6288656540412859622],[5384016313853579615,"actix_utils",false,8099528041380835822],[5675930438384443948,"mio",false,16711885880016747186],[5898568623609459682,"futures_util",false,9030658141603746226],[11094608732914737535,"actix_rt",false,12375800716233750295],[12614995553916589825,"socket2",false,5027578337550547680],[14757622794040968908,"tracing",false,4994296470301651821],[17541620359049798014,"tokio",false,1041505307722513993]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/actix-server-3f5e576e2159e48b/dep-lib-actix_server","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-service-1140bb22a1523738/dep-lib-actix_service b/server/target/debug/.fingerprint/actix-service-1140bb22a1523738/dep-lib-actix_service new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/actix-service-1140bb22a1523738/dep-lib-actix_service differ diff --git a/server/target/debug/.fingerprint/actix-service-1140bb22a1523738/invoked.timestamp b/server/target/debug/.fingerprint/actix-service-1140bb22a1523738/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/actix-service-1140bb22a1523738/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-service-1140bb22a1523738/lib-actix_service b/server/target/debug/.fingerprint/actix-service-1140bb22a1523738/lib-actix_service new file mode 100644 index 0000000..4988aa2 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-service-1140bb22a1523738/lib-actix_service @@ -0,0 +1 @@ +e6d4be05cecb4557 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-service-1140bb22a1523738/lib-actix_service.json b/server/target/debug/.fingerprint/actix-service-1140bb22a1523738/lib-actix_service.json new file mode 100644 index 0000000..88a0825 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-service-1140bb22a1523738/lib-actix_service.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":15098614942180125221,"profile":18362114993302267858,"path":16623851268273713932,"deps":[[302948626015856208,"futures_core",false,13411290377882743454],[2251399859588827949,"pin_project_lite",false,15566550207223256564]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/actix-service-1140bb22a1523738/dep-lib-actix_service","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-utils-0a91c3d286f4cced/dep-lib-actix_utils b/server/target/debug/.fingerprint/actix-utils-0a91c3d286f4cced/dep-lib-actix_utils new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/actix-utils-0a91c3d286f4cced/dep-lib-actix_utils differ diff --git a/server/target/debug/.fingerprint/actix-utils-0a91c3d286f4cced/invoked.timestamp b/server/target/debug/.fingerprint/actix-utils-0a91c3d286f4cced/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/actix-utils-0a91c3d286f4cced/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-utils-0a91c3d286f4cced/lib-actix_utils b/server/target/debug/.fingerprint/actix-utils-0a91c3d286f4cced/lib-actix_utils new file mode 100644 index 0000000..0ab5e03 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-utils-0a91c3d286f4cced/lib-actix_utils @@ -0,0 +1 @@ +eef1d12ad74d6770 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-utils-0a91c3d286f4cced/lib-actix_utils.json b/server/target/debug/.fingerprint/actix-utils-0a91c3d286f4cced/lib-actix_utils.json new file mode 100644 index 0000000..29999c2 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-utils-0a91c3d286f4cced/lib-actix_utils.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":10635421866110932485,"profile":2241668132362809309,"path":1350205909776615497,"deps":[[2083946343206318420,"local_waker",false,18075911899985205745],[2251399859588827949,"pin_project_lite",false,15566550207223256564]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/actix-utils-0a91c3d286f4cced/dep-lib-actix_utils","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-web-c6a35d4af5058b8e/dep-lib-actix_web b/server/target/debug/.fingerprint/actix-web-c6a35d4af5058b8e/dep-lib-actix_web new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/actix-web-c6a35d4af5058b8e/dep-lib-actix_web differ diff --git a/server/target/debug/.fingerprint/actix-web-c6a35d4af5058b8e/invoked.timestamp b/server/target/debug/.fingerprint/actix-web-c6a35d4af5058b8e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/actix-web-c6a35d4af5058b8e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-web-c6a35d4af5058b8e/lib-actix_web b/server/target/debug/.fingerprint/actix-web-c6a35d4af5058b8e/lib-actix_web new file mode 100644 index 0000000..4206d7a --- /dev/null +++ b/server/target/debug/.fingerprint/actix-web-c6a35d4af5058b8e/lib-actix_web @@ -0,0 +1 @@ +7889f9f94dd40e6b \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-web-c6a35d4af5058b8e/lib-actix_web.json b/server/target/debug/.fingerprint/actix-web-c6a35d4af5058b8e/lib-actix_web.json new file mode 100644 index 0000000..1a41c38 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-web-c6a35d4af5058b8e/lib-actix_web.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"__compress\", \"compat\", \"compat-routing-macros-force-pub\", \"compress-brotli\", \"compress-gzip\", \"compress-zstd\", \"cookies\", \"default\", \"http2\", \"macros\", \"unicode\", \"ws\"]","declared_features":"[\"__compress\", \"__tls\", \"actix-tls\", \"compat\", \"compat-routing-macros-force-pub\", \"compress-brotli\", \"compress-gzip\", \"compress-zstd\", \"cookies\", \"default\", \"experimental-introspection\", \"experimental-io-uring\", \"http2\", \"macros\", \"openssl\", \"rustls\", \"rustls-0_20\", \"rustls-0_21\", \"rustls-0_22\", \"rustls-0_23\", \"secure-cookies\", \"unicode\", \"ws\"]","target":10874021801110526175,"profile":3133228388854823247,"path":7417000660321226529,"deps":[[252395743106140488,"actix_macros",false,6003016643515856413],[302948626015856208,"futures_core",false,13411290377882743454],[595566797399950287,"derive_more",false,15974423763050899474],[1149722784379999706,"bytestring",false,669529360741409501],[1528297757488249563,"url",false,2035166320828714287],[2251399859588827949,"pin_project_lite",false,15566550207223256564],[3014460723014940652,"actix_server",false,17731837615968199873],[3064692270587553479,"actix_service",false,6288656540412859622],[3666196340704888985,"smallvec",false,5778069751535923719],[3870702314125662939,"bytes",false,16948387749507789063],[3936459032874673992,"actix_http",false,6440892538286187312],[5384016313853579615,"actix_utils",false,8099528041380835822],[5532778797167691009,"itoa",false,3720987438297136726],[5855319743879205494,"once_cell",false,11127587921477898461],[5898568623609459682,"futures_util",false,9030658141603746226],[7667230146095136825,"cfg_if",false,3415395165544656506],[7758745775150479896,"regex_lite",false,16311285535599567893],[8010322816087218523,"cookie",false,2098270431290694494],[10019921579555255366,"actix_web_codegen",false,10789396213975012361],[10229185211513642314,"mime",false,9501964963348565344],[10630857666389190470,"log",false,3024114030112994732],[10842263908529601448,"foldhash",false,9164035082071762222],[10947645248417156337,"socket2",false,932167199014333462],[11094608732914737535,"actix_rt",false,12375800716233750295],[11432222519274906849,"time",false,5644807404023172005],[13548984313718623784,"serde",false,7528466600112811085],[13648953096965186997,"actix_codec",false,8518467395182902770],[13795362694956882968,"serde_json",false,7660775102867868865],[14373001148831857156,"impl_more",false,2677504090585289703],[14564311161534545801,"encoding_rs",false,4903795380282457792],[14757622794040968908,"tracing",false,4994296470301651821],[16542808166767769916,"serde_urlencoded",false,17504457600009304860],[17109794424245468765,"regex",false,14617361929869666223],[17331556883491080683,"language_tags",false,16587087802827231162],[17584815051554192320,"actix_router",false,15888193661635350897]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/actix-web-c6a35d4af5058b8e/dep-lib-actix_web","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-web-codegen-26a926d2164490c4/dep-lib-actix_web_codegen b/server/target/debug/.fingerprint/actix-web-codegen-26a926d2164490c4/dep-lib-actix_web_codegen new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/actix-web-codegen-26a926d2164490c4/dep-lib-actix_web_codegen differ diff --git a/server/target/debug/.fingerprint/actix-web-codegen-26a926d2164490c4/invoked.timestamp b/server/target/debug/.fingerprint/actix-web-codegen-26a926d2164490c4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/actix-web-codegen-26a926d2164490c4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-web-codegen-26a926d2164490c4/lib-actix_web_codegen b/server/target/debug/.fingerprint/actix-web-codegen-26a926d2164490c4/lib-actix_web_codegen new file mode 100644 index 0000000..311ad19 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-web-codegen-26a926d2164490c4/lib-actix_web_codegen @@ -0,0 +1 @@ +09d4ec22b1a2bb95 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-web-codegen-26a926d2164490c4/lib-actix_web_codegen.json b/server/target/debug/.fingerprint/actix-web-codegen-26a926d2164490c4/lib-actix_web_codegen.json new file mode 100644 index 0000000..f121b4d --- /dev/null +++ b/server/target/debug/.fingerprint/actix-web-codegen-26a926d2164490c4/lib-actix_web_codegen.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"compat-routing-macros-force-pub\"]","declared_features":"[\"compat-routing-macros-force-pub\", \"default\"]","target":3358744162673330276,"profile":2225463790103693989,"path":1313529623116280018,"deps":[[4289358735036141001,"proc_macro2",false,10178310667270251203],[10420560437213941093,"syn",false,16474032542208326673],[13111758008314797071,"quote",false,16220216807289559200],[17584815051554192320,"actix_router",false,16224925317456885718]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/actix-web-codegen-26a926d2164490c4/dep-lib-actix_web_codegen","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-ws-7eef1fc358da3dcf/dep-lib-actix_ws b/server/target/debug/.fingerprint/actix-ws-7eef1fc358da3dcf/dep-lib-actix_ws new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/actix-ws-7eef1fc358da3dcf/dep-lib-actix_ws differ diff --git a/server/target/debug/.fingerprint/actix-ws-7eef1fc358da3dcf/invoked.timestamp b/server/target/debug/.fingerprint/actix-ws-7eef1fc358da3dcf/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/actix-ws-7eef1fc358da3dcf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-ws-7eef1fc358da3dcf/lib-actix_ws b/server/target/debug/.fingerprint/actix-ws-7eef1fc358da3dcf/lib-actix_ws new file mode 100644 index 0000000..8ac9612 --- /dev/null +++ b/server/target/debug/.fingerprint/actix-ws-7eef1fc358da3dcf/lib-actix_ws @@ -0,0 +1 @@ +d88a6b00d8dfd134 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/actix-ws-7eef1fc358da3dcf/lib-actix_ws.json b/server/target/debug/.fingerprint/actix-ws-7eef1fc358da3dcf/lib-actix_ws.json new file mode 100644 index 0000000..64b49db --- /dev/null +++ b/server/target/debug/.fingerprint/actix-ws-7eef1fc358da3dcf/lib-actix_ws.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"serde\", \"serde-json\"]","target":770230253200391166,"profile":10084214257639516596,"path":12589048971192379685,"deps":[[270634688040536827,"futures_sink",false,10518964324922000320],[302948626015856208,"futures_core",false,13411290377882743454],[1149722784379999706,"bytestring",false,669529360741409501],[3163899731817361221,"tokio_util",false,16827006354653726028],[3936459032874673992,"actix_http",false,6440892538286187312],[13648953096965186997,"actix_codec",false,8518467395182902770],[13944207109742299874,"actix_web",false,7714336643103689080],[17541620359049798014,"tokio",false,1041505307722513993]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/actix-ws-7eef1fc358da3dcf/dep-lib-actix_ws","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/adler2-058d5f8fddc817b0/dep-lib-adler2 b/server/target/debug/.fingerprint/adler2-058d5f8fddc817b0/dep-lib-adler2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/adler2-058d5f8fddc817b0/dep-lib-adler2 differ diff --git a/server/target/debug/.fingerprint/adler2-058d5f8fddc817b0/invoked.timestamp b/server/target/debug/.fingerprint/adler2-058d5f8fddc817b0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/adler2-058d5f8fddc817b0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/adler2-058d5f8fddc817b0/lib-adler2 b/server/target/debug/.fingerprint/adler2-058d5f8fddc817b0/lib-adler2 new file mode 100644 index 0000000..05ce13a --- /dev/null +++ b/server/target/debug/.fingerprint/adler2-058d5f8fddc817b0/lib-adler2 @@ -0,0 +1 @@ +ae64994289fd6e86 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/adler2-058d5f8fddc817b0/lib-adler2.json b/server/target/debug/.fingerprint/adler2-058d5f8fddc817b0/lib-adler2.json new file mode 100644 index 0000000..52403ca --- /dev/null +++ b/server/target/debug/.fingerprint/adler2-058d5f8fddc817b0/lib-adler2.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"core\", \"default\", \"rustc-dep-of-std\", \"std\"]","target":6569825234462323107,"profile":2241668132362809309,"path":6304695095228330996,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/adler2-058d5f8fddc817b0/dep-lib-adler2","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/aho-corasick-8a0f500f228cb24d/dep-lib-aho_corasick b/server/target/debug/.fingerprint/aho-corasick-8a0f500f228cb24d/dep-lib-aho_corasick new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/aho-corasick-8a0f500f228cb24d/dep-lib-aho_corasick differ diff --git a/server/target/debug/.fingerprint/aho-corasick-8a0f500f228cb24d/invoked.timestamp b/server/target/debug/.fingerprint/aho-corasick-8a0f500f228cb24d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/aho-corasick-8a0f500f228cb24d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/aho-corasick-8a0f500f228cb24d/lib-aho_corasick b/server/target/debug/.fingerprint/aho-corasick-8a0f500f228cb24d/lib-aho_corasick new file mode 100644 index 0000000..b27ea19 --- /dev/null +++ b/server/target/debug/.fingerprint/aho-corasick-8a0f500f228cb24d/lib-aho_corasick @@ -0,0 +1 @@ +b1d350d3ad57432c \ No newline at end of file diff --git a/server/target/debug/.fingerprint/aho-corasick-8a0f500f228cb24d/lib-aho_corasick.json b/server/target/debug/.fingerprint/aho-corasick-8a0f500f228cb24d/lib-aho_corasick.json new file mode 100644 index 0000000..acae2c6 --- /dev/null +++ b/server/target/debug/.fingerprint/aho-corasick-8a0f500f228cb24d/lib-aho_corasick.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"perf-literal\", \"std\"]","declared_features":"[\"default\", \"logging\", \"perf-literal\", \"std\"]","target":7534583537114156500,"profile":2241668132362809309,"path":14282663034247825136,"deps":[[1363051979936526615,"memchr",false,9034228811413583865]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aho-corasick-8a0f500f228cb24d/dep-lib-aho_corasick","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/alloc-no-stdlib-67a0bbe710316a62/dep-lib-alloc_no_stdlib b/server/target/debug/.fingerprint/alloc-no-stdlib-67a0bbe710316a62/dep-lib-alloc_no_stdlib new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/alloc-no-stdlib-67a0bbe710316a62/dep-lib-alloc_no_stdlib differ diff --git a/server/target/debug/.fingerprint/alloc-no-stdlib-67a0bbe710316a62/invoked.timestamp b/server/target/debug/.fingerprint/alloc-no-stdlib-67a0bbe710316a62/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/alloc-no-stdlib-67a0bbe710316a62/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/alloc-no-stdlib-67a0bbe710316a62/lib-alloc_no_stdlib b/server/target/debug/.fingerprint/alloc-no-stdlib-67a0bbe710316a62/lib-alloc_no_stdlib new file mode 100644 index 0000000..49be50b --- /dev/null +++ b/server/target/debug/.fingerprint/alloc-no-stdlib-67a0bbe710316a62/lib-alloc_no_stdlib @@ -0,0 +1 @@ +99f0f7d3b8f42a88 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/alloc-no-stdlib-67a0bbe710316a62/lib-alloc_no_stdlib.json b/server/target/debug/.fingerprint/alloc-no-stdlib-67a0bbe710316a62/lib-alloc_no_stdlib.json new file mode 100644 index 0000000..29f24c7 --- /dev/null +++ b/server/target/debug/.fingerprint/alloc-no-stdlib-67a0bbe710316a62/lib-alloc_no_stdlib.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"unsafe\"]","target":1942380541186272485,"profile":2241668132362809309,"path":10723682108415301134,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/alloc-no-stdlib-67a0bbe710316a62/dep-lib-alloc_no_stdlib","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/alloc-stdlib-c68fad3ba3ed4e44/dep-lib-alloc_stdlib b/server/target/debug/.fingerprint/alloc-stdlib-c68fad3ba3ed4e44/dep-lib-alloc_stdlib new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/alloc-stdlib-c68fad3ba3ed4e44/dep-lib-alloc_stdlib differ diff --git a/server/target/debug/.fingerprint/alloc-stdlib-c68fad3ba3ed4e44/invoked.timestamp b/server/target/debug/.fingerprint/alloc-stdlib-c68fad3ba3ed4e44/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/alloc-stdlib-c68fad3ba3ed4e44/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/alloc-stdlib-c68fad3ba3ed4e44/lib-alloc_stdlib b/server/target/debug/.fingerprint/alloc-stdlib-c68fad3ba3ed4e44/lib-alloc_stdlib new file mode 100644 index 0000000..cf56ad0 --- /dev/null +++ b/server/target/debug/.fingerprint/alloc-stdlib-c68fad3ba3ed4e44/lib-alloc_stdlib @@ -0,0 +1 @@ +a4e0fd8245737ae2 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/alloc-stdlib-c68fad3ba3ed4e44/lib-alloc_stdlib.json b/server/target/debug/.fingerprint/alloc-stdlib-c68fad3ba3ed4e44/lib-alloc_stdlib.json new file mode 100644 index 0000000..3487334 --- /dev/null +++ b/server/target/debug/.fingerprint/alloc-stdlib-c68fad3ba3ed4e44/lib-alloc_stdlib.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"unsafe\"]","target":8756844401079878655,"profile":2241668132362809309,"path":11605923374929900138,"deps":[[9611597350722197978,"alloc_no_stdlib",false,9811923812847448217]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/alloc-stdlib-c68fad3ba3ed4e44/dep-lib-alloc_stdlib","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/anstream-00fda7c081e998b0/dep-lib-anstream b/server/target/debug/.fingerprint/anstream-00fda7c081e998b0/dep-lib-anstream new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/anstream-00fda7c081e998b0/dep-lib-anstream differ diff --git a/server/target/debug/.fingerprint/anstream-00fda7c081e998b0/invoked.timestamp b/server/target/debug/.fingerprint/anstream-00fda7c081e998b0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/anstream-00fda7c081e998b0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/anstream-00fda7c081e998b0/lib-anstream b/server/target/debug/.fingerprint/anstream-00fda7c081e998b0/lib-anstream new file mode 100644 index 0000000..c21fe68 --- /dev/null +++ b/server/target/debug/.fingerprint/anstream-00fda7c081e998b0/lib-anstream @@ -0,0 +1 @@ +4993ee5059289ea6 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/anstream-00fda7c081e998b0/lib-anstream.json b/server/target/debug/.fingerprint/anstream-00fda7c081e998b0/lib-anstream.json new file mode 100644 index 0000000..34b40dd --- /dev/null +++ b/server/target/debug/.fingerprint/anstream-00fda7c081e998b0/lib-anstream.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"auto\", \"wincon\"]","declared_features":"[\"auto\", \"default\", \"test\", \"wincon\"]","target":11278316191512382530,"profile":17646343673514590993,"path":18285076981788204047,"deps":[[2608044744973004659,"anstyle_parse",false,10231732548308611484],[5652275617566266604,"anstyle_query",false,7124577077882605794],[7098682853475662231,"anstyle",false,16771901755091886976],[7711617929439759244,"colorchoice",false,7623655162864138271],[7727459912076845739,"is_terminal_polyfill",false,5845803552644641956],[17716308468579268865,"utf8parse",false,449596501245449024]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/anstream-00fda7c081e998b0/dep-lib-anstream","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/anstyle-a8236b7ed4a5a82a/dep-lib-anstyle b/server/target/debug/.fingerprint/anstyle-a8236b7ed4a5a82a/dep-lib-anstyle new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/anstyle-a8236b7ed4a5a82a/dep-lib-anstyle differ diff --git a/server/target/debug/.fingerprint/anstyle-a8236b7ed4a5a82a/invoked.timestamp b/server/target/debug/.fingerprint/anstyle-a8236b7ed4a5a82a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/anstyle-a8236b7ed4a5a82a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/anstyle-a8236b7ed4a5a82a/lib-anstyle b/server/target/debug/.fingerprint/anstyle-a8236b7ed4a5a82a/lib-anstyle new file mode 100644 index 0000000..52c598d --- /dev/null +++ b/server/target/debug/.fingerprint/anstyle-a8236b7ed4a5a82a/lib-anstyle @@ -0,0 +1 @@ +80a300f0c8c3c1e8 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/anstyle-a8236b7ed4a5a82a/lib-anstyle.json b/server/target/debug/.fingerprint/anstyle-a8236b7ed4a5a82a/lib-anstyle.json new file mode 100644 index 0000000..a85d979 --- /dev/null +++ b/server/target/debug/.fingerprint/anstyle-a8236b7ed4a5a82a/lib-anstyle.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":6165884447290141869,"profile":17646343673514590993,"path":16676059437871222334,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/anstyle-a8236b7ed4a5a82a/dep-lib-anstyle","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/anstyle-parse-99a825add116413d/dep-lib-anstyle_parse b/server/target/debug/.fingerprint/anstyle-parse-99a825add116413d/dep-lib-anstyle_parse new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/anstyle-parse-99a825add116413d/dep-lib-anstyle_parse differ diff --git a/server/target/debug/.fingerprint/anstyle-parse-99a825add116413d/invoked.timestamp b/server/target/debug/.fingerprint/anstyle-parse-99a825add116413d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/anstyle-parse-99a825add116413d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/anstyle-parse-99a825add116413d/lib-anstyle_parse b/server/target/debug/.fingerprint/anstyle-parse-99a825add116413d/lib-anstyle_parse new file mode 100644 index 0000000..a32b87f --- /dev/null +++ b/server/target/debug/.fingerprint/anstyle-parse-99a825add116413d/lib-anstyle_parse @@ -0,0 +1 @@ +9cb1bcea8a6afe8d \ No newline at end of file diff --git a/server/target/debug/.fingerprint/anstyle-parse-99a825add116413d/lib-anstyle_parse.json b/server/target/debug/.fingerprint/anstyle-parse-99a825add116413d/lib-anstyle_parse.json new file mode 100644 index 0000000..50a5f1d --- /dev/null +++ b/server/target/debug/.fingerprint/anstyle-parse-99a825add116413d/lib-anstyle_parse.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"utf8\"]","declared_features":"[\"core\", \"default\", \"utf8\"]","target":10225663410500332907,"profile":17646343673514590993,"path":10119570457316637790,"deps":[[17716308468579268865,"utf8parse",false,449596501245449024]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/anstyle-parse-99a825add116413d/dep-lib-anstyle_parse","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/anstyle-query-0b8322a96a58150a/dep-lib-anstyle_query b/server/target/debug/.fingerprint/anstyle-query-0b8322a96a58150a/dep-lib-anstyle_query new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/anstyle-query-0b8322a96a58150a/dep-lib-anstyle_query differ diff --git a/server/target/debug/.fingerprint/anstyle-query-0b8322a96a58150a/invoked.timestamp b/server/target/debug/.fingerprint/anstyle-query-0b8322a96a58150a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/anstyle-query-0b8322a96a58150a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/anstyle-query-0b8322a96a58150a/lib-anstyle_query b/server/target/debug/.fingerprint/anstyle-query-0b8322a96a58150a/lib-anstyle_query new file mode 100644 index 0000000..02df76a --- /dev/null +++ b/server/target/debug/.fingerprint/anstyle-query-0b8322a96a58150a/lib-anstyle_query @@ -0,0 +1 @@ +e25015ce1a95df62 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/anstyle-query-0b8322a96a58150a/lib-anstyle_query.json b/server/target/debug/.fingerprint/anstyle-query-0b8322a96a58150a/lib-anstyle_query.json new file mode 100644 index 0000000..d4213d0 --- /dev/null +++ b/server/target/debug/.fingerprint/anstyle-query-0b8322a96a58150a/lib-anstyle_query.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":10705714425685373190,"profile":112744067883639982,"path":2121986684770291704,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/anstyle-query-0b8322a96a58150a/dep-lib-anstyle_query","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/autocfg-9ef4b25a9bd36cd2/dep-lib-autocfg b/server/target/debug/.fingerprint/autocfg-9ef4b25a9bd36cd2/dep-lib-autocfg new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/autocfg-9ef4b25a9bd36cd2/dep-lib-autocfg differ diff --git a/server/target/debug/.fingerprint/autocfg-9ef4b25a9bd36cd2/invoked.timestamp b/server/target/debug/.fingerprint/autocfg-9ef4b25a9bd36cd2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/autocfg-9ef4b25a9bd36cd2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/autocfg-9ef4b25a9bd36cd2/lib-autocfg b/server/target/debug/.fingerprint/autocfg-9ef4b25a9bd36cd2/lib-autocfg new file mode 100644 index 0000000..27b997c --- /dev/null +++ b/server/target/debug/.fingerprint/autocfg-9ef4b25a9bd36cd2/lib-autocfg @@ -0,0 +1 @@ +2e89bae17d2564d8 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/autocfg-9ef4b25a9bd36cd2/lib-autocfg.json b/server/target/debug/.fingerprint/autocfg-9ef4b25a9bd36cd2/lib-autocfg.json new file mode 100644 index 0000000..d120497 --- /dev/null +++ b/server/target/debug/.fingerprint/autocfg-9ef4b25a9bd36cd2/lib-autocfg.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":6962977057026645649,"profile":2225463790103693989,"path":4200496404839208071,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/autocfg-9ef4b25a9bd36cd2/dep-lib-autocfg","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/base64-05c11f181c9cd5a6/dep-lib-base64 b/server/target/debug/.fingerprint/base64-05c11f181c9cd5a6/dep-lib-base64 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/base64-05c11f181c9cd5a6/dep-lib-base64 differ diff --git a/server/target/debug/.fingerprint/base64-05c11f181c9cd5a6/invoked.timestamp b/server/target/debug/.fingerprint/base64-05c11f181c9cd5a6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/base64-05c11f181c9cd5a6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/base64-05c11f181c9cd5a6/lib-base64 b/server/target/debug/.fingerprint/base64-05c11f181c9cd5a6/lib-base64 new file mode 100644 index 0000000..90d9429 --- /dev/null +++ b/server/target/debug/.fingerprint/base64-05c11f181c9cd5a6/lib-base64 @@ -0,0 +1 @@ +1ad8606b0793edd2 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/base64-05c11f181c9cd5a6/lib-base64.json b/server/target/debug/.fingerprint/base64-05c11f181c9cd5a6/lib-base64.json new file mode 100644 index 0000000..cae1f18 --- /dev/null +++ b/server/target/debug/.fingerprint/base64-05c11f181c9cd5a6/lib-base64.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":13060062996227388079,"profile":2241668132362809309,"path":7880575507139692556,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/base64-05c11f181c9cd5a6/dep-lib-base64","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/bitflags-ed0768bab984093b/dep-lib-bitflags b/server/target/debug/.fingerprint/bitflags-ed0768bab984093b/dep-lib-bitflags new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/bitflags-ed0768bab984093b/dep-lib-bitflags differ diff --git a/server/target/debug/.fingerprint/bitflags-ed0768bab984093b/invoked.timestamp b/server/target/debug/.fingerprint/bitflags-ed0768bab984093b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/bitflags-ed0768bab984093b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/bitflags-ed0768bab984093b/lib-bitflags b/server/target/debug/.fingerprint/bitflags-ed0768bab984093b/lib-bitflags new file mode 100644 index 0000000..3a67bef --- /dev/null +++ b/server/target/debug/.fingerprint/bitflags-ed0768bab984093b/lib-bitflags @@ -0,0 +1 @@ +4e35b7d50a9ce004 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/bitflags-ed0768bab984093b/lib-bitflags.json b/server/target/debug/.fingerprint/bitflags-ed0768bab984093b/lib-bitflags.json new file mode 100644 index 0000000..95818ed --- /dev/null +++ b/server/target/debug/.fingerprint/bitflags-ed0768bab984093b/lib-bitflags.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"serde_core\", \"std\"]","target":7691312148208718491,"profile":2241668132362809309,"path":7367130220366616621,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-ed0768bab984093b/dep-lib-bitflags","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/block-buffer-452d03add8deeb96/dep-lib-block_buffer b/server/target/debug/.fingerprint/block-buffer-452d03add8deeb96/dep-lib-block_buffer new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/block-buffer-452d03add8deeb96/dep-lib-block_buffer differ diff --git a/server/target/debug/.fingerprint/block-buffer-452d03add8deeb96/invoked.timestamp b/server/target/debug/.fingerprint/block-buffer-452d03add8deeb96/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/block-buffer-452d03add8deeb96/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/block-buffer-452d03add8deeb96/lib-block_buffer b/server/target/debug/.fingerprint/block-buffer-452d03add8deeb96/lib-block_buffer new file mode 100644 index 0000000..2814cf6 --- /dev/null +++ b/server/target/debug/.fingerprint/block-buffer-452d03add8deeb96/lib-block_buffer @@ -0,0 +1 @@ +51e0a76267d4edce \ No newline at end of file diff --git a/server/target/debug/.fingerprint/block-buffer-452d03add8deeb96/lib-block_buffer.json b/server/target/debug/.fingerprint/block-buffer-452d03add8deeb96/lib-block_buffer.json new file mode 100644 index 0000000..af226b8 --- /dev/null +++ b/server/target/debug/.fingerprint/block-buffer-452d03add8deeb96/lib-block_buffer.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":4098124618827574291,"profile":2241668132362809309,"path":3896433724770063089,"deps":[[10520923840501062997,"generic_array",false,6277946132491068610]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/block-buffer-452d03add8deeb96/dep-lib-block_buffer","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/brotli-726acff630457cdb/dep-lib-brotli b/server/target/debug/.fingerprint/brotli-726acff630457cdb/dep-lib-brotli new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/brotli-726acff630457cdb/dep-lib-brotli differ diff --git a/server/target/debug/.fingerprint/brotli-726acff630457cdb/invoked.timestamp b/server/target/debug/.fingerprint/brotli-726acff630457cdb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/brotli-726acff630457cdb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/brotli-726acff630457cdb/lib-brotli b/server/target/debug/.fingerprint/brotli-726acff630457cdb/lib-brotli new file mode 100644 index 0000000..b8c4417 --- /dev/null +++ b/server/target/debug/.fingerprint/brotli-726acff630457cdb/lib-brotli @@ -0,0 +1 @@ +2fbc136851bfe4eb \ No newline at end of file diff --git a/server/target/debug/.fingerprint/brotli-726acff630457cdb/lib-brotli.json b/server/target/debug/.fingerprint/brotli-726acff630457cdb/lib-brotli.json new file mode 100644 index 0000000..93b9509 --- /dev/null +++ b/server/target/debug/.fingerprint/brotli-726acff630457cdb/lib-brotli.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc-stdlib\", \"default\", \"std\"]","declared_features":"[\"alloc-stdlib\", \"benchmark\", \"billing\", \"default\", \"disable-timer\", \"disallow_large_window_size\", \"external-literal-probability\", \"ffi-api\", \"float64\", \"floating_point_context_mixing\", \"no-stdlib-ffi-binding\", \"pass-through-ffi-panics\", \"seccomp\", \"sha2\", \"simd\", \"std\", \"validation\", \"vector_scratch_space\"]","target":8433163163091947982,"profile":2241668132362809309,"path":3048443893529734529,"deps":[[9611597350722197978,"alloc_no_stdlib",false,9811923812847448217],[16413620717702030930,"brotli_decompressor",false,2070112568675838450],[17470296833448545982,"alloc_stdlib",false,16319482942118027428]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/brotli-726acff630457cdb/dep-lib-brotli","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/brotli-decompressor-7f35dec671a12241/dep-lib-brotli_decompressor b/server/target/debug/.fingerprint/brotli-decompressor-7f35dec671a12241/dep-lib-brotli_decompressor new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/brotli-decompressor-7f35dec671a12241/dep-lib-brotli_decompressor differ diff --git a/server/target/debug/.fingerprint/brotli-decompressor-7f35dec671a12241/invoked.timestamp b/server/target/debug/.fingerprint/brotli-decompressor-7f35dec671a12241/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/brotli-decompressor-7f35dec671a12241/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/brotli-decompressor-7f35dec671a12241/lib-brotli_decompressor b/server/target/debug/.fingerprint/brotli-decompressor-7f35dec671a12241/lib-brotli_decompressor new file mode 100644 index 0000000..407765b --- /dev/null +++ b/server/target/debug/.fingerprint/brotli-decompressor-7f35dec671a12241/lib-brotli_decompressor @@ -0,0 +1 @@ +f2a9fecc6984ba1c \ No newline at end of file diff --git a/server/target/debug/.fingerprint/brotli-decompressor-7f35dec671a12241/lib-brotli_decompressor.json b/server/target/debug/.fingerprint/brotli-decompressor-7f35dec671a12241/lib-brotli_decompressor.json new file mode 100644 index 0000000..40a71a6 --- /dev/null +++ b/server/target/debug/.fingerprint/brotli-decompressor-7f35dec671a12241/lib-brotli_decompressor.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc-stdlib\", \"std\"]","declared_features":"[\"alloc-stdlib\", \"benchmark\", \"default\", \"disable-timer\", \"ffi-api\", \"pass-through-ffi-panics\", \"seccomp\", \"std\", \"unsafe\"]","target":11312988117123312042,"profile":2241668132362809309,"path":15887265688039106809,"deps":[[9611597350722197978,"alloc_no_stdlib",false,9811923812847448217],[17470296833448545982,"alloc_stdlib",false,16319482942118027428]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/brotli-decompressor-7f35dec671a12241/dep-lib-brotli_decompressor","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/butterfly-server-44a930d20c6d99e6/invoked.timestamp b/server/target/debug/.fingerprint/butterfly-server-44a930d20c6d99e6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/butterfly-server-44a930d20c6d99e6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/butterfly-server-44a930d20c6d99e6/output-bin-butterfly-server b/server/target/debug/.fingerprint/butterfly-server-44a930d20c6d99e6/output-bin-butterfly-server new file mode 100644 index 0000000..724eaa5 --- /dev/null +++ b/server/target/debug/.fingerprint/butterfly-server-44a930d20c6d99e6/output-bin-butterfly-server @@ -0,0 +1,20 @@ +{"$message_type":"diagnostic","message":"couldn't read `src/../../static/index.html`: No such file or directory (os error 2)","code":null,"level":"error","spans":[{"file_name":"src/main.rs","byte_start":2617,"byte_end":2656,"line_start":79,"line_end":79,"column_start":27,"column_end":66,"is_primary":true,"text":[{"text":" .body(include_str!(\"../../static/index.html\"))","highlight_start":27,"highlight_end":66}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/main.rs","byte_start":2617,"byte_end":2656,"line_start":79,"line_end":79,"column_start":27,"column_end":66,"is_primary":false,"text":[{"text":" .body(include_str!(\"../../static/index.html\"))","highlight_start":27,"highlight_end":66}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"include_str!","def_site_span":{"file_name":"/rustc/e408947bfd200af42db322daf0fadfe7e26d3bd1/library/core/src/macros/mod.rs","byte_start":47126,"byte_end":47150,"line_start":1320,"line_end":1320,"column_start":5,"column_end":29,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"there is a file with the same name in a different directory","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":2630,"byte_end":2655,"line_start":79,"line_end":79,"column_start":40,"column_end":65,"is_primary":true,"text":[{"text":" .body(include_str!(\"../../static/index.html\"))","highlight_start":40,"highlight_end":65}],"label":null,"suggested_replacement":"\"../static/index.html\"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror\u001b[0m\u001b[1m: couldn't read `src/../../static/index.html`: No such file or directory (os error 2)\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:79:27\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m79\u001b[0m \u001b[1m\u001b[94m|\u001b[0m .body(include_str!(\"../../static/index.html\"))\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[96mhelp\u001b[0m: there is a file with the same name in a different directory\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m79\u001b[0m \u001b[91m- \u001b[0m .body(include_str!(\u001b[91m\"../../static/index.html\"\u001b[0m))\n\u001b[1m\u001b[94m79\u001b[0m \u001b[92m+ \u001b[0m .body(include_str!(\u001b[92m\"../static/index.html\"\u001b[0m))\n \u001b[1m\u001b[94m|\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"couldn't read `src/../../static/index.html`: No such file or directory (os error 2)","code":null,"level":"error","spans":[{"file_name":"src/main.rs","byte_start":2864,"byte_end":2903,"line_start":84,"line_end":84,"column_start":27,"column_end":66,"is_primary":true,"text":[{"text":" .body(include_str!(\"../../static/index.html\"))","highlight_start":27,"highlight_end":66}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/main.rs","byte_start":2864,"byte_end":2903,"line_start":84,"line_end":84,"column_start":27,"column_end":66,"is_primary":false,"text":[{"text":" .body(include_str!(\"../../static/index.html\"))","highlight_start":27,"highlight_end":66}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"include_str!","def_site_span":{"file_name":"/rustc/e408947bfd200af42db322daf0fadfe7e26d3bd1/library/core/src/macros/mod.rs","byte_start":47126,"byte_end":47150,"line_start":1320,"line_end":1320,"column_start":5,"column_end":29,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"there is a file with the same name in a different directory","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":2877,"byte_end":2902,"line_start":84,"line_end":84,"column_start":40,"column_end":65,"is_primary":true,"text":[{"text":" .body(include_str!(\"../../static/index.html\"))","highlight_start":40,"highlight_end":65}],"label":null,"suggested_replacement":"\"../static/index.html\"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror\u001b[0m\u001b[1m: couldn't read `src/../../static/index.html`: No such file or directory (os error 2)\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:84:27\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m84\u001b[0m \u001b[1m\u001b[94m|\u001b[0m .body(include_str!(\"../../static/index.html\"))\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[96mhelp\u001b[0m: there is a file with the same name in a different directory\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m84\u001b[0m \u001b[91m- \u001b[0m .body(include_str!(\u001b[91m\"../../static/index.html\"\u001b[0m))\n\u001b[1m\u001b[94m84\u001b[0m \u001b[92m+ \u001b[0m .body(include_str!(\u001b[92m\"../static/index.html\"\u001b[0m))\n \u001b[1m\u001b[94m|\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unresolved import `actix_ws::SessionExt`","code":{"code":"E0432","explanation":"An import was unresolved.\n\nErroneous code example:\n\n```compile_fail,E0432\nuse something::Foo; // error: unresolved import `something::Foo`.\n```\n\nIn Rust 2015, paths in `use` statements are relative to the crate root. To\nimport items relative to the current and parent modules, use the `self::` and\n`super::` prefixes, respectively.\n\nIn Rust 2018 or later, paths in `use` statements are relative to the current\nmodule unless they begin with the name of a crate or a literal `crate::`, in\nwhich case they start from the crate root. As in Rust 2015 code, the `self::`\nand `super::` prefixes refer to the current and parent modules respectively.\n\nAlso verify that you didn't misspell the import name and that the import exists\nin the module from where you tried to import it. Example:\n\n```\nuse self::something::Foo; // Ok.\n\nmod something {\n pub struct Foo;\n}\n# fn main() {}\n```\n\nIf you tried to use a module from an external crate and are using Rust 2015,\nyou may have missed the `extern crate` declaration (which is usually placed in\nthe crate root):\n\n```edition2015\nextern crate core; // Required to use the `core` crate in Rust 2015.\n\nuse core::any;\n# fn main() {}\n```\n\nSince Rust 2018 the `extern crate` declaration is not required and\nyou can instead just `use` it:\n\n```edition2018\nuse core::any; // No extern crate required in Rust 2018.\n# fn main() {}\n```\n"},"level":"error","spans":[{"file_name":"src/ws/handler.rs","byte_start":81,"byte_end":91,"line_start":4,"line_end":4,"column_start":25,"column_end":35,"is_primary":true,"text":[{"text":"use actix_ws::{Message, SessionExt};","highlight_start":25,"highlight_end":35}],"label":"no `SessionExt` in the root","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"a similar name exists in the module","code":null,"level":"help","spans":[{"file_name":"src/ws/handler.rs","byte_start":81,"byte_end":91,"line_start":4,"line_end":4,"column_start":25,"column_end":35,"is_primary":true,"text":[{"text":"use actix_ws::{Message, SessionExt};","highlight_start":25,"highlight_end":35}],"label":null,"suggested_replacement":"Session","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0432]\u001b[0m\u001b[1m: unresolved import `actix_ws::SessionExt`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/ws/handler.rs:4:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use actix_ws::{Message, SessionExt};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[91m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[91mno `SessionExt` in the root\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[91mhelp: a similar name exists in the module: `Session`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `log::debug`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/stream/media.rs","byte_start":95,"byte_end":105,"line_start":5,"line_end":5,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":"use log::debug;","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/stream/media.rs","byte_start":91,"byte_end":107,"line_start":5,"line_end":6,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use log::debug;","highlight_start":1,"highlight_end":16},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `log::debug`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/stream/media.rs:5:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use log::debug;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused import: `std::sync::Arc`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":69,"byte_end":83,"line_start":8,"line_end":8,"column_start":5,"column_end":19,"is_primary":true,"text":[{"text":"use std::sync::Arc;","highlight_start":5,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":65,"byte_end":85,"line_start":8,"line_end":9,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::sync::Arc;","highlight_start":1,"highlight_end":20},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `std::sync::Arc`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:8:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use std::sync::Arc;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"no method named `query_param` found for struct `HttpRequest` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"src/ws/handler.rs","byte_start":1131,"byte_end":1144,"line_start":33,"line_end":34,"column_start":23,"column_end":10,"is_primary":false,"text":[{"text":" let client_type = req","highlight_start":23,"highlight_end":26},{"text":" .query_param::(\"client_type\")","highlight_start":1,"highlight_end":10}],"label":"","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/ws/handler.rs","byte_start":1144,"byte_end":1155,"line_start":34,"line_end":34,"column_start":10,"column_end":21,"is_primary":true,"text":[{"text":" .query_param::(\"client_type\")","highlight_start":10,"highlight_end":21}],"label":"method not found in `HttpRequest`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[91merror[E0599]\u001b[0m\u001b[1m: no method named `query_param` found for struct `HttpRequest` in the current scope\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/ws/handler.rs:34:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m33\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let client_type = req\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m _______________________-\u001b[0m\n\u001b[1m\u001b[94m34\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m .query_param::(\"client_type\")\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-\u001b[0m\u001b[1m\u001b[91m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91mmethod not found in `HttpRequest`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|_________|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"the trait bound `fn(Data>) -> ... {health}: HttpServiceFactory` is not satisfied","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/api/mod.rs","byte_start":216,"byte_end":230,"line_start":10,"line_end":10,"column_start":22,"column_end":36,"is_primary":true,"text":[{"text":" .service(health::health)","highlight_start":22,"highlight_end":36}],"label":"the trait `HttpServiceFactory` is not implemented for fn item `fn(Data>) -> impl Future {health}`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/api/mod.rs","byte_start":208,"byte_end":215,"line_start":10,"line_end":10,"column_start":14,"column_end":21,"is_primary":false,"text":[{"text":" .service(health::health)","highlight_start":14,"highlight_end":21}],"label":"required by a bound introduced by this call","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the following other types implement trait `HttpServiceFactory`:\n (A, B)\n (A, B, C)\n (A, B, C, D)\n (A, B, C, D, E)\n (A, B, C, D, E, F)\n (A, B, C, D, E, F, G)\n (A, B, C, D, E, F, G, H)\n (A, B, C, D, E, F, G, H, I)\nand 10 others","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `actix_web::Scope::::service`","code":null,"level":"note","spans":[{"file_name":"/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs","byte_start":7773,"byte_end":7780,"line_start":232,"line_end":232,"column_start":12,"column_end":19,"is_primary":false,"text":[{"text":" pub fn service(mut self, factory: F) -> Self","highlight_start":12,"highlight_end":19}],"label":"required by a bound in this associated function","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs","byte_start":7835,"byte_end":7853,"line_start":234,"line_end":234,"column_start":12,"column_end":30,"is_primary":true,"text":[{"text":" F: HttpServiceFactory + 'static,","highlight_start":12,"highlight_end":30}],"label":"required by this bound in `Scope::::service`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"the full name for the type has been written to '/home/z/my-project/projects/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-2803338379466717253.txt'","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"consider using `--verbose` to print the full type name to the console","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0277]\u001b[0m\u001b[1m: the trait bound `fn(Data>) -> ... {health}: HttpServiceFactory` is not satisfied\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/api/mod.rs:10:22\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 10\u001b[0m \u001b[1m\u001b[94m|\u001b[0m .service(health::health)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91mthe trait `HttpServiceFactory` is not implemented for fn item `fn(Data>) -> impl Future {health}`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mrequired by a bound introduced by this call\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: the following other types implement trait `HttpServiceFactory`:\n (A, B)\n (A, B, C)\n (A, B, C, D)\n (A, B, C, D, E)\n (A, B, C, D, E, F)\n (A, B, C, D, E, F, G)\n (A, B, C, D, E, F, G, H)\n (A, B, C, D, E, F, G, H, I)\n and 10 others\n\u001b[1m\u001b[92mnote\u001b[0m: required by a bound in `actix_web::Scope::::service`\n \u001b[1m\u001b[94m--> \u001b[0m/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs:234:12\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m232\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub fn service(mut self, factory: F) -> Self\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[94mrequired by a bound in this associated function\u001b[0m\n\u001b[1m\u001b[94m233\u001b[0m \u001b[1m\u001b[94m|\u001b[0m where\n\u001b[1m\u001b[94m234\u001b[0m \u001b[1m\u001b[94m|\u001b[0m F: HttpServiceFactory + 'static,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[92mrequired by this bound in `Scope::::service`\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: the full name for the type has been written to '/home/z/my-project/projects/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-2803338379466717253.txt'\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: consider using `--verbose` to print the full type name to the console\n\n"} +{"$message_type":"diagnostic","message":"the trait bound `fn(Data>) -> ... {list_sessions}: HttpServiceFactory` is not satisfied","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/api/mod.rs","byte_start":253,"byte_end":276,"line_start":11,"line_end":11,"column_start":22,"column_end":45,"is_primary":true,"text":[{"text":" .service(sessions::list_sessions)","highlight_start":22,"highlight_end":45}],"label":"the trait `HttpServiceFactory` is not implemented for fn item `fn(Data>) -> impl Future {list_sessions}`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/api/mod.rs","byte_start":245,"byte_end":252,"line_start":11,"line_end":11,"column_start":14,"column_end":21,"is_primary":false,"text":[{"text":" .service(sessions::list_sessions)","highlight_start":14,"highlight_end":21}],"label":"required by a bound introduced by this call","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the following other types implement trait `HttpServiceFactory`:\n (A, B)\n (A, B, C)\n (A, B, C, D)\n (A, B, C, D, E)\n (A, B, C, D, E, F)\n (A, B, C, D, E, F, G)\n (A, B, C, D, E, F, G, H)\n (A, B, C, D, E, F, G, H, I)\nand 10 others","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `actix_web::Scope::::service`","code":null,"level":"note","spans":[{"file_name":"/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs","byte_start":7773,"byte_end":7780,"line_start":232,"line_end":232,"column_start":12,"column_end":19,"is_primary":false,"text":[{"text":" pub fn service(mut self, factory: F) -> Self","highlight_start":12,"highlight_end":19}],"label":"required by a bound in this associated function","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs","byte_start":7835,"byte_end":7853,"line_start":234,"line_end":234,"column_start":12,"column_end":30,"is_primary":true,"text":[{"text":" F: HttpServiceFactory + 'static,","highlight_start":12,"highlight_end":30}],"label":"required by this bound in `Scope::::service`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"the full name for the type has been written to '/home/z/my-project/projects/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-2609923016590404324.txt'","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"consider using `--verbose` to print the full type name to the console","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0277]\u001b[0m\u001b[1m: the trait bound `fn(Data>) -> ... {list_sessions}: HttpServiceFactory` is not satisfied\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/api/mod.rs:11:22\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 11\u001b[0m \u001b[1m\u001b[94m|\u001b[0m .service(sessions::list_sessions)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91mthe trait `HttpServiceFactory` is not implemented for fn item `fn(Data>) -> impl Future {list_sessions}`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mrequired by a bound introduced by this call\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: the following other types implement trait `HttpServiceFactory`:\n (A, B)\n (A, B, C)\n (A, B, C, D)\n (A, B, C, D, E)\n (A, B, C, D, E, F)\n (A, B, C, D, E, F, G)\n (A, B, C, D, E, F, G, H)\n (A, B, C, D, E, F, G, H, I)\n and 10 others\n\u001b[1m\u001b[92mnote\u001b[0m: required by a bound in `actix_web::Scope::::service`\n \u001b[1m\u001b[94m--> \u001b[0m/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs:234:12\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m232\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub fn service(mut self, factory: F) -> Self\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[94mrequired by a bound in this associated function\u001b[0m\n\u001b[1m\u001b[94m233\u001b[0m \u001b[1m\u001b[94m|\u001b[0m where\n\u001b[1m\u001b[94m234\u001b[0m \u001b[1m\u001b[94m|\u001b[0m F: HttpServiceFactory + 'static,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[92mrequired by this bound in `Scope::::service`\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: the full name for the type has been written to '/home/z/my-project/projects/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-2609923016590404324.txt'\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: consider using `--verbose` to print the full type name to the console\n\n"} +{"$message_type":"diagnostic","message":"the trait bound `fn(Data>) -> ... {create_session}: HttpServiceFactory` is not satisfied","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/api/mod.rs","byte_start":299,"byte_end":323,"line_start":12,"line_end":12,"column_start":22,"column_end":46,"is_primary":true,"text":[{"text":" .service(sessions::create_session)","highlight_start":22,"highlight_end":46}],"label":"the trait `HttpServiceFactory` is not implemented for fn item `fn(Data>) -> impl Future {create_session}`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/api/mod.rs","byte_start":291,"byte_end":298,"line_start":12,"line_end":12,"column_start":14,"column_end":21,"is_primary":false,"text":[{"text":" .service(sessions::create_session)","highlight_start":14,"highlight_end":21}],"label":"required by a bound introduced by this call","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the following other types implement trait `HttpServiceFactory`:\n (A, B)\n (A, B, C)\n (A, B, C, D)\n (A, B, C, D, E)\n (A, B, C, D, E, F)\n (A, B, C, D, E, F, G)\n (A, B, C, D, E, F, G, H)\n (A, B, C, D, E, F, G, H, I)\nand 10 others","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `actix_web::Scope::::service`","code":null,"level":"note","spans":[{"file_name":"/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs","byte_start":7773,"byte_end":7780,"line_start":232,"line_end":232,"column_start":12,"column_end":19,"is_primary":false,"text":[{"text":" pub fn service(mut self, factory: F) -> Self","highlight_start":12,"highlight_end":19}],"label":"required by a bound in this associated function","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs","byte_start":7835,"byte_end":7853,"line_start":234,"line_end":234,"column_start":12,"column_end":30,"is_primary":true,"text":[{"text":" F: HttpServiceFactory + 'static,","highlight_start":12,"highlight_end":30}],"label":"required by this bound in `Scope::::service`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"the full name for the type has been written to '/home/z/my-project/projects/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-15422885921286665779.txt'","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"consider using `--verbose` to print the full type name to the console","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0277]\u001b[0m\u001b[1m: the trait bound `fn(Data>) -> ... {create_session}: HttpServiceFactory` is not satisfied\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/api/mod.rs:12:22\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 12\u001b[0m \u001b[1m\u001b[94m|\u001b[0m .service(sessions::create_session)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91mthe trait `HttpServiceFactory` is not implemented for fn item `fn(Data>) -> impl Future {create_session}`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mrequired by a bound introduced by this call\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: the following other types implement trait `HttpServiceFactory`:\n (A, B)\n (A, B, C)\n (A, B, C, D)\n (A, B, C, D, E)\n (A, B, C, D, E, F)\n (A, B, C, D, E, F, G)\n (A, B, C, D, E, F, G, H)\n (A, B, C, D, E, F, G, H, I)\n and 10 others\n\u001b[1m\u001b[92mnote\u001b[0m: required by a bound in `actix_web::Scope::::service`\n \u001b[1m\u001b[94m--> \u001b[0m/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs:234:12\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m232\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub fn service(mut self, factory: F) -> Self\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[94mrequired by a bound in this associated function\u001b[0m\n\u001b[1m\u001b[94m233\u001b[0m \u001b[1m\u001b[94m|\u001b[0m where\n\u001b[1m\u001b[94m234\u001b[0m \u001b[1m\u001b[94m|\u001b[0m F: HttpServiceFactory + 'static,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[92mrequired by this bound in `Scope::::service`\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: the full name for the type has been written to '/home/z/my-project/projects/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-15422885921286665779.txt'\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: consider using `--verbose` to print the full type name to the console\n\n"} +{"$message_type":"diagnostic","message":"the trait bound `fn(Data>, ...) -> ... {get_session}: HttpServiceFactory` is not satisfied","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/api/mod.rs","byte_start":346,"byte_end":367,"line_start":13,"line_end":13,"column_start":22,"column_end":43,"is_primary":true,"text":[{"text":" .service(sessions::get_session)","highlight_start":22,"highlight_end":43}],"label":"the trait `HttpServiceFactory` is not implemented for fn item `fn(Data>, Path) -> ... {get_session}`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/api/mod.rs","byte_start":338,"byte_end":345,"line_start":13,"line_end":13,"column_start":14,"column_end":21,"is_primary":false,"text":[{"text":" .service(sessions::get_session)","highlight_start":14,"highlight_end":21}],"label":"required by a bound introduced by this call","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the following other types implement trait `HttpServiceFactory`:\n (A, B)\n (A, B, C)\n (A, B, C, D)\n (A, B, C, D, E)\n (A, B, C, D, E, F)\n (A, B, C, D, E, F, G)\n (A, B, C, D, E, F, G, H)\n (A, B, C, D, E, F, G, H, I)\nand 10 others","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `actix_web::Scope::::service`","code":null,"level":"note","spans":[{"file_name":"/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs","byte_start":7773,"byte_end":7780,"line_start":232,"line_end":232,"column_start":12,"column_end":19,"is_primary":false,"text":[{"text":" pub fn service(mut self, factory: F) -> Self","highlight_start":12,"highlight_end":19}],"label":"required by a bound in this associated function","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs","byte_start":7835,"byte_end":7853,"line_start":234,"line_end":234,"column_start":12,"column_end":30,"is_primary":true,"text":[{"text":" F: HttpServiceFactory + 'static,","highlight_start":12,"highlight_end":30}],"label":"required by this bound in `Scope::::service`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"the full name for the type has been written to '/home/z/my-project/projects/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-5810549072949164016.txt'","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"consider using `--verbose` to print the full type name to the console","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0277]\u001b[0m\u001b[1m: the trait bound `fn(Data>, ...) -> ... {get_session}: HttpServiceFactory` is not satisfied\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/api/mod.rs:13:22\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m .service(sessions::get_session)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91mthe trait `HttpServiceFactory` is not implemented for fn item `fn(Data>, Path) -> ... {get_session}`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mrequired by a bound introduced by this call\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: the following other types implement trait `HttpServiceFactory`:\n (A, B)\n (A, B, C)\n (A, B, C, D)\n (A, B, C, D, E)\n (A, B, C, D, E, F)\n (A, B, C, D, E, F, G)\n (A, B, C, D, E, F, G, H)\n (A, B, C, D, E, F, G, H, I)\n and 10 others\n\u001b[1m\u001b[92mnote\u001b[0m: required by a bound in `actix_web::Scope::::service`\n \u001b[1m\u001b[94m--> \u001b[0m/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs:234:12\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m232\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub fn service(mut self, factory: F) -> Self\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[94mrequired by a bound in this associated function\u001b[0m\n\u001b[1m\u001b[94m233\u001b[0m \u001b[1m\u001b[94m|\u001b[0m where\n\u001b[1m\u001b[94m234\u001b[0m \u001b[1m\u001b[94m|\u001b[0m F: HttpServiceFactory + 'static,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[92mrequired by this bound in `Scope::::service`\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: the full name for the type has been written to '/home/z/my-project/projects/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-5810549072949164016.txt'\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: consider using `--verbose` to print the full type name to the console\n\n"} +{"$message_type":"diagnostic","message":"the trait bound `fn(Data>, ...) -> ... {delete_session}: HttpServiceFactory` is not satisfied","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/api/mod.rs","byte_start":390,"byte_end":414,"line_start":14,"line_end":14,"column_start":22,"column_end":46,"is_primary":true,"text":[{"text":" .service(sessions::delete_session)","highlight_start":22,"highlight_end":46}],"label":"the trait `HttpServiceFactory` is not implemented for fn item `fn(Data>, Path) -> ... {delete_session}`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/api/mod.rs","byte_start":382,"byte_end":389,"line_start":14,"line_end":14,"column_start":14,"column_end":21,"is_primary":false,"text":[{"text":" .service(sessions::delete_session)","highlight_start":14,"highlight_end":21}],"label":"required by a bound introduced by this call","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the following other types implement trait `HttpServiceFactory`:\n (A, B)\n (A, B, C)\n (A, B, C, D)\n (A, B, C, D, E)\n (A, B, C, D, E, F)\n (A, B, C, D, E, F, G)\n (A, B, C, D, E, F, G, H)\n (A, B, C, D, E, F, G, H, I)\nand 10 others","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `actix_web::Scope::::service`","code":null,"level":"note","spans":[{"file_name":"/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs","byte_start":7773,"byte_end":7780,"line_start":232,"line_end":232,"column_start":12,"column_end":19,"is_primary":false,"text":[{"text":" pub fn service(mut self, factory: F) -> Self","highlight_start":12,"highlight_end":19}],"label":"required by a bound in this associated function","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs","byte_start":7835,"byte_end":7853,"line_start":234,"line_end":234,"column_start":12,"column_end":30,"is_primary":true,"text":[{"text":" F: HttpServiceFactory + 'static,","highlight_start":12,"highlight_end":30}],"label":"required by this bound in `Scope::::service`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"the full name for the type has been written to '/home/z/my-project/projects/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-1533165293553270266.txt'","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"consider using `--verbose` to print the full type name to the console","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0277]\u001b[0m\u001b[1m: the trait bound `fn(Data>, ...) -> ... {delete_session}: HttpServiceFactory` is not satisfied\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/api/mod.rs:14:22\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 14\u001b[0m \u001b[1m\u001b[94m|\u001b[0m .service(sessions::delete_session)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91mthe trait `HttpServiceFactory` is not implemented for fn item `fn(Data>, Path) -> ... {delete_session}`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mrequired by a bound introduced by this call\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: the following other types implement trait `HttpServiceFactory`:\n (A, B)\n (A, B, C)\n (A, B, C, D)\n (A, B, C, D, E)\n (A, B, C, D, E, F)\n (A, B, C, D, E, F, G)\n (A, B, C, D, E, F, G, H)\n (A, B, C, D, E, F, G, H, I)\n and 10 others\n\u001b[1m\u001b[92mnote\u001b[0m: required by a bound in `actix_web::Scope::::service`\n \u001b[1m\u001b[94m--> \u001b[0m/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs:234:12\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m232\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub fn service(mut self, factory: F) -> Self\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[94mrequired by a bound in this associated function\u001b[0m\n\u001b[1m\u001b[94m233\u001b[0m \u001b[1m\u001b[94m|\u001b[0m where\n\u001b[1m\u001b[94m234\u001b[0m \u001b[1m\u001b[94m|\u001b[0m F: HttpServiceFactory + 'static,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[92mrequired by this bound in `Scope::::service`\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: the full name for the type has been written to '/home/z/my-project/projects/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-1533165293553270266.txt'\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: consider using `--verbose` to print the full type name to the console\n\n"} +{"$message_type":"diagnostic","message":"the trait bound `fn(Data<...>, ..., ...) -> ... {send_hud_command}: HttpServiceFactory` is not satisfied","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/api/mod.rs","byte_start":437,"byte_end":463,"line_start":15,"line_end":15,"column_start":22,"column_end":48,"is_primary":true,"text":[{"text":" .service(sessions::send_hud_command),","highlight_start":22,"highlight_end":48}],"label":"the trait `HttpServiceFactory` is not implemented for fn item `fn(Data>, Path, ...) -> ... {send_hud_command}`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"src/api/mod.rs","byte_start":429,"byte_end":436,"line_start":15,"line_end":15,"column_start":14,"column_end":21,"is_primary":false,"text":[{"text":" .service(sessions::send_hud_command),","highlight_start":14,"highlight_end":21}],"label":"required by a bound introduced by this call","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the following other types implement trait `HttpServiceFactory`:\n (A, B)\n (A, B, C)\n (A, B, C, D)\n (A, B, C, D, E)\n (A, B, C, D, E, F)\n (A, B, C, D, E, F, G)\n (A, B, C, D, E, F, G, H)\n (A, B, C, D, E, F, G, H, I)\nand 10 others","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"required by a bound in `actix_web::Scope::::service`","code":null,"level":"note","spans":[{"file_name":"/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs","byte_start":7773,"byte_end":7780,"line_start":232,"line_end":232,"column_start":12,"column_end":19,"is_primary":false,"text":[{"text":" pub fn service(mut self, factory: F) -> Self","highlight_start":12,"highlight_end":19}],"label":"required by a bound in this associated function","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs","byte_start":7835,"byte_end":7853,"line_start":234,"line_end":234,"column_start":12,"column_end":30,"is_primary":true,"text":[{"text":" F: HttpServiceFactory + 'static,","highlight_start":12,"highlight_end":30}],"label":"required by this bound in `Scope::::service`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"the full name for the type has been written to '/home/z/my-project/projects/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-3794530726528928362.txt'","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"consider using `--verbose` to print the full type name to the console","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0277]\u001b[0m\u001b[1m: the trait bound `fn(Data<...>, ..., ...) -> ... {send_hud_command}: HttpServiceFactory` is not satisfied\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/api/mod.rs:15:22\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 15\u001b[0m \u001b[1m\u001b[94m|\u001b[0m .service(sessions::send_hud_command),\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91mthe trait `HttpServiceFactory` is not implemented for fn item `fn(Data>, Path, ...) -> ... {send_hud_command}`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mrequired by a bound introduced by this call\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: the following other types implement trait `HttpServiceFactory`:\n (A, B)\n (A, B, C)\n (A, B, C, D)\n (A, B, C, D, E)\n (A, B, C, D, E, F)\n (A, B, C, D, E, F, G)\n (A, B, C, D, E, F, G, H)\n (A, B, C, D, E, F, G, H, I)\n and 10 others\n\u001b[1m\u001b[92mnote\u001b[0m: required by a bound in `actix_web::Scope::::service`\n \u001b[1m\u001b[94m--> \u001b[0m/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs:234:12\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m232\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub fn service(mut self, factory: F) -> Self\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[94mrequired by a bound in this associated function\u001b[0m\n\u001b[1m\u001b[94m233\u001b[0m \u001b[1m\u001b[94m|\u001b[0m where\n\u001b[1m\u001b[94m234\u001b[0m \u001b[1m\u001b[94m|\u001b[0m F: HttpServiceFactory + 'static,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[92mrequired by this bound in `Scope::::service`\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: the full name for the type has been written to '/home/z/my-project/projects/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-3794530726528928362.txt'\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: consider using `--verbose` to print the full type name to the console\n\n"} +{"$message_type":"diagnostic","message":"`FrameBuffer` doesn't implement `std::fmt::Debug`","code":{"code":"E0277","explanation":"You tried to use a type which doesn't implement some trait in a place which\nexpected that trait.\n\nErroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func(foo: T) {\n foo.bar();\n}\n\nfn main() {\n // we now call the method with the i32 type, which doesn't implement\n // the Foo trait\n some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n fn bar(&self);\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n fn bar(&self) {}\n}\n\nfn some_func(foo: T) {\n foo.bar(); // we can now use this method since i32 implements the\n // Foo trait\n}\n\nfn main() {\n some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func(foo: T) {\n println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n // implemented for the type `T`\n}\n\nfn main() {\n // We now call the method with the i32 type,\n // which *does* implement the Debug trait.\n some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function. Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function. It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func(foo: T) {\n println!(\"{:?}\", foo);\n}\n\nfn main() {\n // Calling the method is still fine, as i32 implements Debug.\n some_func(5i32);\n\n // This would fail to compile now:\n // struct WithoutDebug;\n // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"},"level":"error","spans":[{"file_name":"src/state.rs","byte_start":824,"byte_end":876,"line_start":25,"line_end":25,"column_start":5,"column_end":57,"is_primary":true,"text":[{"text":" pub frame_buffers: DashMap>,","highlight_start":5,"highlight_end":57}],"label":"the trait `std::fmt::Debug` is not implemented for `FrameBuffer`","suggested_replacement":null,"suggestion_applicability":null,"expansion":{"span":{"file_name":"src/state.rs","byte_start":239,"byte_end":244,"line_start":10,"line_end":10,"column_start":10,"column_end":15,"is_primary":false,"text":[{"text":"#[derive(Debug)]","highlight_start":10,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},"macro_decl_name":"#[derive(Debug)]","def_site_span":{"file_name":"/rustc/e408947bfd200af42db322daf0fadfe7e26d3bd1/library/core/src/fmt/mod.rs","byte_start":43941,"byte_end":43956,"line_start":1092,"line_end":1092,"column_start":5,"column_end":20,"is_primary":false,"text":[],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}}}],"children":[{"message":"add `#[derive(Debug)]` to `FrameBuffer` or manually `impl std::fmt::Debug for FrameBuffer`","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"the trait `std::fmt::Debug` is implemented for `DashMap`","code":null,"level":"help","spans":[{"file_name":"/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/lib.rs","byte_start":37769,"byte_end":37875,"line_start":1239,"line_end":1240,"column_start":1,"column_end":25,"is_primary":true,"text":[{"text":"impl fmt::Debug","highlight_start":1,"highlight_end":1},{"text":" for DashMap","highlight_start":1,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"consider annotating `FrameBuffer` with `#[derive(Debug)]`","code":null,"level":"help","spans":[{"file_name":"src/state.rs","byte_start":1085,"byte_end":1085,"line_start":31,"line_end":31,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"pub struct FrameBuffer {","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"#[derive(Debug)]\n","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0277]\u001b[0m\u001b[1m: `FrameBuffer` doesn't implement `std::fmt::Debug`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/state.rs:25:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 10\u001b[0m \u001b[1m\u001b[94m|\u001b[0m #[derive(Debug)]\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----\u001b[0m \u001b[1m\u001b[94min this derive macro expansion\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m 25\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub frame_buffers: DashMap>,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[91mthe trait `std::fmt::Debug` is not implemented for `FrameBuffer`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: add `#[derive(Debug)]` to `FrameBuffer` or manually `impl std::fmt::Debug for FrameBuffer`\n\u001b[1m\u001b[96mhelp\u001b[0m: the trait `std::fmt::Debug` \u001b[1m\u001b[35mis\u001b[0m implemented for `\u001b[1m\u001b[35mDashMap\u001b[0m`\n \u001b[1m\u001b[94m--> \u001b[0m/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/lib.rs:1239:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1239\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[96m/\u001b[0m impl fmt::Debug\n\u001b[1m\u001b[94m1240\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[96m|\u001b[0m for DashMap\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[96m|________________________^\u001b[0m\n\u001b[1m\u001b[96mhelp\u001b[0m: consider annotating `FrameBuffer` with `#[derive(Debug)]`\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 31\u001b[0m \u001b[92m+ #[derive(Debug)]\u001b[0m\n\u001b[1m\u001b[94m 32\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct FrameBuffer {\n \u001b[1m\u001b[94m|\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"no method named `clone` found for struct `Cors` in the current scope","code":{"code":"E0599","explanation":"This error occurs when a method is used on a type which doesn't implement it:\n\nErroneous code example:\n\n```compile_fail,E0599\nstruct Mouth;\n\nlet x = Mouth;\nx.chocolate(); // error: no method named `chocolate` found for type `Mouth`\n // in the current scope\n```\n\nIn this case, you need to implement the `chocolate` method to fix the error:\n\n```\nstruct Mouth;\n\nimpl Mouth {\n fn chocolate(&self) { // We implement the `chocolate` method here.\n println!(\"Hmmm! I love chocolate!\");\n }\n}\n\nlet x = Mouth;\nx.chocolate(); // ok!\n```\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":2056,"byte_end":2061,"line_start":69,"line_end":69,"column_start":24,"column_end":29,"is_primary":true,"text":[{"text":" .wrap(cors.clone())","highlight_start":24,"highlight_end":29}],"label":"method not found in `Cors`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[91merror[E0599]\u001b[0m\u001b[1m: no method named `clone` found for struct `Cors` in the current scope\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:69:24\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m69\u001b[0m \u001b[1m\u001b[94m|\u001b[0m .wrap(cors.clone())\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[91m^^^^^\u001b[0m \u001b[1m\u001b[91mmethod not found in `Cors`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `active`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/state.rs","byte_start":5123,"byte_end":5129,"line_start":146,"line_end":146,"column_start":13,"column_end":19,"is_primary":true,"text":[{"text":" let active: usize = self","highlight_start":13,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/state.rs","byte_start":5123,"byte_end":5129,"line_start":146,"line_end":146,"column_start":13,"column_end":19,"is_primary":true,"text":[{"text":" let active: usize = self","highlight_start":13,"highlight_end":19}],"label":null,"suggested_replacement":"_active","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `active`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/state.rs:146:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m146\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let active: usize = self\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_active`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `state`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/ws/handler.rs","byte_start":8510,"byte_end":8515,"line_start":219,"line_end":219,"column_start":31,"column_end":36,"is_primary":true,"text":[{"text":"async fn broadcast_to_viewers(state: &Arc, session_id: &str, msg: &WsMessage) {","highlight_start":31,"highlight_end":36}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/ws/handler.rs","byte_start":8510,"byte_end":8515,"line_start":219,"line_end":219,"column_start":31,"column_end":36,"is_primary":true,"text":[{"text":"async fn broadcast_to_viewers(state: &Arc, session_id: &str, msg: &WsMessage) {","highlight_start":31,"highlight_end":36}],"label":null,"suggested_replacement":"_state","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `state`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/ws/handler.rs:219:31\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m219\u001b[0m \u001b[1m\u001b[94m|\u001b[0m async fn broadcast_to_viewers(state: &Arc, session_id: &str, msg: &WsMessage) {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_state`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `state`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"src/ws/handler.rs","byte_start":8926,"byte_end":8931,"line_start":226,"line_end":226,"column_start":27,"column_end":32,"is_primary":true,"text":[{"text":"async fn forward_to_agent(state: &Arc, session_id: &str, msg: &WsMessage) {","highlight_start":27,"highlight_end":32}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"src/ws/handler.rs","byte_start":8926,"byte_end":8931,"line_start":226,"line_end":226,"column_start":27,"column_end":32,"is_primary":true,"text":[{"text":"async fn forward_to_agent(state: &Arc, session_id: &str, msg: &WsMessage) {","highlight_start":27,"highlight_end":32}],"label":null,"suggested_replacement":"_state","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `state`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/ws/handler.rs:226:27\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m226\u001b[0m \u001b[1m\u001b[94m|\u001b[0m async fn forward_to_agent(state: &Arc, session_id: &str, msg: &WsMessage) {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_state`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"aborting due to 12 previous errors; 5 warnings emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[1m\u001b[91merror\u001b[0m\u001b[1m: aborting due to 12 previous errors; 5 warnings emitted\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"Some errors have detailed explanations: E0277, E0432, E0599.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[1mSome errors have detailed explanations: E0277, E0432, E0599.\u001b[0m\n"} +{"$message_type":"diagnostic","message":"For more information about an error, try `rustc --explain E0277`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[1mFor more information about an error, try `rustc --explain E0277`.\u001b[0m\n"} diff --git a/server/target/debug/.fingerprint/bytes-4b8b75d566ddd537/dep-lib-bytes b/server/target/debug/.fingerprint/bytes-4b8b75d566ddd537/dep-lib-bytes new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/bytes-4b8b75d566ddd537/dep-lib-bytes differ diff --git a/server/target/debug/.fingerprint/bytes-4b8b75d566ddd537/invoked.timestamp b/server/target/debug/.fingerprint/bytes-4b8b75d566ddd537/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/bytes-4b8b75d566ddd537/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/bytes-4b8b75d566ddd537/lib-bytes b/server/target/debug/.fingerprint/bytes-4b8b75d566ddd537/lib-bytes new file mode 100644 index 0000000..7c7585c --- /dev/null +++ b/server/target/debug/.fingerprint/bytes-4b8b75d566ddd537/lib-bytes @@ -0,0 +1 @@ +0771fe9cdcc434eb \ No newline at end of file diff --git a/server/target/debug/.fingerprint/bytes-4b8b75d566ddd537/lib-bytes.json b/server/target/debug/.fingerprint/bytes-4b8b75d566ddd537/lib-bytes.json new file mode 100644 index 0000000..b754e90 --- /dev/null +++ b/server/target/debug/.fingerprint/bytes-4b8b75d566ddd537/lib-bytes.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"extra-platforms\", \"serde\", \"std\"]","target":11402411492164584411,"profile":13827760451848848284,"path":12270644529390698335,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bytes-4b8b75d566ddd537/dep-lib-bytes","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/bytes-934b421c0e78c798/dep-lib-bytes b/server/target/debug/.fingerprint/bytes-934b421c0e78c798/dep-lib-bytes new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/bytes-934b421c0e78c798/dep-lib-bytes differ diff --git a/server/target/debug/.fingerprint/bytes-934b421c0e78c798/invoked.timestamp b/server/target/debug/.fingerprint/bytes-934b421c0e78c798/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/bytes-934b421c0e78c798/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/bytes-934b421c0e78c798/lib-bytes b/server/target/debug/.fingerprint/bytes-934b421c0e78c798/lib-bytes new file mode 100644 index 0000000..8970054 --- /dev/null +++ b/server/target/debug/.fingerprint/bytes-934b421c0e78c798/lib-bytes @@ -0,0 +1 @@ +f0eb9ebbae396b82 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/bytes-934b421c0e78c798/lib-bytes.json b/server/target/debug/.fingerprint/bytes-934b421c0e78c798/lib-bytes.json new file mode 100644 index 0000000..527f851 --- /dev/null +++ b/server/target/debug/.fingerprint/bytes-934b421c0e78c798/lib-bytes.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"default\", \"extra-platforms\", \"serde\", \"std\"]","target":11402411492164584411,"profile":4737434774556195440,"path":12270644529390698335,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bytes-934b421c0e78c798/dep-lib-bytes","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/bytestring-8132529e8ead8757/dep-lib-bytestring b/server/target/debug/.fingerprint/bytestring-8132529e8ead8757/dep-lib-bytestring new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/bytestring-8132529e8ead8757/dep-lib-bytestring differ diff --git a/server/target/debug/.fingerprint/bytestring-8132529e8ead8757/invoked.timestamp b/server/target/debug/.fingerprint/bytestring-8132529e8ead8757/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/bytestring-8132529e8ead8757/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/bytestring-8132529e8ead8757/lib-bytestring b/server/target/debug/.fingerprint/bytestring-8132529e8ead8757/lib-bytestring new file mode 100644 index 0000000..a0acb90 --- /dev/null +++ b/server/target/debug/.fingerprint/bytestring-8132529e8ead8757/lib-bytestring @@ -0,0 +1 @@ +27407af01e808467 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/bytestring-8132529e8ead8757/lib-bytestring.json b/server/target/debug/.fingerprint/bytestring-8132529e8ead8757/lib-bytestring.json new file mode 100644 index 0000000..236fcec --- /dev/null +++ b/server/target/debug/.fingerprint/bytestring-8132529e8ead8757/lib-bytestring.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"serde\"]","target":15623786856548989629,"profile":2894796806779374893,"path":11091715146090380848,"deps":[[3870702314125662939,"bytes",false,9397668470073519088]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bytestring-8132529e8ead8757/dep-lib-bytestring","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/bytestring-d686ff26992177f3/dep-lib-bytestring b/server/target/debug/.fingerprint/bytestring-d686ff26992177f3/dep-lib-bytestring new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/bytestring-d686ff26992177f3/dep-lib-bytestring differ diff --git a/server/target/debug/.fingerprint/bytestring-d686ff26992177f3/invoked.timestamp b/server/target/debug/.fingerprint/bytestring-d686ff26992177f3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/bytestring-d686ff26992177f3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/bytestring-d686ff26992177f3/lib-bytestring b/server/target/debug/.fingerprint/bytestring-d686ff26992177f3/lib-bytestring new file mode 100644 index 0000000..2cac7c8 --- /dev/null +++ b/server/target/debug/.fingerprint/bytestring-d686ff26992177f3/lib-bytestring @@ -0,0 +1 @@ +dda2af0168a54a09 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/bytestring-d686ff26992177f3/lib-bytestring.json b/server/target/debug/.fingerprint/bytestring-d686ff26992177f3/lib-bytestring.json new file mode 100644 index 0000000..fcf1229 --- /dev/null +++ b/server/target/debug/.fingerprint/bytestring-d686ff26992177f3/lib-bytestring.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"serde\"]","target":15623786856548989629,"profile":3906840514083873863,"path":11091715146090380848,"deps":[[3870702314125662939,"bytes",false,16948387749507789063]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bytestring-d686ff26992177f3/dep-lib-bytestring","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cc-671d93a892ec8434/dep-lib-cc b/server/target/debug/.fingerprint/cc-671d93a892ec8434/dep-lib-cc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/cc-671d93a892ec8434/dep-lib-cc differ diff --git a/server/target/debug/.fingerprint/cc-671d93a892ec8434/invoked.timestamp b/server/target/debug/.fingerprint/cc-671d93a892ec8434/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/cc-671d93a892ec8434/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cc-671d93a892ec8434/lib-cc b/server/target/debug/.fingerprint/cc-671d93a892ec8434/lib-cc new file mode 100644 index 0000000..b12229f --- /dev/null +++ b/server/target/debug/.fingerprint/cc-671d93a892ec8434/lib-cc @@ -0,0 +1 @@ +48064ab2e8501a42 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cc-671d93a892ec8434/lib-cc.json b/server/target/debug/.fingerprint/cc-671d93a892ec8434/lib-cc.json new file mode 100644 index 0000000..a5d2f18 --- /dev/null +++ b/server/target/debug/.fingerprint/cc-671d93a892ec8434/lib-cc.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"parallel\"]","declared_features":"[\"jobserver\", \"parallel\"]","target":11042037588551934598,"profile":4333757155065362140,"path":7068896354560369251,"deps":[[8410525223747752176,"shlex",false,7243962121681538307],[9159843920629750842,"find_msvc_tools",false,4636778351259870023],[12111499963430175700,"libc",false,17638963654444579767],[16589527331085190088,"jobserver",false,16753941939559952763]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cc-671d93a892ec8434/dep-lib-cc","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cfg-if-e7f3f42eb79a8477/dep-lib-cfg_if b/server/target/debug/.fingerprint/cfg-if-e7f3f42eb79a8477/dep-lib-cfg_if new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/cfg-if-e7f3f42eb79a8477/dep-lib-cfg_if differ diff --git a/server/target/debug/.fingerprint/cfg-if-e7f3f42eb79a8477/invoked.timestamp b/server/target/debug/.fingerprint/cfg-if-e7f3f42eb79a8477/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/cfg-if-e7f3f42eb79a8477/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cfg-if-e7f3f42eb79a8477/lib-cfg_if b/server/target/debug/.fingerprint/cfg-if-e7f3f42eb79a8477/lib-cfg_if new file mode 100644 index 0000000..229e8b9 --- /dev/null +++ b/server/target/debug/.fingerprint/cfg-if-e7f3f42eb79a8477/lib-cfg_if @@ -0,0 +1 @@ +7a2ee0b9ceeb652f \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cfg-if-e7f3f42eb79a8477/lib-cfg_if.json b/server/target/debug/.fingerprint/cfg-if-e7f3f42eb79a8477/lib-cfg_if.json new file mode 100644 index 0000000..bb76316 --- /dev/null +++ b/server/target/debug/.fingerprint/cfg-if-e7f3f42eb79a8477/lib-cfg_if.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":2241668132362809309,"path":17839257676838952786,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-e7f3f42eb79a8477/dep-lib-cfg_if","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cfg-if-ea139eb6b6bdeb93/dep-lib-cfg_if b/server/target/debug/.fingerprint/cfg-if-ea139eb6b6bdeb93/dep-lib-cfg_if new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/cfg-if-ea139eb6b6bdeb93/dep-lib-cfg_if differ diff --git a/server/target/debug/.fingerprint/cfg-if-ea139eb6b6bdeb93/invoked.timestamp b/server/target/debug/.fingerprint/cfg-if-ea139eb6b6bdeb93/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/cfg-if-ea139eb6b6bdeb93/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cfg-if-ea139eb6b6bdeb93/lib-cfg_if b/server/target/debug/.fingerprint/cfg-if-ea139eb6b6bdeb93/lib-cfg_if new file mode 100644 index 0000000..ac4787a --- /dev/null +++ b/server/target/debug/.fingerprint/cfg-if-ea139eb6b6bdeb93/lib-cfg_if @@ -0,0 +1 @@ +b20970369116c2d8 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cfg-if-ea139eb6b6bdeb93/lib-cfg_if.json b/server/target/debug/.fingerprint/cfg-if-ea139eb6b6bdeb93/lib-cfg_if.json new file mode 100644 index 0000000..f52c250 --- /dev/null +++ b/server/target/debug/.fingerprint/cfg-if-ea139eb6b6bdeb93/lib-cfg_if.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":2225463790103693989,"path":17839257676838952786,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-ea139eb6b6bdeb93/dep-lib-cfg_if","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/chrono-23fc8a73c22da5dc/dep-lib-chrono b/server/target/debug/.fingerprint/chrono-23fc8a73c22da5dc/dep-lib-chrono new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/chrono-23fc8a73c22da5dc/dep-lib-chrono differ diff --git a/server/target/debug/.fingerprint/chrono-23fc8a73c22da5dc/invoked.timestamp b/server/target/debug/.fingerprint/chrono-23fc8a73c22da5dc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/chrono-23fc8a73c22da5dc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/chrono-23fc8a73c22da5dc/lib-chrono b/server/target/debug/.fingerprint/chrono-23fc8a73c22da5dc/lib-chrono new file mode 100644 index 0000000..588ed06 --- /dev/null +++ b/server/target/debug/.fingerprint/chrono-23fc8a73c22da5dc/lib-chrono @@ -0,0 +1 @@ +4b05cb4d409c63af \ No newline at end of file diff --git a/server/target/debug/.fingerprint/chrono-23fc8a73c22da5dc/lib-chrono.json b/server/target/debug/.fingerprint/chrono-23fc8a73c22da5dc/lib-chrono.json new file mode 100644 index 0000000..9ac5d9b --- /dev/null +++ b/server/target/debug/.fingerprint/chrono-23fc8a73c22da5dc/lib-chrono.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"clock\", \"default\", \"iana-time-zone\", \"js-sys\", \"now\", \"oldtime\", \"serde\", \"std\", \"wasm-bindgen\", \"wasmbind\", \"winapi\", \"windows-link\"]","declared_features":"[\"__internal_bench\", \"alloc\", \"arbitrary\", \"clock\", \"core-error\", \"default\", \"defmt\", \"iana-time-zone\", \"js-sys\", \"libc\", \"now\", \"oldtime\", \"pure-rust-locales\", \"rkyv\", \"rkyv-16\", \"rkyv-32\", \"rkyv-64\", \"rkyv-validation\", \"serde\", \"std\", \"unstable-locales\", \"wasm-bindgen\", \"wasmbind\", \"winapi\", \"windows-link\"]","target":15315924755136109342,"profile":2241668132362809309,"path":17769890984059358829,"deps":[[5157631553186200874,"num_traits",false,14550575985681588491],[13548984313718623784,"serde",false,7528466600112811085],[16619627449254928351,"iana_time_zone",false,15992555908116614192]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/chrono-23fc8a73c22da5dc/dep-lib-chrono","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/colorchoice-9ca51bc4fd4a1951/dep-lib-colorchoice b/server/target/debug/.fingerprint/colorchoice-9ca51bc4fd4a1951/dep-lib-colorchoice new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/colorchoice-9ca51bc4fd4a1951/dep-lib-colorchoice differ diff --git a/server/target/debug/.fingerprint/colorchoice-9ca51bc4fd4a1951/invoked.timestamp b/server/target/debug/.fingerprint/colorchoice-9ca51bc4fd4a1951/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/colorchoice-9ca51bc4fd4a1951/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/colorchoice-9ca51bc4fd4a1951/lib-colorchoice b/server/target/debug/.fingerprint/colorchoice-9ca51bc4fd4a1951/lib-colorchoice new file mode 100644 index 0000000..6f88a9f --- /dev/null +++ b/server/target/debug/.fingerprint/colorchoice-9ca51bc4fd4a1951/lib-colorchoice @@ -0,0 +1 @@ +1ff89690faa9cc69 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/colorchoice-9ca51bc4fd4a1951/lib-colorchoice.json b/server/target/debug/.fingerprint/colorchoice-9ca51bc4fd4a1951/lib-colorchoice.json new file mode 100644 index 0000000..22a916c --- /dev/null +++ b/server/target/debug/.fingerprint/colorchoice-9ca51bc4fd4a1951/lib-colorchoice.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":11187303652147478063,"profile":17646343673514590993,"path":8843780099034684760,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/colorchoice-9ca51bc4fd4a1951/dep-lib-colorchoice","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/convert_case-a45097cb563b0977/dep-lib-convert_case b/server/target/debug/.fingerprint/convert_case-a45097cb563b0977/dep-lib-convert_case new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/convert_case-a45097cb563b0977/dep-lib-convert_case differ diff --git a/server/target/debug/.fingerprint/convert_case-a45097cb563b0977/invoked.timestamp b/server/target/debug/.fingerprint/convert_case-a45097cb563b0977/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/convert_case-a45097cb563b0977/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/convert_case-a45097cb563b0977/lib-convert_case b/server/target/debug/.fingerprint/convert_case-a45097cb563b0977/lib-convert_case new file mode 100644 index 0000000..61191b8 --- /dev/null +++ b/server/target/debug/.fingerprint/convert_case-a45097cb563b0977/lib-convert_case @@ -0,0 +1 @@ +abd7a75106005622 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/convert_case-a45097cb563b0977/lib-convert_case.json b/server/target/debug/.fingerprint/convert_case-a45097cb563b0977/lib-convert_case.json new file mode 100644 index 0000000..0469380 --- /dev/null +++ b/server/target/debug/.fingerprint/convert_case-a45097cb563b0977/lib-convert_case.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":16347249514369226306,"profile":2225463790103693989,"path":1617413619716988486,"deps":[[4341528441765018781,"unicode_segmentation",false,10146919453297829058]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/convert_case-a45097cb563b0977/dep-lib-convert_case","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cookie-25232d268108699b/build-script-build-script-build b/server/target/debug/.fingerprint/cookie-25232d268108699b/build-script-build-script-build new file mode 100644 index 0000000..0cd64af --- /dev/null +++ b/server/target/debug/.fingerprint/cookie-25232d268108699b/build-script-build-script-build @@ -0,0 +1 @@ +60d2a21a3febb964 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cookie-25232d268108699b/build-script-build-script-build.json b/server/target/debug/.fingerprint/cookie-25232d268108699b/build-script-build-script-build.json new file mode 100644 index 0000000..a6785a8 --- /dev/null +++ b/server/target/debug/.fingerprint/cookie-25232d268108699b/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"percent-encode\", \"percent-encoding\"]","declared_features":"[\"aes-gcm\", \"base64\", \"hkdf\", \"hmac\", \"key-expansion\", \"percent-encode\", \"percent-encoding\", \"private\", \"rand\", \"secure\", \"sha2\", \"signed\", \"subtle\"]","target":17883862002600103897,"profile":2225463790103693989,"path":17483137911866484379,"deps":[[5398981501050481332,"version_check",false,16110973200079055844]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cookie-25232d268108699b/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cookie-25232d268108699b/dep-build-script-build-script-build b/server/target/debug/.fingerprint/cookie-25232d268108699b/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/cookie-25232d268108699b/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/cookie-25232d268108699b/invoked.timestamp b/server/target/debug/.fingerprint/cookie-25232d268108699b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/cookie-25232d268108699b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cookie-79857ad2728541f8/run-build-script-build-script-build b/server/target/debug/.fingerprint/cookie-79857ad2728541f8/run-build-script-build-script-build new file mode 100644 index 0000000..69a2f10 --- /dev/null +++ b/server/target/debug/.fingerprint/cookie-79857ad2728541f8/run-build-script-build-script-build @@ -0,0 +1 @@ +5e2e5de87d4887e9 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cookie-79857ad2728541f8/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/cookie-79857ad2728541f8/run-build-script-build-script-build.json new file mode 100644 index 0000000..0f25010 --- /dev/null +++ b/server/target/debug/.fingerprint/cookie-79857ad2728541f8/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8010322816087218523,"build_script_build",false,7258090930746610272]],"local":[{"Precalculated":"0.16.2"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cookie-d99cf81ae3daa0bb/dep-lib-cookie b/server/target/debug/.fingerprint/cookie-d99cf81ae3daa0bb/dep-lib-cookie new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/cookie-d99cf81ae3daa0bb/dep-lib-cookie differ diff --git a/server/target/debug/.fingerprint/cookie-d99cf81ae3daa0bb/invoked.timestamp b/server/target/debug/.fingerprint/cookie-d99cf81ae3daa0bb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/cookie-d99cf81ae3daa0bb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cookie-d99cf81ae3daa0bb/lib-cookie b/server/target/debug/.fingerprint/cookie-d99cf81ae3daa0bb/lib-cookie new file mode 100644 index 0000000..53b6279 --- /dev/null +++ b/server/target/debug/.fingerprint/cookie-d99cf81ae3daa0bb/lib-cookie @@ -0,0 +1 @@ +5e9bc913d78d1e1d \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cookie-d99cf81ae3daa0bb/lib-cookie.json b/server/target/debug/.fingerprint/cookie-d99cf81ae3daa0bb/lib-cookie.json new file mode 100644 index 0000000..47c8904 --- /dev/null +++ b/server/target/debug/.fingerprint/cookie-d99cf81ae3daa0bb/lib-cookie.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"percent-encode\", \"percent-encoding\"]","declared_features":"[\"aes-gcm\", \"base64\", \"hkdf\", \"hmac\", \"key-expansion\", \"percent-encode\", \"percent-encoding\", \"private\", \"rand\", \"secure\", \"sha2\", \"signed\", \"subtle\"]","target":678524939984925341,"profile":2241668132362809309,"path":680638024625675398,"deps":[[6803352382179706244,"percent_encoding",false,12394381217160922707],[8010322816087218523,"build_script_build",false,16827498238299680350],[11432222519274906849,"time",false,5644807404023172005]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cookie-d99cf81ae3daa0bb/dep-lib-cookie","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cpufeatures-bcdb2005199d2b73/dep-lib-cpufeatures b/server/target/debug/.fingerprint/cpufeatures-bcdb2005199d2b73/dep-lib-cpufeatures new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/cpufeatures-bcdb2005199d2b73/dep-lib-cpufeatures differ diff --git a/server/target/debug/.fingerprint/cpufeatures-bcdb2005199d2b73/invoked.timestamp b/server/target/debug/.fingerprint/cpufeatures-bcdb2005199d2b73/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/cpufeatures-bcdb2005199d2b73/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cpufeatures-bcdb2005199d2b73/lib-cpufeatures b/server/target/debug/.fingerprint/cpufeatures-bcdb2005199d2b73/lib-cpufeatures new file mode 100644 index 0000000..8dbe29b --- /dev/null +++ b/server/target/debug/.fingerprint/cpufeatures-bcdb2005199d2b73/lib-cpufeatures @@ -0,0 +1 @@ +37daf31cc0a8ca4d \ No newline at end of file diff --git a/server/target/debug/.fingerprint/cpufeatures-bcdb2005199d2b73/lib-cpufeatures.json b/server/target/debug/.fingerprint/cpufeatures-bcdb2005199d2b73/lib-cpufeatures.json new file mode 100644 index 0000000..8fa829c --- /dev/null +++ b/server/target/debug/.fingerprint/cpufeatures-bcdb2005199d2b73/lib-cpufeatures.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":2330704043955282025,"profile":2241668132362809309,"path":713085537903045288,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cpufeatures-bcdb2005199d2b73/dep-lib-cpufeatures","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crc32fast-40fb1b1245edb67f/dep-lib-crc32fast b/server/target/debug/.fingerprint/crc32fast-40fb1b1245edb67f/dep-lib-crc32fast new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/crc32fast-40fb1b1245edb67f/dep-lib-crc32fast differ diff --git a/server/target/debug/.fingerprint/crc32fast-40fb1b1245edb67f/invoked.timestamp b/server/target/debug/.fingerprint/crc32fast-40fb1b1245edb67f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/crc32fast-40fb1b1245edb67f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crc32fast-40fb1b1245edb67f/lib-crc32fast b/server/target/debug/.fingerprint/crc32fast-40fb1b1245edb67f/lib-crc32fast new file mode 100644 index 0000000..a3b87ae --- /dev/null +++ b/server/target/debug/.fingerprint/crc32fast-40fb1b1245edb67f/lib-crc32fast @@ -0,0 +1 @@ +40f91621bd5bb4c1 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crc32fast-40fb1b1245edb67f/lib-crc32fast.json b/server/target/debug/.fingerprint/crc32fast-40fb1b1245edb67f/lib-crc32fast.json new file mode 100644 index 0000000..cbb2ecb --- /dev/null +++ b/server/target/debug/.fingerprint/crc32fast-40fb1b1245edb67f/lib-crc32fast.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"nightly\", \"std\"]","target":10823605331999153028,"profile":2241668132362809309,"path":13946724179933010929,"deps":[[7312356825837975969,"build_script_build",false,14325015764409452178],[7667230146095136825,"cfg_if",false,3415395165544656506]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/crc32fast-40fb1b1245edb67f/dep-lib-crc32fast","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crc32fast-9843fb73970f43a5/build-script-build-script-build b/server/target/debug/.fingerprint/crc32fast-9843fb73970f43a5/build-script-build-script-build new file mode 100644 index 0000000..24c8a9f --- /dev/null +++ b/server/target/debug/.fingerprint/crc32fast-9843fb73970f43a5/build-script-build-script-build @@ -0,0 +1 @@ +8ac16cfdb3e978aa \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crc32fast-9843fb73970f43a5/build-script-build-script-build.json b/server/target/debug/.fingerprint/crc32fast-9843fb73970f43a5/build-script-build-script-build.json new file mode 100644 index 0000000..bcac20f --- /dev/null +++ b/server/target/debug/.fingerprint/crc32fast-9843fb73970f43a5/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"nightly\", \"std\"]","target":5408242616063297496,"profile":2225463790103693989,"path":12854114674813674064,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/crc32fast-9843fb73970f43a5/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crc32fast-9843fb73970f43a5/dep-build-script-build-script-build b/server/target/debug/.fingerprint/crc32fast-9843fb73970f43a5/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/crc32fast-9843fb73970f43a5/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/crc32fast-9843fb73970f43a5/invoked.timestamp b/server/target/debug/.fingerprint/crc32fast-9843fb73970f43a5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/crc32fast-9843fb73970f43a5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crc32fast-ea1238a5d404b4ce/run-build-script-build-script-build b/server/target/debug/.fingerprint/crc32fast-ea1238a5d404b4ce/run-build-script-build-script-build new file mode 100644 index 0000000..0b1bf35 --- /dev/null +++ b/server/target/debug/.fingerprint/crc32fast-ea1238a5d404b4ce/run-build-script-build-script-build @@ -0,0 +1 @@ +92067fc7f0adccc6 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crc32fast-ea1238a5d404b4ce/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/crc32fast-ea1238a5d404b4ce/run-build-script-build-script-build.json new file mode 100644 index 0000000..92c0d5b --- /dev/null +++ b/server/target/debug/.fingerprint/crc32fast-ea1238a5d404b4ce/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[7312356825837975969,"build_script_build",false,12283824942913208714]],"local":[{"Precalculated":"1.5.0"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crossbeam-utils-20a9bf10360256b6/dep-lib-crossbeam_utils b/server/target/debug/.fingerprint/crossbeam-utils-20a9bf10360256b6/dep-lib-crossbeam_utils new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/crossbeam-utils-20a9bf10360256b6/dep-lib-crossbeam_utils differ diff --git a/server/target/debug/.fingerprint/crossbeam-utils-20a9bf10360256b6/invoked.timestamp b/server/target/debug/.fingerprint/crossbeam-utils-20a9bf10360256b6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/crossbeam-utils-20a9bf10360256b6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crossbeam-utils-20a9bf10360256b6/lib-crossbeam_utils b/server/target/debug/.fingerprint/crossbeam-utils-20a9bf10360256b6/lib-crossbeam_utils new file mode 100644 index 0000000..4c773b0 --- /dev/null +++ b/server/target/debug/.fingerprint/crossbeam-utils-20a9bf10360256b6/lib-crossbeam_utils @@ -0,0 +1 @@ +0bab0e0957a4c5cf \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crossbeam-utils-20a9bf10360256b6/lib-crossbeam_utils.json b/server/target/debug/.fingerprint/crossbeam-utils-20a9bf10360256b6/lib-crossbeam_utils.json new file mode 100644 index 0000000..17e858f --- /dev/null +++ b/server/target/debug/.fingerprint/crossbeam-utils-20a9bf10360256b6/lib-crossbeam_utils.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"loom\", \"nightly\", \"std\"]","target":9626079250877207070,"profile":2682017813363557493,"path":15010091417340723472,"deps":[[4468123440088164316,"build_script_build",false,12620268381823215287]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/crossbeam-utils-20a9bf10360256b6/dep-lib-crossbeam_utils","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crossbeam-utils-2dd7e9a10f471ce2/build-script-build-script-build b/server/target/debug/.fingerprint/crossbeam-utils-2dd7e9a10f471ce2/build-script-build-script-build new file mode 100644 index 0000000..b8db012 --- /dev/null +++ b/server/target/debug/.fingerprint/crossbeam-utils-2dd7e9a10f471ce2/build-script-build-script-build @@ -0,0 +1 @@ +00b6a56e3b4514df \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crossbeam-utils-2dd7e9a10f471ce2/build-script-build-script-build.json b/server/target/debug/.fingerprint/crossbeam-utils-2dd7e9a10f471ce2/build-script-build-script-build.json new file mode 100644 index 0000000..fd49d39 --- /dev/null +++ b/server/target/debug/.fingerprint/crossbeam-utils-2dd7e9a10f471ce2/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"loom\", \"nightly\", \"std\"]","target":5408242616063297496,"profile":3908425943115333596,"path":15433605622982438611,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/crossbeam-utils-2dd7e9a10f471ce2/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crossbeam-utils-2dd7e9a10f471ce2/dep-build-script-build-script-build b/server/target/debug/.fingerprint/crossbeam-utils-2dd7e9a10f471ce2/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/crossbeam-utils-2dd7e9a10f471ce2/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/crossbeam-utils-2dd7e9a10f471ce2/invoked.timestamp b/server/target/debug/.fingerprint/crossbeam-utils-2dd7e9a10f471ce2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/crossbeam-utils-2dd7e9a10f471ce2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crossbeam-utils-d51a068df42f71a6/run-build-script-build-script-build b/server/target/debug/.fingerprint/crossbeam-utils-d51a068df42f71a6/run-build-script-build-script-build new file mode 100644 index 0000000..fd2abc4 --- /dev/null +++ b/server/target/debug/.fingerprint/crossbeam-utils-d51a068df42f71a6/run-build-script-build-script-build @@ -0,0 +1 @@ +b7a6aa6c3a3324af \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crossbeam-utils-d51a068df42f71a6/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/crossbeam-utils-d51a068df42f71a6/run-build-script-build-script-build.json new file mode 100644 index 0000000..18fe0a6 --- /dev/null +++ b/server/target/debug/.fingerprint/crossbeam-utils-d51a068df42f71a6/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[4468123440088164316,"build_script_build",false,16074549091553883648]],"local":[{"RerunIfChanged":{"output":"debug/build/crossbeam-utils-d51a068df42f71a6/output","paths":["no_atomic.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crypto-common-a8d1172f317582cf/dep-lib-crypto_common b/server/target/debug/.fingerprint/crypto-common-a8d1172f317582cf/dep-lib-crypto_common new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/crypto-common-a8d1172f317582cf/dep-lib-crypto_common differ diff --git a/server/target/debug/.fingerprint/crypto-common-a8d1172f317582cf/invoked.timestamp b/server/target/debug/.fingerprint/crypto-common-a8d1172f317582cf/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/crypto-common-a8d1172f317582cf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crypto-common-a8d1172f317582cf/lib-crypto_common b/server/target/debug/.fingerprint/crypto-common-a8d1172f317582cf/lib-crypto_common new file mode 100644 index 0000000..02ba752 --- /dev/null +++ b/server/target/debug/.fingerprint/crypto-common-a8d1172f317582cf/lib-crypto_common @@ -0,0 +1 @@ +2eb53fbd0721e8a0 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/crypto-common-a8d1172f317582cf/lib-crypto_common.json b/server/target/debug/.fingerprint/crypto-common-a8d1172f317582cf/lib-crypto_common.json new file mode 100644 index 0000000..44072e5 --- /dev/null +++ b/server/target/debug/.fingerprint/crypto-common-a8d1172f317582cf/lib-crypto_common.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"std\"]","declared_features":"[\"getrandom\", \"rand_core\", \"std\"]","target":12082577455412410174,"profile":2241668132362809309,"path":5167417791303709794,"deps":[[857979250431893282,"typenum",false,12589763801805293394],[10520923840501062997,"generic_array",false,6277946132491068610]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/crypto-common-a8d1172f317582cf/dep-lib-crypto_common","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/dashmap-7d5f8ee79891437c/dep-lib-dashmap b/server/target/debug/.fingerprint/dashmap-7d5f8ee79891437c/dep-lib-dashmap new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/dashmap-7d5f8ee79891437c/dep-lib-dashmap differ diff --git a/server/target/debug/.fingerprint/dashmap-7d5f8ee79891437c/invoked.timestamp b/server/target/debug/.fingerprint/dashmap-7d5f8ee79891437c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/dashmap-7d5f8ee79891437c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/dashmap-7d5f8ee79891437c/lib-dashmap b/server/target/debug/.fingerprint/dashmap-7d5f8ee79891437c/lib-dashmap new file mode 100644 index 0000000..66a1d2a --- /dev/null +++ b/server/target/debug/.fingerprint/dashmap-7d5f8ee79891437c/lib-dashmap @@ -0,0 +1 @@ +0401298b04700600 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/dashmap-7d5f8ee79891437c/lib-dashmap.json b/server/target/debug/.fingerprint/dashmap-7d5f8ee79891437c/lib-dashmap.json new file mode 100644 index 0000000..5e4d74a --- /dev/null +++ b/server/target/debug/.fingerprint/dashmap-7d5f8ee79891437c/lib-dashmap.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"arbitrary\", \"inline\", \"raw-api\", \"rayon\", \"serde\", \"typesize\"]","target":7646408341754254191,"profile":2241668132362809309,"path":982629355715946037,"deps":[[2555121257709722468,"lock_api",false,469087213003320430],[4468123440088164316,"crossbeam_utils",false,14971553229984148235],[5855319743879205494,"once_cell",false,11127587921477898461],[6545091685033313457,"parking_lot_core",false,12253157224707842752],[7667230146095136825,"cfg_if",false,3415395165544656506],[13018563866916002725,"hashbrown",false,15702062152496184962]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dashmap-7d5f8ee79891437c/dep-lib-dashmap","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/deranged-a0cb6f0e7c0d1075/dep-lib-deranged b/server/target/debug/.fingerprint/deranged-a0cb6f0e7c0d1075/dep-lib-deranged new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/deranged-a0cb6f0e7c0d1075/dep-lib-deranged differ diff --git a/server/target/debug/.fingerprint/deranged-a0cb6f0e7c0d1075/invoked.timestamp b/server/target/debug/.fingerprint/deranged-a0cb6f0e7c0d1075/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/deranged-a0cb6f0e7c0d1075/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/deranged-a0cb6f0e7c0d1075/lib-deranged b/server/target/debug/.fingerprint/deranged-a0cb6f0e7c0d1075/lib-deranged new file mode 100644 index 0000000..9e0f7e6 --- /dev/null +++ b/server/target/debug/.fingerprint/deranged-a0cb6f0e7c0d1075/lib-deranged @@ -0,0 +1 @@ +041e7cb53de166fa \ No newline at end of file diff --git a/server/target/debug/.fingerprint/deranged-a0cb6f0e7c0d1075/lib-deranged.json b/server/target/debug/.fingerprint/deranged-a0cb6f0e7c0d1075/lib-deranged.json new file mode 100644 index 0000000..241f626 --- /dev/null +++ b/server/target/debug/.fingerprint/deranged-a0cb6f0e7c0d1075/lib-deranged.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"powerfmt\"]","declared_features":"[\"alloc\", \"default\", \"macros\", \"num\", \"powerfmt\", \"quickcheck\", \"rand\", \"rand010\", \"rand08\", \"rand09\", \"serde\"]","target":17941053073926740948,"profile":7036901194185330745,"path":10600781213248049051,"deps":[[5901133744777009488,"powerfmt",false,568158630423938261]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/deranged-a0cb6f0e7c0d1075/dep-lib-deranged","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/derive_more-933abf9cf5a819d3/dep-lib-derive_more b/server/target/debug/.fingerprint/derive_more-933abf9cf5a819d3/dep-lib-derive_more new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/derive_more-933abf9cf5a819d3/dep-lib-derive_more differ diff --git a/server/target/debug/.fingerprint/derive_more-933abf9cf5a819d3/invoked.timestamp b/server/target/debug/.fingerprint/derive_more-933abf9cf5a819d3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/derive_more-933abf9cf5a819d3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/derive_more-933abf9cf5a819d3/lib-derive_more b/server/target/debug/.fingerprint/derive_more-933abf9cf5a819d3/lib-derive_more new file mode 100644 index 0000000..0332f79 --- /dev/null +++ b/server/target/debug/.fingerprint/derive_more-933abf9cf5a819d3/lib-derive_more @@ -0,0 +1 @@ +122835c0c68db0dd \ No newline at end of file diff --git a/server/target/debug/.fingerprint/derive_more-933abf9cf5a819d3/lib-derive_more.json b/server/target/debug/.fingerprint/derive_more-933abf9cf5a819d3/lib-derive_more.json new file mode 100644 index 0000000..5272ca2 --- /dev/null +++ b/server/target/debug/.fingerprint/derive_more-933abf9cf5a819d3/lib-derive_more.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"as_ref\", \"default\", \"deref\", \"deref_mut\", \"display\", \"error\", \"from\", \"std\"]","declared_features":"[\"add\", \"add_assign\", \"as_ref\", \"constructor\", \"debug\", \"default\", \"deref\", \"deref_mut\", \"display\", \"eq\", \"error\", \"from\", \"from_str\", \"full\", \"index\", \"index_mut\", \"into\", \"into_iterator\", \"is_variant\", \"mul\", \"mul_assign\", \"not\", \"std\", \"sum\", \"testing-helpers\", \"try_from\", \"try_into\", \"try_unwrap\", \"unwrap\"]","target":7165309211519594838,"profile":1218695365660037764,"path":11523063429757057670,"deps":[[17330140664269813203,"derive_more_impl",false,1992305604027679805]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/derive_more-933abf9cf5a819d3/dep-lib-derive_more","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/derive_more-impl-b3d3069484fc3004/dep-lib-derive_more_impl b/server/target/debug/.fingerprint/derive_more-impl-b3d3069484fc3004/dep-lib-derive_more_impl new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/derive_more-impl-b3d3069484fc3004/dep-lib-derive_more_impl differ diff --git a/server/target/debug/.fingerprint/derive_more-impl-b3d3069484fc3004/invoked.timestamp b/server/target/debug/.fingerprint/derive_more-impl-b3d3069484fc3004/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/derive_more-impl-b3d3069484fc3004/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/derive_more-impl-b3d3069484fc3004/lib-derive_more_impl b/server/target/debug/.fingerprint/derive_more-impl-b3d3069484fc3004/lib-derive_more_impl new file mode 100644 index 0000000..f82f907 --- /dev/null +++ b/server/target/debug/.fingerprint/derive_more-impl-b3d3069484fc3004/lib-derive_more_impl @@ -0,0 +1 @@ +3d0417246417a61b \ No newline at end of file diff --git a/server/target/debug/.fingerprint/derive_more-impl-b3d3069484fc3004/lib-derive_more_impl.json b/server/target/debug/.fingerprint/derive_more-impl-b3d3069484fc3004/lib-derive_more_impl.json new file mode 100644 index 0000000..f50bcc7 --- /dev/null +++ b/server/target/debug/.fingerprint/derive_more-impl-b3d3069484fc3004/lib-derive_more_impl.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"as_ref\", \"default\", \"deref\", \"deref_mut\", \"display\", \"error\", \"from\"]","declared_features":"[\"add\", \"add_assign\", \"as_ref\", \"constructor\", \"debug\", \"default\", \"deref\", \"deref_mut\", \"display\", \"eq\", \"error\", \"from\", \"from_str\", \"full\", \"index\", \"index_mut\", \"into\", \"into_iterator\", \"is_variant\", \"mul\", \"mul_assign\", \"not\", \"sum\", \"testing-helpers\", \"try_from\", \"try_into\", \"try_unwrap\", \"unwrap\"]","target":11796376952621915773,"profile":11465753365795029681,"path":17441057308385363824,"deps":[[4289358735036141001,"proc_macro2",false,10178310667270251203],[9503536157163433714,"convert_case",false,2474165072426424235],[10420560437213941093,"syn",false,16474032542208326673],[13111758008314797071,"quote",false,16220216807289559200],[16126285161989458480,"unicode_xid",false,16888701275803547178]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/derive_more-impl-b3d3069484fc3004/dep-lib-derive_more_impl","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/digest-e2bbb19e0ee0d5a3/dep-lib-digest b/server/target/debug/.fingerprint/digest-e2bbb19e0ee0d5a3/dep-lib-digest new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/digest-e2bbb19e0ee0d5a3/dep-lib-digest differ diff --git a/server/target/debug/.fingerprint/digest-e2bbb19e0ee0d5a3/invoked.timestamp b/server/target/debug/.fingerprint/digest-e2bbb19e0ee0d5a3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/digest-e2bbb19e0ee0d5a3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/digest-e2bbb19e0ee0d5a3/lib-digest b/server/target/debug/.fingerprint/digest-e2bbb19e0ee0d5a3/lib-digest new file mode 100644 index 0000000..effef38 --- /dev/null +++ b/server/target/debug/.fingerprint/digest-e2bbb19e0ee0d5a3/lib-digest @@ -0,0 +1 @@ +3c2e546856248771 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/digest-e2bbb19e0ee0d5a3/lib-digest.json b/server/target/debug/.fingerprint/digest-e2bbb19e0ee0d5a3/lib-digest.json new file mode 100644 index 0000000..b4236e0 --- /dev/null +++ b/server/target/debug/.fingerprint/digest-e2bbb19e0ee0d5a3/lib-digest.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"block-buffer\", \"core-api\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"blobby\", \"block-buffer\", \"const-oid\", \"core-api\", \"default\", \"dev\", \"mac\", \"oid\", \"rand_core\", \"std\", \"subtle\"]","target":7510122432137863311,"profile":2241668132362809309,"path":11381778643921104220,"deps":[[6039282458970808711,"crypto_common",false,11594553557788898606],[10626340395483396037,"block_buffer",false,14910807481795469393]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/digest-e2bbb19e0ee0d5a3/dep-lib-digest","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/displaydoc-ff85fd5314252f02/dep-lib-displaydoc b/server/target/debug/.fingerprint/displaydoc-ff85fd5314252f02/dep-lib-displaydoc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/displaydoc-ff85fd5314252f02/dep-lib-displaydoc differ diff --git a/server/target/debug/.fingerprint/displaydoc-ff85fd5314252f02/invoked.timestamp b/server/target/debug/.fingerprint/displaydoc-ff85fd5314252f02/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/displaydoc-ff85fd5314252f02/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/displaydoc-ff85fd5314252f02/lib-displaydoc b/server/target/debug/.fingerprint/displaydoc-ff85fd5314252f02/lib-displaydoc new file mode 100644 index 0000000..5d76aeb --- /dev/null +++ b/server/target/debug/.fingerprint/displaydoc-ff85fd5314252f02/lib-displaydoc @@ -0,0 +1 @@ +68e16599d110a783 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/displaydoc-ff85fd5314252f02/lib-displaydoc.json b/server/target/debug/.fingerprint/displaydoc-ff85fd5314252f02/lib-displaydoc.json new file mode 100644 index 0000000..85788a9 --- /dev/null +++ b/server/target/debug/.fingerprint/displaydoc-ff85fd5314252f02/lib-displaydoc.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"default\", \"std\"]","target":9331843185013996172,"profile":2225463790103693989,"path":7634582161398307850,"deps":[[4289358735036141001,"proc_macro2",false,10178310667270251203],[10420560437213941093,"syn",false,16474032542208326673],[13111758008314797071,"quote",false,16220216807289559200]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/displaydoc-ff85fd5314252f02/dep-lib-displaydoc","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/encoding_rs-001d828871cedfd2/dep-lib-encoding_rs b/server/target/debug/.fingerprint/encoding_rs-001d828871cedfd2/dep-lib-encoding_rs new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/encoding_rs-001d828871cedfd2/dep-lib-encoding_rs differ diff --git a/server/target/debug/.fingerprint/encoding_rs-001d828871cedfd2/invoked.timestamp b/server/target/debug/.fingerprint/encoding_rs-001d828871cedfd2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/encoding_rs-001d828871cedfd2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/encoding_rs-001d828871cedfd2/lib-encoding_rs b/server/target/debug/.fingerprint/encoding_rs-001d828871cedfd2/lib-encoding_rs new file mode 100644 index 0000000..33d44ac --- /dev/null +++ b/server/target/debug/.fingerprint/encoding_rs-001d828871cedfd2/lib-encoding_rs @@ -0,0 +1 @@ +c0feefbceac70d44 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/encoding_rs-001d828871cedfd2/lib-encoding_rs.json b/server/target/debug/.fingerprint/encoding_rs-001d828871cedfd2/lib-encoding_rs.json new file mode 100644 index 0000000..8da1b17 --- /dev/null +++ b/server/target/debug/.fingerprint/encoding_rs-001d828871cedfd2/lib-encoding_rs.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"default\"]","declared_features":"[\"alloc\", \"any_all_workaround\", \"default\", \"fast-big5-hanzi-encode\", \"fast-gb-hanzi-encode\", \"fast-hangul-encode\", \"fast-hanja-encode\", \"fast-kanji-encode\", \"fast-legacy-encode\", \"less-slow-big5-hanzi-encode\", \"less-slow-gb-hanzi-encode\", \"less-slow-kanji-encode\", \"serde\", \"simd-accel\"]","target":17616512236202378241,"profile":2241668132362809309,"path":9771759086536677927,"deps":[[7667230146095136825,"cfg_if",false,3415395165544656506]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/encoding_rs-001d828871cedfd2/dep-lib-encoding_rs","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/env_filter-730007a9d8c1ee41/dep-lib-env_filter b/server/target/debug/.fingerprint/env_filter-730007a9d8c1ee41/dep-lib-env_filter new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/env_filter-730007a9d8c1ee41/dep-lib-env_filter differ diff --git a/server/target/debug/.fingerprint/env_filter-730007a9d8c1ee41/invoked.timestamp b/server/target/debug/.fingerprint/env_filter-730007a9d8c1ee41/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/env_filter-730007a9d8c1ee41/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/env_filter-730007a9d8c1ee41/lib-env_filter b/server/target/debug/.fingerprint/env_filter-730007a9d8c1ee41/lib-env_filter new file mode 100644 index 0000000..7524c63 --- /dev/null +++ b/server/target/debug/.fingerprint/env_filter-730007a9d8c1ee41/lib-env_filter @@ -0,0 +1 @@ +2ef25fae31babda3 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/env_filter-730007a9d8c1ee41/lib-env_filter.json b/server/target/debug/.fingerprint/env_filter-730007a9d8c1ee41/lib-env_filter.json new file mode 100644 index 0000000..66e78c9 --- /dev/null +++ b/server/target/debug/.fingerprint/env_filter-730007a9d8c1ee41/lib-env_filter.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"regex\"]","declared_features":"[\"default\", \"regex\"]","target":12678044772393128127,"profile":17646343673514590993,"path":581422284779788745,"deps":[[10630857666389190470,"log",false,3024114030112994732],[17109794424245468765,"regex",false,14617361929869666223]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/env_filter-730007a9d8c1ee41/dep-lib-env_filter","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/env_logger-c692726bb662edc1/dep-lib-env_logger b/server/target/debug/.fingerprint/env_logger-c692726bb662edc1/dep-lib-env_logger new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/env_logger-c692726bb662edc1/dep-lib-env_logger differ diff --git a/server/target/debug/.fingerprint/env_logger-c692726bb662edc1/invoked.timestamp b/server/target/debug/.fingerprint/env_logger-c692726bb662edc1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/env_logger-c692726bb662edc1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/env_logger-c692726bb662edc1/lib-env_logger b/server/target/debug/.fingerprint/env_logger-c692726bb662edc1/lib-env_logger new file mode 100644 index 0000000..485a7a4 --- /dev/null +++ b/server/target/debug/.fingerprint/env_logger-c692726bb662edc1/lib-env_logger @@ -0,0 +1 @@ +ac9ef12593375567 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/env_logger-c692726bb662edc1/lib-env_logger.json b/server/target/debug/.fingerprint/env_logger-c692726bb662edc1/lib-env_logger.json new file mode 100644 index 0000000..1ce84d3 --- /dev/null +++ b/server/target/debug/.fingerprint/env_logger-c692726bb662edc1/lib-env_logger.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"auto-color\", \"color\", \"default\", \"humantime\", \"regex\"]","declared_features":"[\"auto-color\", \"color\", \"default\", \"humantime\", \"kv\", \"regex\", \"unstable-kv\"]","target":8437500984922885737,"profile":17646343673514590993,"path":8684168357257400850,"deps":[[7098682853475662231,"anstyle",false,16771901755091886976],[8417673557997437685,"jiff",false,8629842644604862549],[10630857666389190470,"log",false,3024114030112994732],[12605327988333861999,"env_filter",false,11798791321322254894],[17023300362321715658,"anstream",false,12006078020691333961]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/env_logger-c692726bb662edc1/dep-lib-env_logger","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/equivalent-2756b7cee286c32d/dep-lib-equivalent b/server/target/debug/.fingerprint/equivalent-2756b7cee286c32d/dep-lib-equivalent new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/equivalent-2756b7cee286c32d/dep-lib-equivalent differ diff --git a/server/target/debug/.fingerprint/equivalent-2756b7cee286c32d/invoked.timestamp b/server/target/debug/.fingerprint/equivalent-2756b7cee286c32d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/equivalent-2756b7cee286c32d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/equivalent-2756b7cee286c32d/lib-equivalent b/server/target/debug/.fingerprint/equivalent-2756b7cee286c32d/lib-equivalent new file mode 100644 index 0000000..724a24f --- /dev/null +++ b/server/target/debug/.fingerprint/equivalent-2756b7cee286c32d/lib-equivalent @@ -0,0 +1 @@ +1f1177eacdee2b1c \ No newline at end of file diff --git a/server/target/debug/.fingerprint/equivalent-2756b7cee286c32d/lib-equivalent.json b/server/target/debug/.fingerprint/equivalent-2756b7cee286c32d/lib-equivalent.json new file mode 100644 index 0000000..499b02b --- /dev/null +++ b/server/target/debug/.fingerprint/equivalent-2756b7cee286c32d/lib-equivalent.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":1524667692659508025,"profile":2241668132362809309,"path":8035466421185496679,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/equivalent-2756b7cee286c32d/dep-lib-equivalent","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/errno-ff1bed9838992472/dep-lib-errno b/server/target/debug/.fingerprint/errno-ff1bed9838992472/dep-lib-errno new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/errno-ff1bed9838992472/dep-lib-errno differ diff --git a/server/target/debug/.fingerprint/errno-ff1bed9838992472/invoked.timestamp b/server/target/debug/.fingerprint/errno-ff1bed9838992472/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/errno-ff1bed9838992472/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/errno-ff1bed9838992472/lib-errno b/server/target/debug/.fingerprint/errno-ff1bed9838992472/lib-errno new file mode 100644 index 0000000..93a7945 --- /dev/null +++ b/server/target/debug/.fingerprint/errno-ff1bed9838992472/lib-errno @@ -0,0 +1 @@ +27846f4bc0c1ed8b \ No newline at end of file diff --git a/server/target/debug/.fingerprint/errno-ff1bed9838992472/lib-errno.json b/server/target/debug/.fingerprint/errno-ff1bed9838992472/lib-errno.json new file mode 100644 index 0000000..718a19b --- /dev/null +++ b/server/target/debug/.fingerprint/errno-ff1bed9838992472/lib-errno.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":17743456753391690785,"profile":2700333317411436715,"path":2907001696263078310,"deps":[[12111499963430175700,"libc",false,2814671613317866187]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/errno-ff1bed9838992472/dep-lib-errno","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/find-msvc-tools-0523a17391f19ae0/dep-lib-find_msvc_tools b/server/target/debug/.fingerprint/find-msvc-tools-0523a17391f19ae0/dep-lib-find_msvc_tools new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/find-msvc-tools-0523a17391f19ae0/dep-lib-find_msvc_tools differ diff --git a/server/target/debug/.fingerprint/find-msvc-tools-0523a17391f19ae0/invoked.timestamp b/server/target/debug/.fingerprint/find-msvc-tools-0523a17391f19ae0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/find-msvc-tools-0523a17391f19ae0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/find-msvc-tools-0523a17391f19ae0/lib-find_msvc_tools b/server/target/debug/.fingerprint/find-msvc-tools-0523a17391f19ae0/lib-find_msvc_tools new file mode 100644 index 0000000..7210c2a --- /dev/null +++ b/server/target/debug/.fingerprint/find-msvc-tools-0523a17391f19ae0/lib-find_msvc_tools @@ -0,0 +1 @@ +47e3100158255940 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/find-msvc-tools-0523a17391f19ae0/lib-find_msvc_tools.json b/server/target/debug/.fingerprint/find-msvc-tools-0523a17391f19ae0/lib-find_msvc_tools.json new file mode 100644 index 0000000..84d6926 --- /dev/null +++ b/server/target/debug/.fingerprint/find-msvc-tools-0523a17391f19ae0/lib-find_msvc_tools.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":10620166500288925791,"profile":4333757155065362140,"path":16881909874444227854,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/find-msvc-tools-0523a17391f19ae0/dep-lib-find_msvc_tools","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/flate2-6ffae8702e07e1a1/dep-lib-flate2 b/server/target/debug/.fingerprint/flate2-6ffae8702e07e1a1/dep-lib-flate2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/flate2-6ffae8702e07e1a1/dep-lib-flate2 differ diff --git a/server/target/debug/.fingerprint/flate2-6ffae8702e07e1a1/invoked.timestamp b/server/target/debug/.fingerprint/flate2-6ffae8702e07e1a1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/flate2-6ffae8702e07e1a1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/flate2-6ffae8702e07e1a1/lib-flate2 b/server/target/debug/.fingerprint/flate2-6ffae8702e07e1a1/lib-flate2 new file mode 100644 index 0000000..7c670d5 --- /dev/null +++ b/server/target/debug/.fingerprint/flate2-6ffae8702e07e1a1/lib-flate2 @@ -0,0 +1 @@ +f32ec425bf44e87c \ No newline at end of file diff --git a/server/target/debug/.fingerprint/flate2-6ffae8702e07e1a1/lib-flate2.json b/server/target/debug/.fingerprint/flate2-6ffae8702e07e1a1/lib-flate2.json new file mode 100644 index 0000000..a8148d2 --- /dev/null +++ b/server/target/debug/.fingerprint/flate2-6ffae8702e07e1a1/lib-flate2.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"any_impl\", \"default\", \"miniz_oxide\", \"rust_backend\"]","declared_features":"[\"any_c_zlib\", \"any_impl\", \"any_zlib\", \"cloudflare-zlib-sys\", \"cloudflare_zlib\", \"default\", \"document-features\", \"libz-ng-sys\", \"libz-sys\", \"miniz-sys\", \"miniz_oxide\", \"rust_backend\", \"zlib\", \"zlib-default\", \"zlib-ng\", \"zlib-ng-compat\", \"zlib-rs\"]","target":6173716359330453699,"profile":2241668132362809309,"path":1665316785513667609,"deps":[[7312356825837975969,"crc32fast",false,13957882012990110016],[7636735136738807108,"miniz_oxide",false,1231226742492781860]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/flate2-6ffae8702e07e1a1/dep-lib-flate2","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/fnv-bfb966cefab7ffbd/dep-lib-fnv b/server/target/debug/.fingerprint/fnv-bfb966cefab7ffbd/dep-lib-fnv new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/fnv-bfb966cefab7ffbd/dep-lib-fnv differ diff --git a/server/target/debug/.fingerprint/fnv-bfb966cefab7ffbd/invoked.timestamp b/server/target/debug/.fingerprint/fnv-bfb966cefab7ffbd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/fnv-bfb966cefab7ffbd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/fnv-bfb966cefab7ffbd/lib-fnv b/server/target/debug/.fingerprint/fnv-bfb966cefab7ffbd/lib-fnv new file mode 100644 index 0000000..cba5ec7 --- /dev/null +++ b/server/target/debug/.fingerprint/fnv-bfb966cefab7ffbd/lib-fnv @@ -0,0 +1 @@ +7c88d9b004bf6d88 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/fnv-bfb966cefab7ffbd/lib-fnv.json b/server/target/debug/.fingerprint/fnv-bfb966cefab7ffbd/lib-fnv.json new file mode 100644 index 0000000..69dd78b --- /dev/null +++ b/server/target/debug/.fingerprint/fnv-bfb966cefab7ffbd/lib-fnv.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":10248144769085601448,"profile":2241668132362809309,"path":1416077644493666489,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/fnv-bfb966cefab7ffbd/dep-lib-fnv","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/foldhash-c82b54d8cb0eeb5d/dep-lib-foldhash b/server/target/debug/.fingerprint/foldhash-c82b54d8cb0eeb5d/dep-lib-foldhash new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/foldhash-c82b54d8cb0eeb5d/dep-lib-foldhash differ diff --git a/server/target/debug/.fingerprint/foldhash-c82b54d8cb0eeb5d/invoked.timestamp b/server/target/debug/.fingerprint/foldhash-c82b54d8cb0eeb5d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/foldhash-c82b54d8cb0eeb5d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/foldhash-c82b54d8cb0eeb5d/lib-foldhash b/server/target/debug/.fingerprint/foldhash-c82b54d8cb0eeb5d/lib-foldhash new file mode 100644 index 0000000..7a6c003 --- /dev/null +++ b/server/target/debug/.fingerprint/foldhash-c82b54d8cb0eeb5d/lib-foldhash @@ -0,0 +1 @@ +2ee51aa05a312d7f \ No newline at end of file diff --git a/server/target/debug/.fingerprint/foldhash-c82b54d8cb0eeb5d/lib-foldhash.json b/server/target/debug/.fingerprint/foldhash-c82b54d8cb0eeb5d/lib-foldhash.json new file mode 100644 index 0000000..fe79aa8 --- /dev/null +++ b/server/target/debug/.fingerprint/foldhash-c82b54d8cb0eeb5d/lib-foldhash.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":18077926938045032029,"profile":2241668132362809309,"path":8684958287705765816,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/foldhash-c82b54d8cb0eeb5d/dep-lib-foldhash","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/form_urlencoded-42d2b8476f4f1da3/dep-lib-form_urlencoded b/server/target/debug/.fingerprint/form_urlencoded-42d2b8476f4f1da3/dep-lib-form_urlencoded new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/form_urlencoded-42d2b8476f4f1da3/dep-lib-form_urlencoded differ diff --git a/server/target/debug/.fingerprint/form_urlencoded-42d2b8476f4f1da3/invoked.timestamp b/server/target/debug/.fingerprint/form_urlencoded-42d2b8476f4f1da3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/form_urlencoded-42d2b8476f4f1da3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/form_urlencoded-42d2b8476f4f1da3/lib-form_urlencoded b/server/target/debug/.fingerprint/form_urlencoded-42d2b8476f4f1da3/lib-form_urlencoded new file mode 100644 index 0000000..a2bf583 --- /dev/null +++ b/server/target/debug/.fingerprint/form_urlencoded-42d2b8476f4f1da3/lib-form_urlencoded @@ -0,0 +1 @@ +f9fb1b41b0329670 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/form_urlencoded-42d2b8476f4f1da3/lib-form_urlencoded.json b/server/target/debug/.fingerprint/form_urlencoded-42d2b8476f4f1da3/lib-form_urlencoded.json new file mode 100644 index 0000000..e8f44f0 --- /dev/null +++ b/server/target/debug/.fingerprint/form_urlencoded-42d2b8476f4f1da3/lib-form_urlencoded.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":6496257856677244489,"profile":2241668132362809309,"path":17894776966927087918,"deps":[[6803352382179706244,"percent_encoding",false,12394381217160922707]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/form_urlencoded-42d2b8476f4f1da3/dep-lib-form_urlencoded","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-channel-e944fdf21782c068/dep-lib-futures_channel b/server/target/debug/.fingerprint/futures-channel-e944fdf21782c068/dep-lib-futures_channel new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/futures-channel-e944fdf21782c068/dep-lib-futures_channel differ diff --git a/server/target/debug/.fingerprint/futures-channel-e944fdf21782c068/invoked.timestamp b/server/target/debug/.fingerprint/futures-channel-e944fdf21782c068/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/futures-channel-e944fdf21782c068/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-channel-e944fdf21782c068/lib-futures_channel b/server/target/debug/.fingerprint/futures-channel-e944fdf21782c068/lib-futures_channel new file mode 100644 index 0000000..82f4212 --- /dev/null +++ b/server/target/debug/.fingerprint/futures-channel-e944fdf21782c068/lib-futures_channel @@ -0,0 +1 @@ +79713bfb85865e0e \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-channel-e944fdf21782c068/lib-futures_channel.json b/server/target/debug/.fingerprint/futures-channel-e944fdf21782c068/lib-futures_channel.json new file mode 100644 index 0000000..2bb873a --- /dev/null +++ b/server/target/debug/.fingerprint/futures-channel-e944fdf21782c068/lib-futures_channel.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"futures-sink\", \"sink\", \"std\"]","declared_features":"[\"alloc\", \"cfg-target-has-atomic\", \"default\", \"futures-sink\", \"sink\", \"std\", \"unstable\"]","target":13634065851578929263,"profile":17467636112133979524,"path":7935033283737003854,"deps":[[270634688040536827,"futures_sink",false,10518964324922000320],[302948626015856208,"futures_core",false,13411290377882743454]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-channel-e944fdf21782c068/dep-lib-futures_channel","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-core-e83920f47bfcd7f8/dep-lib-futures_core b/server/target/debug/.fingerprint/futures-core-e83920f47bfcd7f8/dep-lib-futures_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/futures-core-e83920f47bfcd7f8/dep-lib-futures_core differ diff --git a/server/target/debug/.fingerprint/futures-core-e83920f47bfcd7f8/invoked.timestamp b/server/target/debug/.fingerprint/futures-core-e83920f47bfcd7f8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/futures-core-e83920f47bfcd7f8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-core-e83920f47bfcd7f8/lib-futures_core b/server/target/debug/.fingerprint/futures-core-e83920f47bfcd7f8/lib-futures_core new file mode 100644 index 0000000..dc881fd --- /dev/null +++ b/server/target/debug/.fingerprint/futures-core-e83920f47bfcd7f8/lib-futures_core @@ -0,0 +1 @@ +9eb250e98a791eba \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-core-e83920f47bfcd7f8/lib-futures_core.json b/server/target/debug/.fingerprint/futures-core-e83920f47bfcd7f8/lib-futures_core.json new file mode 100644 index 0000000..f701bd6 --- /dev/null +++ b/server/target/debug/.fingerprint/futures-core-e83920f47bfcd7f8/lib-futures_core.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"cfg-target-has-atomic\", \"default\", \"portable-atomic\", \"std\", \"unstable\"]","target":9453135960607436725,"profile":17467636112133979524,"path":11789350273774068462,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-core-e83920f47bfcd7f8/dep-lib-futures_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-ebf41c02f68175ae/dep-lib-futures b/server/target/debug/.fingerprint/futures-ebf41c02f68175ae/dep-lib-futures new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/futures-ebf41c02f68175ae/dep-lib-futures differ diff --git a/server/target/debug/.fingerprint/futures-ebf41c02f68175ae/invoked.timestamp b/server/target/debug/.fingerprint/futures-ebf41c02f68175ae/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/futures-ebf41c02f68175ae/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-ebf41c02f68175ae/lib-futures b/server/target/debug/.fingerprint/futures-ebf41c02f68175ae/lib-futures new file mode 100644 index 0000000..fa10029 --- /dev/null +++ b/server/target/debug/.fingerprint/futures-ebf41c02f68175ae/lib-futures @@ -0,0 +1 @@ +1aabf5acf004c976 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-ebf41c02f68175ae/lib-futures.json b/server/target/debug/.fingerprint/futures-ebf41c02f68175ae/lib-futures.json new file mode 100644 index 0000000..ab29221 --- /dev/null +++ b/server/target/debug/.fingerprint/futures-ebf41c02f68175ae/lib-futures.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"async-await\", \"default\", \"executor\", \"futures-executor\", \"std\"]","declared_features":"[\"alloc\", \"async-await\", \"bilock\", \"cfg-target-has-atomic\", \"compat\", \"default\", \"executor\", \"futures-executor\", \"io-compat\", \"spin\", \"std\", \"thread-pool\", \"unstable\", \"write-all-vectored\"]","target":7465627196321967167,"profile":17467636112133979524,"path":4714804902504481638,"deps":[[270634688040536827,"futures_sink",false,10518964324922000320],[302948626015856208,"futures_core",false,13411290377882743454],[5898568623609459682,"futures_util",false,9030658141603746226],[9128867168860799549,"futures_channel",false,1035412874345542009],[12256881686772805731,"futures_task",false,654204493626950959],[17736352539849991289,"futures_io",false,14134189728990897435],[18054922619297524099,"futures_executor",false,12752344812217094935]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-ebf41c02f68175ae/dep-lib-futures","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-executor-38a4aa07b9732c70/dep-lib-futures_executor b/server/target/debug/.fingerprint/futures-executor-38a4aa07b9732c70/dep-lib-futures_executor new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/futures-executor-38a4aa07b9732c70/dep-lib-futures_executor differ diff --git a/server/target/debug/.fingerprint/futures-executor-38a4aa07b9732c70/invoked.timestamp b/server/target/debug/.fingerprint/futures-executor-38a4aa07b9732c70/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/futures-executor-38a4aa07b9732c70/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-executor-38a4aa07b9732c70/lib-futures_executor b/server/target/debug/.fingerprint/futures-executor-38a4aa07b9732c70/lib-futures_executor new file mode 100644 index 0000000..6e28eaa --- /dev/null +++ b/server/target/debug/.fingerprint/futures-executor-38a4aa07b9732c70/lib-futures_executor @@ -0,0 +1 @@ +17d37eb90a6ef9b0 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-executor-38a4aa07b9732c70/lib-futures_executor.json b/server/target/debug/.fingerprint/futures-executor-38a4aa07b9732c70/lib-futures_executor.json new file mode 100644 index 0000000..c1ec719 --- /dev/null +++ b/server/target/debug/.fingerprint/futures-executor-38a4aa07b9732c70/lib-futures_executor.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"std\"]","declared_features":"[\"default\", \"std\", \"thread-pool\"]","target":11409328241454404632,"profile":17467636112133979524,"path":6972370868662473309,"deps":[[302948626015856208,"futures_core",false,13411290377882743454],[5898568623609459682,"futures_util",false,9030658141603746226],[12256881686772805731,"futures_task",false,654204493626950959]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-executor-38a4aa07b9732c70/dep-lib-futures_executor","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-io-bd1e5593ba9dde72/dep-lib-futures_io b/server/target/debug/.fingerprint/futures-io-bd1e5593ba9dde72/dep-lib-futures_io new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/futures-io-bd1e5593ba9dde72/dep-lib-futures_io differ diff --git a/server/target/debug/.fingerprint/futures-io-bd1e5593ba9dde72/invoked.timestamp b/server/target/debug/.fingerprint/futures-io-bd1e5593ba9dde72/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/futures-io-bd1e5593ba9dde72/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-io-bd1e5593ba9dde72/lib-futures_io b/server/target/debug/.fingerprint/futures-io-bd1e5593ba9dde72/lib-futures_io new file mode 100644 index 0000000..4c35552 --- /dev/null +++ b/server/target/debug/.fingerprint/futures-io-bd1e5593ba9dde72/lib-futures_io @@ -0,0 +1 @@ +1b257a20acba26c4 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-io-bd1e5593ba9dde72/lib-futures_io.json b/server/target/debug/.fingerprint/futures-io-bd1e5593ba9dde72/lib-futures_io.json new file mode 100644 index 0000000..7509b1f --- /dev/null +++ b/server/target/debug/.fingerprint/futures-io-bd1e5593ba9dde72/lib-futures_io.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"std\"]","declared_features":"[\"default\", \"std\", \"unstable\"]","target":5742820543410686210,"profile":17467636112133979524,"path":10853063731830366032,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-io-bd1e5593ba9dde72/dep-lib-futures_io","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-macro-7d2d5f7ca4ca763c/dep-lib-futures_macro b/server/target/debug/.fingerprint/futures-macro-7d2d5f7ca4ca763c/dep-lib-futures_macro new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/futures-macro-7d2d5f7ca4ca763c/dep-lib-futures_macro differ diff --git a/server/target/debug/.fingerprint/futures-macro-7d2d5f7ca4ca763c/invoked.timestamp b/server/target/debug/.fingerprint/futures-macro-7d2d5f7ca4ca763c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/futures-macro-7d2d5f7ca4ca763c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-macro-7d2d5f7ca4ca763c/lib-futures_macro b/server/target/debug/.fingerprint/futures-macro-7d2d5f7ca4ca763c/lib-futures_macro new file mode 100644 index 0000000..26feb42 --- /dev/null +++ b/server/target/debug/.fingerprint/futures-macro-7d2d5f7ca4ca763c/lib-futures_macro @@ -0,0 +1 @@ +aeaa3a4aa388b2de \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-macro-7d2d5f7ca4ca763c/lib-futures_macro.json b/server/target/debug/.fingerprint/futures-macro-7d2d5f7ca4ca763c/lib-futures_macro.json new file mode 100644 index 0000000..afdcd30 --- /dev/null +++ b/server/target/debug/.fingerprint/futures-macro-7d2d5f7ca4ca763c/lib-futures_macro.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":10957102547526291127,"profile":8113656176662020586,"path":17478046871718295108,"deps":[[4289358735036141001,"proc_macro2",false,10178310667270251203],[10420560437213941093,"syn",false,16474032542208326673],[13111758008314797071,"quote",false,16220216807289559200]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-macro-7d2d5f7ca4ca763c/dep-lib-futures_macro","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-sink-18cbfc6237452294/dep-lib-futures_sink b/server/target/debug/.fingerprint/futures-sink-18cbfc6237452294/dep-lib-futures_sink new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/futures-sink-18cbfc6237452294/dep-lib-futures_sink differ diff --git a/server/target/debug/.fingerprint/futures-sink-18cbfc6237452294/invoked.timestamp b/server/target/debug/.fingerprint/futures-sink-18cbfc6237452294/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/futures-sink-18cbfc6237452294/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-sink-18cbfc6237452294/lib-futures_sink b/server/target/debug/.fingerprint/futures-sink-18cbfc6237452294/lib-futures_sink new file mode 100644 index 0000000..4577722 --- /dev/null +++ b/server/target/debug/.fingerprint/futures-sink-18cbfc6237452294/lib-futures_sink @@ -0,0 +1 @@ +c083fb5752defa91 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-sink-18cbfc6237452294/lib-futures_sink.json b/server/target/debug/.fingerprint/futures-sink-18cbfc6237452294/lib-futures_sink.json new file mode 100644 index 0000000..75db9c2 --- /dev/null +++ b/server/target/debug/.fingerprint/futures-sink-18cbfc6237452294/lib-futures_sink.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":10827111567014737887,"profile":17467636112133979524,"path":11612974283148823988,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-sink-18cbfc6237452294/dep-lib-futures_sink","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-task-af9699ce74df53d5/dep-lib-futures_task b/server/target/debug/.fingerprint/futures-task-af9699ce74df53d5/dep-lib-futures_task new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/futures-task-af9699ce74df53d5/dep-lib-futures_task differ diff --git a/server/target/debug/.fingerprint/futures-task-af9699ce74df53d5/invoked.timestamp b/server/target/debug/.fingerprint/futures-task-af9699ce74df53d5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/futures-task-af9699ce74df53d5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-task-af9699ce74df53d5/lib-futures_task b/server/target/debug/.fingerprint/futures-task-af9699ce74df53d5/lib-futures_task new file mode 100644 index 0000000..cdd01fa --- /dev/null +++ b/server/target/debug/.fingerprint/futures-task-af9699ce74df53d5/lib-futures_task @@ -0,0 +1 @@ +2f45195585331409 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-task-af9699ce74df53d5/lib-futures_task.json b/server/target/debug/.fingerprint/futures-task-af9699ce74df53d5/lib-futures_task.json new file mode 100644 index 0000000..f017a65 --- /dev/null +++ b/server/target/debug/.fingerprint/futures-task-af9699ce74df53d5/lib-futures_task.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"cfg-target-has-atomic\", \"default\", \"std\", \"unstable\"]","target":13518091470260541623,"profile":17467636112133979524,"path":9783150300777590648,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-task-af9699ce74df53d5/dep-lib-futures_task","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-util-fcaa8b6175a75930/dep-lib-futures_util b/server/target/debug/.fingerprint/futures-util-fcaa8b6175a75930/dep-lib-futures_util new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/futures-util-fcaa8b6175a75930/dep-lib-futures_util differ diff --git a/server/target/debug/.fingerprint/futures-util-fcaa8b6175a75930/invoked.timestamp b/server/target/debug/.fingerprint/futures-util-fcaa8b6175a75930/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/futures-util-fcaa8b6175a75930/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-util-fcaa8b6175a75930/lib-futures_util b/server/target/debug/.fingerprint/futures-util-fcaa8b6175a75930/lib-futures_util new file mode 100644 index 0000000..d13fe01 --- /dev/null +++ b/server/target/debug/.fingerprint/futures-util-fcaa8b6175a75930/lib-futures_util @@ -0,0 +1 @@ +b2d147babb57537d \ No newline at end of file diff --git a/server/target/debug/.fingerprint/futures-util-fcaa8b6175a75930/lib-futures_util.json b/server/target/debug/.fingerprint/futures-util-fcaa8b6175a75930/lib-futures_util.json new file mode 100644 index 0000000..9e4634f --- /dev/null +++ b/server/target/debug/.fingerprint/futures-util-fcaa8b6175a75930/lib-futures_util.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"async-await\", \"async-await-macro\", \"channel\", \"default\", \"futures-channel\", \"futures-io\", \"futures-macro\", \"futures-sink\", \"io\", \"memchr\", \"sink\", \"slab\", \"std\"]","declared_features":"[\"alloc\", \"async-await\", \"async-await-macro\", \"bilock\", \"cfg-target-has-atomic\", \"channel\", \"compat\", \"default\", \"futures-channel\", \"futures-io\", \"futures-macro\", \"futures-sink\", \"futures_01\", \"io\", \"io-compat\", \"libc\", \"memchr\", \"portable-atomic\", \"sink\", \"slab\", \"spin\", \"std\", \"tokio-io\", \"unstable\", \"write-all-vectored\"]","target":1788798584831431502,"profile":17467636112133979524,"path":7376293022411185987,"deps":[[270634688040536827,"futures_sink",false,10518964324922000320],[302948626015856208,"futures_core",false,13411290377882743454],[1363051979936526615,"memchr",false,9034228811413583865],[2251399859588827949,"pin_project_lite",false,15566550207223256564],[9128867168860799549,"futures_channel",false,1035412874345542009],[12256881686772805731,"futures_task",false,654204493626950959],[14895711841936801505,"slab",false,8953708250709607706],[17736352539849991289,"futures_io",false,14134189728990897435],[18222057389779178848,"futures_macro",false,16047038657180904110]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-util-fcaa8b6175a75930/dep-lib-futures_util","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/generic-array-52fd0c1ecc4a7da5/build-script-build-script-build b/server/target/debug/.fingerprint/generic-array-52fd0c1ecc4a7da5/build-script-build-script-build new file mode 100644 index 0000000..885fda5 --- /dev/null +++ b/server/target/debug/.fingerprint/generic-array-52fd0c1ecc4a7da5/build-script-build-script-build @@ -0,0 +1 @@ +b415532faab05434 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/generic-array-52fd0c1ecc4a7da5/build-script-build-script-build.json b/server/target/debug/.fingerprint/generic-array-52fd0c1ecc4a7da5/build-script-build-script-build.json new file mode 100644 index 0000000..505e503 --- /dev/null +++ b/server/target/debug/.fingerprint/generic-array-52fd0c1ecc4a7da5/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"more_lengths\"]","declared_features":"[\"more_lengths\", \"serde\", \"zeroize\"]","target":12318548087768197662,"profile":2225463790103693989,"path":1423194553531443550,"deps":[[5398981501050481332,"version_check",false,16110973200079055844]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/generic-array-52fd0c1ecc4a7da5/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/generic-array-52fd0c1ecc4a7da5/dep-build-script-build-script-build b/server/target/debug/.fingerprint/generic-array-52fd0c1ecc4a7da5/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/generic-array-52fd0c1ecc4a7da5/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/generic-array-52fd0c1ecc4a7da5/invoked.timestamp b/server/target/debug/.fingerprint/generic-array-52fd0c1ecc4a7da5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/generic-array-52fd0c1ecc4a7da5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/generic-array-a8049fa7660e1d0c/run-build-script-build-script-build b/server/target/debug/.fingerprint/generic-array-a8049fa7660e1d0c/run-build-script-build-script-build new file mode 100644 index 0000000..965b372 --- /dev/null +++ b/server/target/debug/.fingerprint/generic-array-a8049fa7660e1d0c/run-build-script-build-script-build @@ -0,0 +1 @@ +662143815cb14bec \ No newline at end of file diff --git a/server/target/debug/.fingerprint/generic-array-a8049fa7660e1d0c/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/generic-array-a8049fa7660e1d0c/run-build-script-build-script-build.json new file mode 100644 index 0000000..78e5e0c --- /dev/null +++ b/server/target/debug/.fingerprint/generic-array-a8049fa7660e1d0c/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10520923840501062997,"build_script_build",false,3770833033000850868]],"local":[{"Precalculated":"0.14.7"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/generic-array-dc61c3363f471d59/dep-lib-generic_array b/server/target/debug/.fingerprint/generic-array-dc61c3363f471d59/dep-lib-generic_array new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/generic-array-dc61c3363f471d59/dep-lib-generic_array differ diff --git a/server/target/debug/.fingerprint/generic-array-dc61c3363f471d59/invoked.timestamp b/server/target/debug/.fingerprint/generic-array-dc61c3363f471d59/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/generic-array-dc61c3363f471d59/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/generic-array-dc61c3363f471d59/lib-generic_array b/server/target/debug/.fingerprint/generic-array-dc61c3363f471d59/lib-generic_array new file mode 100644 index 0000000..787bad1 --- /dev/null +++ b/server/target/debug/.fingerprint/generic-array-dc61c3363f471d59/lib-generic_array @@ -0,0 +1 @@ +c2e42adabebe1f57 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/generic-array-dc61c3363f471d59/lib-generic_array.json b/server/target/debug/.fingerprint/generic-array-dc61c3363f471d59/lib-generic_array.json new file mode 100644 index 0000000..f109db2 --- /dev/null +++ b/server/target/debug/.fingerprint/generic-array-dc61c3363f471d59/lib-generic_array.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"more_lengths\"]","declared_features":"[\"more_lengths\", \"serde\", \"zeroize\"]","target":13084005262763373425,"profile":2241668132362809309,"path":18032909885276630234,"deps":[[857979250431893282,"typenum",false,12589763801805293394],[10520923840501062997,"build_script_build",false,17026897827068060006]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/generic-array-dc61c3363f471d59/dep-lib-generic_array","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-54f6a379b19d6708/run-build-script-build-script-build b/server/target/debug/.fingerprint/getrandom-54f6a379b19d6708/run-build-script-build-script-build new file mode 100644 index 0000000..5206455 --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-54f6a379b19d6708/run-build-script-build-script-build @@ -0,0 +1 @@ +49b766f54e2f6a81 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-54f6a379b19d6708/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/getrandom-54f6a379b19d6708/run-build-script-build-script-build.json new file mode 100644 index 0000000..aef724b --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-54f6a379b19d6708/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[18408407127522236545,"build_script_build",false,36456218038451811]],"local":[{"RerunIfChanged":{"output":"debug/build/getrandom-54f6a379b19d6708/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-941c4026d36b67fd/build-script-build-script-build b/server/target/debug/.fingerprint/getrandom-941c4026d36b67fd/build-script-build-script-build new file mode 100644 index 0000000..570fee2 --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-941c4026d36b67fd/build-script-build-script-build @@ -0,0 +1 @@ +dd7022718d3c3c5f \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-941c4026d36b67fd/build-script-build-script-build.json b/server/target/debug/.fingerprint/getrandom-941c4026d36b67fd/build-script-build-script-build.json new file mode 100644 index 0000000..6593d44 --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-941c4026d36b67fd/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"std\", \"sys_rng\", \"wasm_js\"]","target":2835126046236718539,"profile":14646319430865968450,"path":606804332278042856,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-941c4026d36b67fd/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-941c4026d36b67fd/dep-build-script-build-script-build b/server/target/debug/.fingerprint/getrandom-941c4026d36b67fd/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/getrandom-941c4026d36b67fd/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/getrandom-941c4026d36b67fd/invoked.timestamp b/server/target/debug/.fingerprint/getrandom-941c4026d36b67fd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-941c4026d36b67fd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-962d43d3c1c6fac9/dep-lib-getrandom b/server/target/debug/.fingerprint/getrandom-962d43d3c1c6fac9/dep-lib-getrandom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/getrandom-962d43d3c1c6fac9/dep-lib-getrandom differ diff --git a/server/target/debug/.fingerprint/getrandom-962d43d3c1c6fac9/invoked.timestamp b/server/target/debug/.fingerprint/getrandom-962d43d3c1c6fac9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-962d43d3c1c6fac9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-962d43d3c1c6fac9/lib-getrandom b/server/target/debug/.fingerprint/getrandom-962d43d3c1c6fac9/lib-getrandom new file mode 100644 index 0000000..07d0826 --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-962d43d3c1c6fac9/lib-getrandom @@ -0,0 +1 @@ +34596eb329c22f13 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-962d43d3c1c6fac9/lib-getrandom.json b/server/target/debug/.fingerprint/getrandom-962d43d3c1c6fac9/lib-getrandom.json new file mode 100644 index 0000000..05ab2ae --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-962d43d3c1c6fac9/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"std\", \"sys_rng\", \"wasm_js\"]","target":5479159445871601843,"profile":1675109806303236742,"path":13950362652902580953,"deps":[[6509165896255665847,"build_script_build",false,6504481001162520787],[7667230146095136825,"cfg_if",false,3415395165544656506],[12111499963430175700,"libc",false,2814671613317866187]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-962d43d3c1c6fac9/dep-lib-getrandom","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-9c973929d9bde002/build-script-build-script-build b/server/target/debug/.fingerprint/getrandom-9c973929d9bde002/build-script-build-script-build new file mode 100644 index 0000000..bec38f0 --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-9c973929d9bde002/build-script-build-script-build @@ -0,0 +1 @@ +633e09b6bc848100 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-9c973929d9bde002/build-script-build-script-build.json b/server/target/debug/.fingerprint/getrandom-9c973929d9bde002/build-script-build-script-build.json new file mode 100644 index 0000000..a50eab9 --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-9c973929d9bde002/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"std\"]","declared_features":"[\"std\", \"wasm_js\"]","target":5408242616063297496,"profile":9077819541049765386,"path":5901498214934369041,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-9c973929d9bde002/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-9c973929d9bde002/dep-build-script-build-script-build b/server/target/debug/.fingerprint/getrandom-9c973929d9bde002/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/getrandom-9c973929d9bde002/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/getrandom-9c973929d9bde002/invoked.timestamp b/server/target/debug/.fingerprint/getrandom-9c973929d9bde002/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-9c973929d9bde002/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-b3889fd5f65bfec2/dep-lib-getrandom b/server/target/debug/.fingerprint/getrandom-b3889fd5f65bfec2/dep-lib-getrandom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/getrandom-b3889fd5f65bfec2/dep-lib-getrandom differ diff --git a/server/target/debug/.fingerprint/getrandom-b3889fd5f65bfec2/invoked.timestamp b/server/target/debug/.fingerprint/getrandom-b3889fd5f65bfec2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-b3889fd5f65bfec2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-b3889fd5f65bfec2/lib-getrandom b/server/target/debug/.fingerprint/getrandom-b3889fd5f65bfec2/lib-getrandom new file mode 100644 index 0000000..8764297 --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-b3889fd5f65bfec2/lib-getrandom @@ -0,0 +1 @@ +21530268e136c3a9 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-b3889fd5f65bfec2/lib-getrandom.json b/server/target/debug/.fingerprint/getrandom-b3889fd5f65bfec2/lib-getrandom.json new file mode 100644 index 0000000..9b42f7c --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-b3889fd5f65bfec2/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"std\"]","declared_features":"[\"std\", \"wasm_js\"]","target":11669924403970522481,"profile":10402231138261309960,"path":5572898432638069848,"deps":[[7667230146095136825,"cfg_if",false,3415395165544656506],[12111499963430175700,"libc",false,2814671613317866187],[18408407127522236545,"build_script_build",false,9325317994595137353]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-b3889fd5f65bfec2/dep-lib-getrandom","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-be1233102bc28025/dep-lib-getrandom b/server/target/debug/.fingerprint/getrandom-be1233102bc28025/dep-lib-getrandom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/getrandom-be1233102bc28025/dep-lib-getrandom differ diff --git a/server/target/debug/.fingerprint/getrandom-be1233102bc28025/invoked.timestamp b/server/target/debug/.fingerprint/getrandom-be1233102bc28025/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-be1233102bc28025/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-be1233102bc28025/lib-getrandom b/server/target/debug/.fingerprint/getrandom-be1233102bc28025/lib-getrandom new file mode 100644 index 0000000..c3743fe --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-be1233102bc28025/lib-getrandom @@ -0,0 +1 @@ +39bfb26217806731 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-be1233102bc28025/lib-getrandom.json b/server/target/debug/.fingerprint/getrandom-be1233102bc28025/lib-getrandom.json new file mode 100644 index 0000000..7359e5c --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-be1233102bc28025/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"std\"]","declared_features":"[\"compiler_builtins\", \"core\", \"custom\", \"js\", \"js-sys\", \"linux_disable_fallback\", \"rdrand\", \"rustc-dep-of-std\", \"std\", \"test-in-browser\", \"wasm-bindgen\"]","target":16244099637825074703,"profile":2241668132362809309,"path":1671771139202675449,"deps":[[7667230146095136825,"cfg_if",false,3415395165544656506],[12111499963430175700,"libc",false,2814671613317866187]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-be1233102bc28025/dep-lib-getrandom","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-c54f294d05169729/run-build-script-build-script-build b/server/target/debug/.fingerprint/getrandom-c54f294d05169729/run-build-script-build-script-build new file mode 100644 index 0000000..f9eaee6 --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-c54f294d05169729/run-build-script-build-script-build @@ -0,0 +1 @@ +d3b89122028f445a \ No newline at end of file diff --git a/server/target/debug/.fingerprint/getrandom-c54f294d05169729/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/getrandom-c54f294d05169729/run-build-script-build-script-build.json new file mode 100644 index 0000000..fb880f1 --- /dev/null +++ b/server/target/debug/.fingerprint/getrandom-c54f294d05169729/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6509165896255665847,"build_script_build",false,6862426510391931101]],"local":[{"RerunIfChanged":{"output":"debug/build/getrandom-c54f294d05169729/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/h2-e2fd7f76e10767d0/dep-lib-h2 b/server/target/debug/.fingerprint/h2-e2fd7f76e10767d0/dep-lib-h2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/h2-e2fd7f76e10767d0/dep-lib-h2 differ diff --git a/server/target/debug/.fingerprint/h2-e2fd7f76e10767d0/invoked.timestamp b/server/target/debug/.fingerprint/h2-e2fd7f76e10767d0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/h2-e2fd7f76e10767d0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/h2-e2fd7f76e10767d0/lib-h2 b/server/target/debug/.fingerprint/h2-e2fd7f76e10767d0/lib-h2 new file mode 100644 index 0000000..e5ed89e --- /dev/null +++ b/server/target/debug/.fingerprint/h2-e2fd7f76e10767d0/lib-h2 @@ -0,0 +1 @@ +b4295fdef291741b \ No newline at end of file diff --git a/server/target/debug/.fingerprint/h2-e2fd7f76e10767d0/lib-h2.json b/server/target/debug/.fingerprint/h2-e2fd7f76e10767d0/lib-h2.json new file mode 100644 index 0000000..084c33c --- /dev/null +++ b/server/target/debug/.fingerprint/h2-e2fd7f76e10767d0/lib-h2.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"stream\", \"unstable\"]","target":15383560931896426848,"profile":14166219718623142490,"path":15878285251930008572,"deps":[[270634688040536827,"futures_sink",false,10518964324922000320],[302948626015856208,"futures_core",false,13411290377882743454],[1345404220202658316,"fnv",false,9830723588487481468],[3163899731817361221,"tokio_util",false,16827006354653726028],[3870702314125662939,"bytes",false,16948387749507789063],[4405182208873388884,"http",false,9310491409134914378],[5898568623609459682,"futures_util",false,9030658141603746226],[11774132962602622357,"indexmap",false,5054410706173396106],[14757622794040968908,"tracing",false,4994296470301651821],[14895711841936801505,"slab",false,8953708250709607706],[17541620359049798014,"tokio",false,1041505307722513993]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/h2-e2fd7f76e10767d0/dep-lib-h2","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/hashbrown-086f503f29587ce4/dep-lib-hashbrown b/server/target/debug/.fingerprint/hashbrown-086f503f29587ce4/dep-lib-hashbrown new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/hashbrown-086f503f29587ce4/dep-lib-hashbrown differ diff --git a/server/target/debug/.fingerprint/hashbrown-086f503f29587ce4/invoked.timestamp b/server/target/debug/.fingerprint/hashbrown-086f503f29587ce4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/hashbrown-086f503f29587ce4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/hashbrown-086f503f29587ce4/lib-hashbrown b/server/target/debug/.fingerprint/hashbrown-086f503f29587ce4/lib-hashbrown new file mode 100644 index 0000000..5a99d17 --- /dev/null +++ b/server/target/debug/.fingerprint/hashbrown-086f503f29587ce4/lib-hashbrown @@ -0,0 +1 @@ +d7a62c3f0b1c14bc \ No newline at end of file diff --git a/server/target/debug/.fingerprint/hashbrown-086f503f29587ce4/lib-hashbrown.json b/server/target/debug/.fingerprint/hashbrown-086f503f29587ce4/lib-hashbrown.json new file mode 100644 index 0000000..b0be93c --- /dev/null +++ b/server/target/debug/.fingerprint/hashbrown-086f503f29587ce4/lib-hashbrown.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"alloc\", \"allocator-api2\", \"core\", \"default\", \"default-hasher\", \"equivalent\", \"inline-more\", \"nightly\", \"raw-entry\", \"rayon\", \"rustc-dep-of-std\", \"rustc-internal-api\", \"serde\"]","target":13796197676120832388,"profile":2241668132362809309,"path":1585558030435262135,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hashbrown-086f503f29587ce4/dep-lib-hashbrown","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/hashbrown-90aa0807193b9849/dep-lib-hashbrown b/server/target/debug/.fingerprint/hashbrown-90aa0807193b9849/dep-lib-hashbrown new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/hashbrown-90aa0807193b9849/dep-lib-hashbrown differ diff --git a/server/target/debug/.fingerprint/hashbrown-90aa0807193b9849/invoked.timestamp b/server/target/debug/.fingerprint/hashbrown-90aa0807193b9849/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/hashbrown-90aa0807193b9849/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/hashbrown-90aa0807193b9849/lib-hashbrown b/server/target/debug/.fingerprint/hashbrown-90aa0807193b9849/lib-hashbrown new file mode 100644 index 0000000..a5d5d08 --- /dev/null +++ b/server/target/debug/.fingerprint/hashbrown-90aa0807193b9849/lib-hashbrown @@ -0,0 +1 @@ +82fea3a855eee8d9 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/hashbrown-90aa0807193b9849/lib-hashbrown.json b/server/target/debug/.fingerprint/hashbrown-90aa0807193b9849/lib-hashbrown.json new file mode 100644 index 0000000..1a490ca --- /dev/null +++ b/server/target/debug/.fingerprint/hashbrown-90aa0807193b9849/lib-hashbrown.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"raw\"]","declared_features":"[\"ahash\", \"alloc\", \"allocator-api2\", \"compiler_builtins\", \"core\", \"default\", \"equivalent\", \"inline-more\", \"nightly\", \"raw\", \"rayon\", \"rkyv\", \"rustc-dep-of-std\", \"rustc-internal-api\", \"serde\"]","target":9101038166729729440,"profile":2241668132362809309,"path":18318746071466872371,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hashbrown-90aa0807193b9849/dep-lib-hashbrown","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/http-8cc0f90952a94539/dep-lib-http b/server/target/debug/.fingerprint/http-8cc0f90952a94539/dep-lib-http new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/http-8cc0f90952a94539/dep-lib-http differ diff --git a/server/target/debug/.fingerprint/http-8cc0f90952a94539/invoked.timestamp b/server/target/debug/.fingerprint/http-8cc0f90952a94539/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/http-8cc0f90952a94539/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/http-8cc0f90952a94539/lib-http b/server/target/debug/.fingerprint/http-8cc0f90952a94539/lib-http new file mode 100644 index 0000000..71de3a7 --- /dev/null +++ b/server/target/debug/.fingerprint/http-8cc0f90952a94539/lib-http @@ -0,0 +1 @@ +4a0bd0859b823581 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/http-8cc0f90952a94539/lib-http.json b/server/target/debug/.fingerprint/http-8cc0f90952a94539/lib-http.json new file mode 100644 index 0000000..566b8ac --- /dev/null +++ b/server/target/debug/.fingerprint/http-8cc0f90952a94539/lib-http.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":11009710222111042559,"profile":2241668132362809309,"path":13391587824326377234,"deps":[[1345404220202658316,"fnv",false,9830723588487481468],[3870702314125662939,"bytes",false,16948387749507789063],[5532778797167691009,"itoa",false,3720987438297136726]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/http-8cc0f90952a94539/dep-lib-http","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/http-range-5b4ea6f89def8e3e/dep-lib-http_range b/server/target/debug/.fingerprint/http-range-5b4ea6f89def8e3e/dep-lib-http_range new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/http-range-5b4ea6f89def8e3e/dep-lib-http_range differ diff --git a/server/target/debug/.fingerprint/http-range-5b4ea6f89def8e3e/invoked.timestamp b/server/target/debug/.fingerprint/http-range-5b4ea6f89def8e3e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/http-range-5b4ea6f89def8e3e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/http-range-5b4ea6f89def8e3e/lib-http_range b/server/target/debug/.fingerprint/http-range-5b4ea6f89def8e3e/lib-http_range new file mode 100644 index 0000000..04ccbb9 --- /dev/null +++ b/server/target/debug/.fingerprint/http-range-5b4ea6f89def8e3e/lib-http_range @@ -0,0 +1 @@ +f56bdfeb53be6118 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/http-range-5b4ea6f89def8e3e/lib-http_range.json b/server/target/debug/.fingerprint/http-range-5b4ea6f89def8e3e/lib-http_range.json new file mode 100644 index 0000000..f118bb6 --- /dev/null +++ b/server/target/debug/.fingerprint/http-range-5b4ea6f89def8e3e/lib-http_range.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":6646560802648831292,"profile":2241668132362809309,"path":12785768464466991399,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/http-range-5b4ea6f89def8e3e/dep-lib-http_range","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/httparse-173d9c520e2abbc3/run-build-script-build-script-build b/server/target/debug/.fingerprint/httparse-173d9c520e2abbc3/run-build-script-build-script-build new file mode 100644 index 0000000..7412732 --- /dev/null +++ b/server/target/debug/.fingerprint/httparse-173d9c520e2abbc3/run-build-script-build-script-build @@ -0,0 +1 @@ +0a923bdfa37ad1e8 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/httparse-173d9c520e2abbc3/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/httparse-173d9c520e2abbc3/run-build-script-build-script-build.json new file mode 100644 index 0000000..fa2be40 --- /dev/null +++ b/server/target/debug/.fingerprint/httparse-173d9c520e2abbc3/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6163892036024256188,"build_script_build",false,8413775746714467976]],"local":[{"Precalculated":"1.10.1"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/httparse-a0b58dd76fe5a3c6/build-script-build-script-build b/server/target/debug/.fingerprint/httparse-a0b58dd76fe5a3c6/build-script-build-script-build new file mode 100644 index 0000000..9488401 --- /dev/null +++ b/server/target/debug/.fingerprint/httparse-a0b58dd76fe5a3c6/build-script-build-script-build @@ -0,0 +1 @@ +887eb6aa76bcc374 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/httparse-a0b58dd76fe5a3c6/build-script-build-script-build.json b/server/target/debug/.fingerprint/httparse-a0b58dd76fe5a3c6/build-script-build-script-build.json new file mode 100644 index 0000000..d8551ef --- /dev/null +++ b/server/target/debug/.fingerprint/httparse-a0b58dd76fe5a3c6/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":17883862002600103897,"profile":16555127815671124681,"path":13939841438379307246,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/httparse-a0b58dd76fe5a3c6/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/httparse-a0b58dd76fe5a3c6/dep-build-script-build-script-build b/server/target/debug/.fingerprint/httparse-a0b58dd76fe5a3c6/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/httparse-a0b58dd76fe5a3c6/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/httparse-a0b58dd76fe5a3c6/invoked.timestamp b/server/target/debug/.fingerprint/httparse-a0b58dd76fe5a3c6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/httparse-a0b58dd76fe5a3c6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/httparse-a8ec7c153a3faeea/dep-lib-httparse b/server/target/debug/.fingerprint/httparse-a8ec7c153a3faeea/dep-lib-httparse new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/httparse-a8ec7c153a3faeea/dep-lib-httparse differ diff --git a/server/target/debug/.fingerprint/httparse-a8ec7c153a3faeea/invoked.timestamp b/server/target/debug/.fingerprint/httparse-a8ec7c153a3faeea/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/httparse-a8ec7c153a3faeea/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/httparse-a8ec7c153a3faeea/lib-httparse b/server/target/debug/.fingerprint/httparse-a8ec7c153a3faeea/lib-httparse new file mode 100644 index 0000000..20c6101 --- /dev/null +++ b/server/target/debug/.fingerprint/httparse-a8ec7c153a3faeea/lib-httparse @@ -0,0 +1 @@ +8abf966a740b6fa5 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/httparse-a8ec7c153a3faeea/lib-httparse.json b/server/target/debug/.fingerprint/httparse-a8ec7c153a3faeea/lib-httparse.json new file mode 100644 index 0000000..ef64312 --- /dev/null +++ b/server/target/debug/.fingerprint/httparse-a8ec7c153a3faeea/lib-httparse.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":2257539891522735522,"profile":6272744226771020950,"path":2299324375821863959,"deps":[[6163892036024256188,"build_script_build",false,16776324931175289354]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/httparse-a8ec7c153a3faeea/dep-lib-httparse","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/httpdate-b488394b8eb3fda5/dep-lib-httpdate b/server/target/debug/.fingerprint/httpdate-b488394b8eb3fda5/dep-lib-httpdate new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/httpdate-b488394b8eb3fda5/dep-lib-httpdate differ diff --git a/server/target/debug/.fingerprint/httpdate-b488394b8eb3fda5/invoked.timestamp b/server/target/debug/.fingerprint/httpdate-b488394b8eb3fda5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/httpdate-b488394b8eb3fda5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/httpdate-b488394b8eb3fda5/lib-httpdate b/server/target/debug/.fingerprint/httpdate-b488394b8eb3fda5/lib-httpdate new file mode 100644 index 0000000..17d37c2 --- /dev/null +++ b/server/target/debug/.fingerprint/httpdate-b488394b8eb3fda5/lib-httpdate @@ -0,0 +1 @@ +12a469b2688ee3d2 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/httpdate-b488394b8eb3fda5/lib-httpdate.json b/server/target/debug/.fingerprint/httpdate-b488394b8eb3fda5/lib-httpdate.json new file mode 100644 index 0000000..3000a3a --- /dev/null +++ b/server/target/debug/.fingerprint/httpdate-b488394b8eb3fda5/lib-httpdate.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":12509520342503990962,"profile":2241668132362809309,"path":9299071095239913512,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/httpdate-b488394b8eb3fda5/dep-lib-httpdate","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/iana-time-zone-0d6162f939426278/dep-lib-iana_time_zone b/server/target/debug/.fingerprint/iana-time-zone-0d6162f939426278/dep-lib-iana_time_zone new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/iana-time-zone-0d6162f939426278/dep-lib-iana_time_zone differ diff --git a/server/target/debug/.fingerprint/iana-time-zone-0d6162f939426278/invoked.timestamp b/server/target/debug/.fingerprint/iana-time-zone-0d6162f939426278/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/iana-time-zone-0d6162f939426278/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/iana-time-zone-0d6162f939426278/lib-iana_time_zone b/server/target/debug/.fingerprint/iana-time-zone-0d6162f939426278/lib-iana_time_zone new file mode 100644 index 0000000..fafbe1b --- /dev/null +++ b/server/target/debug/.fingerprint/iana-time-zone-0d6162f939426278/lib-iana_time_zone @@ -0,0 +1 @@ +308cddc1ddf8f0dd \ No newline at end of file diff --git a/server/target/debug/.fingerprint/iana-time-zone-0d6162f939426278/lib-iana_time_zone.json b/server/target/debug/.fingerprint/iana-time-zone-0d6162f939426278/lib-iana_time_zone.json new file mode 100644 index 0000000..f1b8b07 --- /dev/null +++ b/server/target/debug/.fingerprint/iana-time-zone-0d6162f939426278/lib-iana_time_zone.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"fallback\"]","declared_features":"[\"fallback\"]","target":13492157405369956366,"profile":2241668132362809309,"path":13867489866671012537,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/iana-time-zone-0d6162f939426278/dep-lib-iana_time_zone","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_collections-fa262f2c90f179b1/dep-lib-icu_collections b/server/target/debug/.fingerprint/icu_collections-fa262f2c90f179b1/dep-lib-icu_collections new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/icu_collections-fa262f2c90f179b1/dep-lib-icu_collections differ diff --git a/server/target/debug/.fingerprint/icu_collections-fa262f2c90f179b1/invoked.timestamp b/server/target/debug/.fingerprint/icu_collections-fa262f2c90f179b1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/icu_collections-fa262f2c90f179b1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_collections-fa262f2c90f179b1/lib-icu_collections b/server/target/debug/.fingerprint/icu_collections-fa262f2c90f179b1/lib-icu_collections new file mode 100644 index 0000000..1016d9a --- /dev/null +++ b/server/target/debug/.fingerprint/icu_collections-fa262f2c90f179b1/lib-icu_collections @@ -0,0 +1 @@ +b8bcce21bee35bac \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_collections-fa262f2c90f179b1/lib-icu_collections.json b/server/target/debug/.fingerprint/icu_collections-fa262f2c90f179b1/lib-icu_collections.json new file mode 100644 index 0000000..dc306f6 --- /dev/null +++ b/server/target/debug/.fingerprint/icu_collections-fa262f2c90f179b1/lib-icu_collections.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"alloc\", \"databake\", \"serde\"]","target":8741949119514994751,"profile":15319846033271432293,"path":1097350708841923072,"deps":[[5078124415930854154,"utf8_iter",false,367135797505550643],[5298260564258778412,"displaydoc",false,9486569632487039336],[9119616491714376884,"zerovec",false,7143538521124184093],[11416707103264493240,"yoke",false,2517306822553687459],[12771427830955461916,"zerofrom",false,14996317217188502111],[16987687164371150135,"potential_utf",false,13533286326171092005]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_collections-fa262f2c90f179b1/dep-lib-icu_collections","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_locale_core-9b1bba3cd6c778b5/dep-lib-icu_locale_core b/server/target/debug/.fingerprint/icu_locale_core-9b1bba3cd6c778b5/dep-lib-icu_locale_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/icu_locale_core-9b1bba3cd6c778b5/dep-lib-icu_locale_core differ diff --git a/server/target/debug/.fingerprint/icu_locale_core-9b1bba3cd6c778b5/invoked.timestamp b/server/target/debug/.fingerprint/icu_locale_core-9b1bba3cd6c778b5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/icu_locale_core-9b1bba3cd6c778b5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_locale_core-9b1bba3cd6c778b5/lib-icu_locale_core b/server/target/debug/.fingerprint/icu_locale_core-9b1bba3cd6c778b5/lib-icu_locale_core new file mode 100644 index 0000000..93b09a6 --- /dev/null +++ b/server/target/debug/.fingerprint/icu_locale_core-9b1bba3cd6c778b5/lib-icu_locale_core @@ -0,0 +1 @@ +524bcd3b1cf3a9de \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_locale_core-9b1bba3cd6c778b5/lib-icu_locale_core.json b/server/target/debug/.fingerprint/icu_locale_core-9b1bba3cd6c778b5/lib-icu_locale_core.json new file mode 100644 index 0000000..b4749d6 --- /dev/null +++ b/server/target/debug/.fingerprint/icu_locale_core-9b1bba3cd6c778b5/lib-icu_locale_core.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"serde\", \"zerovec\"]","target":7234736894702847895,"profile":15319846033271432293,"path":16471132505866370009,"deps":[[3472867876026527834,"litemap",false,4657987417038911560],[4600868325190463366,"writeable",false,9490681661831771088],[5298260564258778412,"displaydoc",false,9486569632487039336],[9119616491714376884,"zerovec",false,7143538521124184093],[11371850679357357896,"tinystr",false,9465344317452407660]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_locale_core-9b1bba3cd6c778b5/dep-lib-icu_locale_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_normalizer-5f9d6fc65fca7bd3/dep-lib-icu_normalizer b/server/target/debug/.fingerprint/icu_normalizer-5f9d6fc65fca7bd3/dep-lib-icu_normalizer new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/icu_normalizer-5f9d6fc65fca7bd3/dep-lib-icu_normalizer differ diff --git a/server/target/debug/.fingerprint/icu_normalizer-5f9d6fc65fca7bd3/invoked.timestamp b/server/target/debug/.fingerprint/icu_normalizer-5f9d6fc65fca7bd3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/icu_normalizer-5f9d6fc65fca7bd3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_normalizer-5f9d6fc65fca7bd3/lib-icu_normalizer b/server/target/debug/.fingerprint/icu_normalizer-5f9d6fc65fca7bd3/lib-icu_normalizer new file mode 100644 index 0000000..371364b --- /dev/null +++ b/server/target/debug/.fingerprint/icu_normalizer-5f9d6fc65fca7bd3/lib-icu_normalizer @@ -0,0 +1 @@ +7b4111be9c6d5f75 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_normalizer-5f9d6fc65fca7bd3/lib-icu_normalizer.json b/server/target/debug/.fingerprint/icu_normalizer-5f9d6fc65fca7bd3/lib-icu_normalizer.json new file mode 100644 index 0000000..8398e29 --- /dev/null +++ b/server/target/debug/.fingerprint/icu_normalizer-5f9d6fc65fca7bd3/lib-icu_normalizer.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"compiled_data\"]","declared_features":"[\"compiled_data\", \"datagen\", \"default\", \"harfbuzz_traits\", \"icu_properties\", \"serde\", \"utf16_iter\", \"utf8_iter\", \"write16\"]","target":4082895731217690114,"profile":15319846033271432293,"path":5220146128184481911,"deps":[[2740396133377933779,"icu_collections",false,12419770803154762936],[3666196340704888985,"smallvec",false,5778069751535923719],[6775492119671411220,"icu_provider",false,7840537284990336127],[8537256058173792506,"icu_normalizer_data",false,17691105260264730758],[9119616491714376884,"zerovec",false,7143538521124184093]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_normalizer-5f9d6fc65fca7bd3/dep-lib-icu_normalizer","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_normalizer_data-c58011b549a78ed1/dep-lib-icu_normalizer_data b/server/target/debug/.fingerprint/icu_normalizer_data-c58011b549a78ed1/dep-lib-icu_normalizer_data new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/icu_normalizer_data-c58011b549a78ed1/dep-lib-icu_normalizer_data differ diff --git a/server/target/debug/.fingerprint/icu_normalizer_data-c58011b549a78ed1/invoked.timestamp b/server/target/debug/.fingerprint/icu_normalizer_data-c58011b549a78ed1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/icu_normalizer_data-c58011b549a78ed1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_normalizer_data-c58011b549a78ed1/lib-icu_normalizer_data b/server/target/debug/.fingerprint/icu_normalizer_data-c58011b549a78ed1/lib-icu_normalizer_data new file mode 100644 index 0000000..885e026 --- /dev/null +++ b/server/target/debug/.fingerprint/icu_normalizer_data-c58011b549a78ed1/lib-icu_normalizer_data @@ -0,0 +1 @@ +86b01fb2806e83f5 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_normalizer_data-c58011b549a78ed1/lib-icu_normalizer_data.json b/server/target/debug/.fingerprint/icu_normalizer_data-c58011b549a78ed1/lib-icu_normalizer_data.json new file mode 100644 index 0000000..68564bf --- /dev/null +++ b/server/target/debug/.fingerprint/icu_normalizer_data-c58011b549a78ed1/lib-icu_normalizer_data.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":17980939898269686983,"profile":6379353384314970492,"path":4009050048366515006,"deps":[[8537256058173792506,"build_script_build",false,17323722933665440440]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_normalizer_data-c58011b549a78ed1/dep-lib-icu_normalizer_data","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_normalizer_data-efa217b10c4f6914/build-script-build-script-build b/server/target/debug/.fingerprint/icu_normalizer_data-efa217b10c4f6914/build-script-build-script-build new file mode 100644 index 0000000..d61bef6 --- /dev/null +++ b/server/target/debug/.fingerprint/icu_normalizer_data-efa217b10c4f6914/build-script-build-script-build @@ -0,0 +1 @@ +a44bfe188ca11d6f \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_normalizer_data-efa217b10c4f6914/build-script-build-script-build.json b/server/target/debug/.fingerprint/icu_normalizer_data-efa217b10c4f6914/build-script-build-script-build.json new file mode 100644 index 0000000..7245904 --- /dev/null +++ b/server/target/debug/.fingerprint/icu_normalizer_data-efa217b10c4f6914/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":13574669494803281578,"path":14862131668308303914,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_normalizer_data-efa217b10c4f6914/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_normalizer_data-efa217b10c4f6914/dep-build-script-build-script-build b/server/target/debug/.fingerprint/icu_normalizer_data-efa217b10c4f6914/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/icu_normalizer_data-efa217b10c4f6914/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/icu_normalizer_data-efa217b10c4f6914/invoked.timestamp b/server/target/debug/.fingerprint/icu_normalizer_data-efa217b10c4f6914/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/icu_normalizer_data-efa217b10c4f6914/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_normalizer_data-fdb0024b69386ad8/run-build-script-build-script-build b/server/target/debug/.fingerprint/icu_normalizer_data-fdb0024b69386ad8/run-build-script-build-script-build new file mode 100644 index 0000000..84af518 --- /dev/null +++ b/server/target/debug/.fingerprint/icu_normalizer_data-fdb0024b69386ad8/run-build-script-build-script-build @@ -0,0 +1 @@ +b8a26a20393a6af0 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_normalizer_data-fdb0024b69386ad8/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/icu_normalizer_data-fdb0024b69386ad8/run-build-script-build-script-build.json new file mode 100644 index 0000000..f80d080 --- /dev/null +++ b/server/target/debug/.fingerprint/icu_normalizer_data-fdb0024b69386ad8/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8537256058173792506,"build_script_build",false,8006733335621421988]],"local":[{"RerunIfEnvChanged":{"var":"ICU4X_DATA_DIR","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_properties-66cf275404c2dd4d/dep-lib-icu_properties b/server/target/debug/.fingerprint/icu_properties-66cf275404c2dd4d/dep-lib-icu_properties new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/icu_properties-66cf275404c2dd4d/dep-lib-icu_properties differ diff --git a/server/target/debug/.fingerprint/icu_properties-66cf275404c2dd4d/invoked.timestamp b/server/target/debug/.fingerprint/icu_properties-66cf275404c2dd4d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/icu_properties-66cf275404c2dd4d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_properties-66cf275404c2dd4d/lib-icu_properties b/server/target/debug/.fingerprint/icu_properties-66cf275404c2dd4d/lib-icu_properties new file mode 100644 index 0000000..bdb6639 --- /dev/null +++ b/server/target/debug/.fingerprint/icu_properties-66cf275404c2dd4d/lib-icu_properties @@ -0,0 +1 @@ +34ddccc964d150a6 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_properties-66cf275404c2dd4d/lib-icu_properties.json b/server/target/debug/.fingerprint/icu_properties-66cf275404c2dd4d/lib-icu_properties.json new file mode 100644 index 0000000..a2bf6a2 --- /dev/null +++ b/server/target/debug/.fingerprint/icu_properties-66cf275404c2dd4d/lib-icu_properties.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"compiled_data\"]","declared_features":"[\"alloc\", \"compiled_data\", \"datagen\", \"default\", \"harfbuzz_traits\", \"serde\", \"unicode_bidi\"]","target":12882061015678277883,"profile":15319846033271432293,"path":13791555094872305521,"deps":[[2508912448185119253,"icu_locale_core",false,16044622450072046418],[2740396133377933779,"icu_collections",false,12419770803154762936],[6765506827638725279,"icu_properties_data",false,16588071115292520013],[6775492119671411220,"icu_provider",false,7840537284990336127],[9119616491714376884,"zerovec",false,7143538521124184093],[12042051876675963596,"zerotrie",false,18363090018488805484]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_properties-66cf275404c2dd4d/dep-lib-icu_properties","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_properties_data-051a7c8a616a6b56/dep-lib-icu_properties_data b/server/target/debug/.fingerprint/icu_properties_data-051a7c8a616a6b56/dep-lib-icu_properties_data new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/icu_properties_data-051a7c8a616a6b56/dep-lib-icu_properties_data differ diff --git a/server/target/debug/.fingerprint/icu_properties_data-051a7c8a616a6b56/invoked.timestamp b/server/target/debug/.fingerprint/icu_properties_data-051a7c8a616a6b56/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/icu_properties_data-051a7c8a616a6b56/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_properties_data-051a7c8a616a6b56/lib-icu_properties_data b/server/target/debug/.fingerprint/icu_properties_data-051a7c8a616a6b56/lib-icu_properties_data new file mode 100644 index 0000000..d76cfa5 --- /dev/null +++ b/server/target/debug/.fingerprint/icu_properties_data-051a7c8a616a6b56/lib-icu_properties_data @@ -0,0 +1 @@ +4daeedbfcaaa34e6 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_properties_data-051a7c8a616a6b56/lib-icu_properties_data.json b/server/target/debug/.fingerprint/icu_properties_data-051a7c8a616a6b56/lib-icu_properties_data.json new file mode 100644 index 0000000..a7afdb3 --- /dev/null +++ b/server/target/debug/.fingerprint/icu_properties_data-051a7c8a616a6b56/lib-icu_properties_data.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":9037757742335137726,"profile":6379353384314970492,"path":4783325079323047420,"deps":[[6765506827638725279,"build_script_build",false,7289458430271780769]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_properties_data-051a7c8a616a6b56/dep-lib-icu_properties_data","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_properties_data-87e07b46ec576592/build-script-build-script-build b/server/target/debug/.fingerprint/icu_properties_data-87e07b46ec576592/build-script-build-script-build new file mode 100644 index 0000000..f5f41ad --- /dev/null +++ b/server/target/debug/.fingerprint/icu_properties_data-87e07b46ec576592/build-script-build-script-build @@ -0,0 +1 @@ +df6063e098a81f75 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_properties_data-87e07b46ec576592/build-script-build-script-build.json b/server/target/debug/.fingerprint/icu_properties_data-87e07b46ec576592/build-script-build-script-build.json new file mode 100644 index 0000000..a6e9665 --- /dev/null +++ b/server/target/debug/.fingerprint/icu_properties_data-87e07b46ec576592/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":13574669494803281578,"path":6145842046614894910,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_properties_data-87e07b46ec576592/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_properties_data-87e07b46ec576592/dep-build-script-build-script-build b/server/target/debug/.fingerprint/icu_properties_data-87e07b46ec576592/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/icu_properties_data-87e07b46ec576592/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/icu_properties_data-87e07b46ec576592/invoked.timestamp b/server/target/debug/.fingerprint/icu_properties_data-87e07b46ec576592/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/icu_properties_data-87e07b46ec576592/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_properties_data-e31c77d0b71db455/run-build-script-build-script-build b/server/target/debug/.fingerprint/icu_properties_data-e31c77d0b71db455/run-build-script-build-script-build new file mode 100644 index 0000000..fd5d27c --- /dev/null +++ b/server/target/debug/.fingerprint/icu_properties_data-e31c77d0b71db455/run-build-script-build-script-build @@ -0,0 +1 @@ +a1775335d25b2965 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_properties_data-e31c77d0b71db455/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/icu_properties_data-e31c77d0b71db455/run-build-script-build-script-build.json new file mode 100644 index 0000000..e7f8646 --- /dev/null +++ b/server/target/debug/.fingerprint/icu_properties_data-e31c77d0b71db455/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6765506827638725279,"build_script_build",false,8439649601268703455]],"local":[{"RerunIfEnvChanged":{"var":"ICU4X_DATA_DIR","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_provider-e3cfd454ae7bec4f/dep-lib-icu_provider b/server/target/debug/.fingerprint/icu_provider-e3cfd454ae7bec4f/dep-lib-icu_provider new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/icu_provider-e3cfd454ae7bec4f/dep-lib-icu_provider differ diff --git a/server/target/debug/.fingerprint/icu_provider-e3cfd454ae7bec4f/invoked.timestamp b/server/target/debug/.fingerprint/icu_provider-e3cfd454ae7bec4f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/icu_provider-e3cfd454ae7bec4f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_provider-e3cfd454ae7bec4f/lib-icu_provider b/server/target/debug/.fingerprint/icu_provider-e3cfd454ae7bec4f/lib-icu_provider new file mode 100644 index 0000000..81954aa --- /dev/null +++ b/server/target/debug/.fingerprint/icu_provider-e3cfd454ae7bec4f/lib-icu_provider @@ -0,0 +1 @@ +7ffc0da81e2fcf6c \ No newline at end of file diff --git a/server/target/debug/.fingerprint/icu_provider-e3cfd454ae7bec4f/lib-icu_provider.json b/server/target/debug/.fingerprint/icu_provider-e3cfd454ae7bec4f/lib-icu_provider.json new file mode 100644 index 0000000..7bcd311 --- /dev/null +++ b/server/target/debug/.fingerprint/icu_provider-e3cfd454ae7bec4f/lib-icu_provider.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"baked\"]","declared_features":"[\"alloc\", \"baked\", \"deserialize_bincode_1\", \"deserialize_json\", \"deserialize_postcard_1\", \"export\", \"logging\", \"serde\", \"std\", \"sync\", \"zerotrie\"]","target":8134314816311233441,"profile":15319846033271432293,"path":14274400073097950477,"deps":[[2508912448185119253,"icu_locale_core",false,16044622450072046418],[4600868325190463366,"writeable",false,9490681661831771088],[5298260564258778412,"displaydoc",false,9486569632487039336],[9119616491714376884,"zerovec",false,7143538521124184093],[11416707103264493240,"yoke",false,2517306822553687459],[12042051876675963596,"zerotrie",false,18363090018488805484],[12771427830955461916,"zerofrom",false,14996317217188502111]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_provider-e3cfd454ae7bec4f/dep-lib-icu_provider","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/idna-6c8efbcbc044c3d5/dep-lib-idna b/server/target/debug/.fingerprint/idna-6c8efbcbc044c3d5/dep-lib-idna new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/idna-6c8efbcbc044c3d5/dep-lib-idna differ diff --git a/server/target/debug/.fingerprint/idna-6c8efbcbc044c3d5/invoked.timestamp b/server/target/debug/.fingerprint/idna-6c8efbcbc044c3d5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/idna-6c8efbcbc044c3d5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/idna-6c8efbcbc044c3d5/lib-idna b/server/target/debug/.fingerprint/idna-6c8efbcbc044c3d5/lib-idna new file mode 100644 index 0000000..37b0c7c --- /dev/null +++ b/server/target/debug/.fingerprint/idna-6c8efbcbc044c3d5/lib-idna @@ -0,0 +1 @@ +c0e9ff481eb3a694 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/idna-6c8efbcbc044c3d5/lib-idna.json b/server/target/debug/.fingerprint/idna-6c8efbcbc044c3d5/lib-idna.json new file mode 100644 index 0000000..95ee1c0 --- /dev/null +++ b/server/target/debug/.fingerprint/idna-6c8efbcbc044c3d5/lib-idna.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"compiled_data\", \"std\"]","declared_features":"[\"alloc\", \"compiled_data\", \"default\", \"std\"]","target":2602963282308965300,"profile":2241668132362809309,"path":13831902415765817622,"deps":[[3666196340704888985,"smallvec",false,5778069751535923719],[5078124415930854154,"utf8_iter",false,367135797505550643],[15512052560677395824,"idna_adapter",false,8025747884537263047]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/idna-6c8efbcbc044c3d5/dep-lib-idna","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/idna_adapter-818f0d431beba66d/dep-lib-idna_adapter b/server/target/debug/.fingerprint/idna_adapter-818f0d431beba66d/dep-lib-idna_adapter new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/idna_adapter-818f0d431beba66d/dep-lib-idna_adapter differ diff --git a/server/target/debug/.fingerprint/idna_adapter-818f0d431beba66d/invoked.timestamp b/server/target/debug/.fingerprint/idna_adapter-818f0d431beba66d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/idna_adapter-818f0d431beba66d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/idna_adapter-818f0d431beba66d/lib-idna_adapter b/server/target/debug/.fingerprint/idna_adapter-818f0d431beba66d/lib-idna_adapter new file mode 100644 index 0000000..0fdc1c4 --- /dev/null +++ b/server/target/debug/.fingerprint/idna_adapter-818f0d431beba66d/lib-idna_adapter @@ -0,0 +1 @@ +c7b3afc22d2f616f \ No newline at end of file diff --git a/server/target/debug/.fingerprint/idna_adapter-818f0d431beba66d/lib-idna_adapter.json b/server/target/debug/.fingerprint/idna_adapter-818f0d431beba66d/lib-idna_adapter.json new file mode 100644 index 0000000..0f44f10 --- /dev/null +++ b/server/target/debug/.fingerprint/idna_adapter-818f0d431beba66d/lib-idna_adapter.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"compiled_data\"]","declared_features":"[\"compiled_data\"]","target":9682399050268992880,"profile":2241668132362809309,"path":12651971024534118662,"deps":[[2309614597000388150,"icu_normalizer",false,8457599145196208507],[5565326065051315429,"icu_properties",false,11984308839245471028]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/idna_adapter-818f0d431beba66d/dep-lib-idna_adapter","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/impl-more-55171a48d86b1836/dep-lib-impl_more b/server/target/debug/.fingerprint/impl-more-55171a48d86b1836/dep-lib-impl_more new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/impl-more-55171a48d86b1836/dep-lib-impl_more differ diff --git a/server/target/debug/.fingerprint/impl-more-55171a48d86b1836/invoked.timestamp b/server/target/debug/.fingerprint/impl-more-55171a48d86b1836/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/impl-more-55171a48d86b1836/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/impl-more-55171a48d86b1836/lib-impl_more b/server/target/debug/.fingerprint/impl-more-55171a48d86b1836/lib-impl_more new file mode 100644 index 0000000..e24bd53 --- /dev/null +++ b/server/target/debug/.fingerprint/impl-more-55171a48d86b1836/lib-impl_more @@ -0,0 +1 @@ +e7d3fdcbc8672825 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/impl-more-55171a48d86b1836/lib-impl_more.json b/server/target/debug/.fingerprint/impl-more-55171a48d86b1836/lib-impl_more.json new file mode 100644 index 0000000..849fc47 --- /dev/null +++ b/server/target/debug/.fingerprint/impl-more-55171a48d86b1836/lib-impl_more.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":1927766717825819639,"profile":6931308511698456744,"path":8889803807967536463,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/impl-more-55171a48d86b1836/dep-lib-impl_more","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/indexmap-62979d31bee7d64d/dep-lib-indexmap b/server/target/debug/.fingerprint/indexmap-62979d31bee7d64d/dep-lib-indexmap new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/indexmap-62979d31bee7d64d/dep-lib-indexmap differ diff --git a/server/target/debug/.fingerprint/indexmap-62979d31bee7d64d/invoked.timestamp b/server/target/debug/.fingerprint/indexmap-62979d31bee7d64d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/indexmap-62979d31bee7d64d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/indexmap-62979d31bee7d64d/lib-indexmap b/server/target/debug/.fingerprint/indexmap-62979d31bee7d64d/lib-indexmap new file mode 100644 index 0000000..7778874 --- /dev/null +++ b/server/target/debug/.fingerprint/indexmap-62979d31bee7d64d/lib-indexmap @@ -0,0 +1 @@ +8a846502c2df2446 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/indexmap-62979d31bee7d64d/lib-indexmap.json b/server/target/debug/.fingerprint/indexmap-62979d31bee7d64d/lib-indexmap.json new file mode 100644 index 0000000..2c2920e --- /dev/null +++ b/server/target/debug/.fingerprint/indexmap-62979d31bee7d64d/lib-indexmap.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"arbitrary\", \"borsh\", \"default\", \"quickcheck\", \"rayon\", \"serde\", \"std\", \"sval\", \"test_debug\"]","target":10391229881554802429,"profile":17770749724986273341,"path":8206720166320634606,"deps":[[5230392855116717286,"equivalent",false,2029978625229918495],[17037126617600641945,"hashbrown",false,13552488013294773975]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/indexmap-62979d31bee7d64d/dep-lib-indexmap","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/is_terminal_polyfill-cb311c9f413aefae/dep-lib-is_terminal_polyfill b/server/target/debug/.fingerprint/is_terminal_polyfill-cb311c9f413aefae/dep-lib-is_terminal_polyfill new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/is_terminal_polyfill-cb311c9f413aefae/dep-lib-is_terminal_polyfill differ diff --git a/server/target/debug/.fingerprint/is_terminal_polyfill-cb311c9f413aefae/invoked.timestamp b/server/target/debug/.fingerprint/is_terminal_polyfill-cb311c9f413aefae/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/is_terminal_polyfill-cb311c9f413aefae/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/is_terminal_polyfill-cb311c9f413aefae/lib-is_terminal_polyfill b/server/target/debug/.fingerprint/is_terminal_polyfill-cb311c9f413aefae/lib-is_terminal_polyfill new file mode 100644 index 0000000..031e8ed --- /dev/null +++ b/server/target/debug/.fingerprint/is_terminal_polyfill-cb311c9f413aefae/lib-is_terminal_polyfill @@ -0,0 +1 @@ +a4b419d65b772051 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/is_terminal_polyfill-cb311c9f413aefae/lib-is_terminal_polyfill.json b/server/target/debug/.fingerprint/is_terminal_polyfill-cb311c9f413aefae/lib-is_terminal_polyfill.json new file mode 100644 index 0000000..900be0b --- /dev/null +++ b/server/target/debug/.fingerprint/is_terminal_polyfill-cb311c9f413aefae/lib-is_terminal_polyfill.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\"]","declared_features":"[\"default\"]","target":15126035666798347422,"profile":2556503999413574592,"path":7579569224946606694,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/is_terminal_polyfill-cb311c9f413aefae/dep-lib-is_terminal_polyfill","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/itoa-2c16ec70efb38979/dep-lib-itoa b/server/target/debug/.fingerprint/itoa-2c16ec70efb38979/dep-lib-itoa new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/itoa-2c16ec70efb38979/dep-lib-itoa differ diff --git a/server/target/debug/.fingerprint/itoa-2c16ec70efb38979/invoked.timestamp b/server/target/debug/.fingerprint/itoa-2c16ec70efb38979/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/itoa-2c16ec70efb38979/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/itoa-2c16ec70efb38979/lib-itoa b/server/target/debug/.fingerprint/itoa-2c16ec70efb38979/lib-itoa new file mode 100644 index 0000000..cd7888b --- /dev/null +++ b/server/target/debug/.fingerprint/itoa-2c16ec70efb38979/lib-itoa @@ -0,0 +1 @@ +563e64495c9aa333 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/itoa-2c16ec70efb38979/lib-itoa.json b/server/target/debug/.fingerprint/itoa-2c16ec70efb38979/lib-itoa.json new file mode 100644 index 0000000..6f4da84 --- /dev/null +++ b/server/target/debug/.fingerprint/itoa-2c16ec70efb38979/lib-itoa.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"no-panic\"]","target":18426369533666673425,"profile":2241668132362809309,"path":14088858246458749110,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/itoa-2c16ec70efb38979/dep-lib-itoa","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/jiff-48c2790bf48be624/dep-lib-jiff b/server/target/debug/.fingerprint/jiff-48c2790bf48be624/dep-lib-jiff new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/jiff-48c2790bf48be624/dep-lib-jiff differ diff --git a/server/target/debug/.fingerprint/jiff-48c2790bf48be624/invoked.timestamp b/server/target/debug/.fingerprint/jiff-48c2790bf48be624/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/jiff-48c2790bf48be624/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/jiff-48c2790bf48be624/lib-jiff b/server/target/debug/.fingerprint/jiff-48c2790bf48be624/lib-jiff new file mode 100644 index 0000000..832857f --- /dev/null +++ b/server/target/debug/.fingerprint/jiff-48c2790bf48be624/lib-jiff @@ -0,0 +1 @@ +55c03093295cc377 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/jiff-48c2790bf48be624/lib-jiff.json b/server/target/debug/.fingerprint/jiff-48c2790bf48be624/lib-jiff.json new file mode 100644 index 0000000..3c11036 --- /dev/null +++ b/server/target/debug/.fingerprint/jiff-48c2790bf48be624/lib-jiff.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"js\", \"logging\", \"perf-inline\", \"serde\", \"static\", \"static-tz\", \"std\", \"tz-fat\", \"tz-system\", \"tzdb-bundle-always\", \"tzdb-bundle-platform\", \"tzdb-concatenated\", \"tzdb-zoneinfo\"]","target":16423556379535070258,"profile":5225888606528359953,"path":4705925174185767160,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/jiff-48c2790bf48be624/dep-lib-jiff","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/jobserver-83a08429a9631bed/dep-lib-jobserver b/server/target/debug/.fingerprint/jobserver-83a08429a9631bed/dep-lib-jobserver new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/jobserver-83a08429a9631bed/dep-lib-jobserver differ diff --git a/server/target/debug/.fingerprint/jobserver-83a08429a9631bed/invoked.timestamp b/server/target/debug/.fingerprint/jobserver-83a08429a9631bed/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/jobserver-83a08429a9631bed/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/jobserver-83a08429a9631bed/lib-jobserver b/server/target/debug/.fingerprint/jobserver-83a08429a9631bed/lib-jobserver new file mode 100644 index 0000000..b836f4b --- /dev/null +++ b/server/target/debug/.fingerprint/jobserver-83a08429a9631bed/lib-jobserver @@ -0,0 +1 @@ +7b71fd866df581e8 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/jobserver-83a08429a9631bed/lib-jobserver.json b/server/target/debug/.fingerprint/jobserver-83a08429a9631bed/lib-jobserver.json new file mode 100644 index 0000000..659c77d --- /dev/null +++ b/server/target/debug/.fingerprint/jobserver-83a08429a9631bed/lib-jobserver.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":15857469692476194146,"profile":2225463790103693989,"path":217125510388009831,"deps":[[12111499963430175700,"libc",false,17638963654444579767]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/jobserver-83a08429a9631bed/dep-lib-jobserver","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/language-tags-923b633db01eec30/dep-lib-language_tags b/server/target/debug/.fingerprint/language-tags-923b633db01eec30/dep-lib-language_tags new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/language-tags-923b633db01eec30/dep-lib-language_tags differ diff --git a/server/target/debug/.fingerprint/language-tags-923b633db01eec30/invoked.timestamp b/server/target/debug/.fingerprint/language-tags-923b633db01eec30/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/language-tags-923b633db01eec30/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/language-tags-923b633db01eec30/lib-language_tags b/server/target/debug/.fingerprint/language-tags-923b633db01eec30/lib-language_tags new file mode 100644 index 0000000..d2429b8 --- /dev/null +++ b/server/target/debug/.fingerprint/language-tags-923b633db01eec30/lib-language_tags @@ -0,0 +1 @@ +ba4fbb79792c31e6 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/language-tags-923b633db01eec30/lib-language_tags.json b/server/target/debug/.fingerprint/language-tags-923b633db01eec30/lib-language_tags.json new file mode 100644 index 0000000..69ebb32 --- /dev/null +++ b/server/target/debug/.fingerprint/language-tags-923b633db01eec30/lib-language_tags.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"serde\"]","target":6171087446125708018,"profile":2241668132362809309,"path":7277090788797110896,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/language-tags-923b633db01eec30/dep-lib-language_tags","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/libc-79c4c445bce82087/dep-lib-libc b/server/target/debug/.fingerprint/libc-79c4c445bce82087/dep-lib-libc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/libc-79c4c445bce82087/dep-lib-libc differ diff --git a/server/target/debug/.fingerprint/libc-79c4c445bce82087/invoked.timestamp b/server/target/debug/.fingerprint/libc-79c4c445bce82087/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/libc-79c4c445bce82087/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/libc-79c4c445bce82087/lib-libc b/server/target/debug/.fingerprint/libc-79c4c445bce82087/lib-libc new file mode 100644 index 0000000..3c0332b --- /dev/null +++ b/server/target/debug/.fingerprint/libc-79c4c445bce82087/lib-libc @@ -0,0 +1 @@ +cbe22f67ebb80f27 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/libc-79c4c445bce82087/lib-libc.json b/server/target/debug/.fingerprint/libc-79c4c445bce82087/lib-libc.json new file mode 100644 index 0000000..77deb82 --- /dev/null +++ b/server/target/debug/.fingerprint/libc-79c4c445bce82087/lib-libc.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":15222631470922254920,"path":3848135770127145815,"deps":[[12111499963430175700,"build_script_build",false,10117467470267004261]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-79c4c445bce82087/dep-lib-libc","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/libc-e3cfd2099db6ee14/run-build-script-build-script-build b/server/target/debug/.fingerprint/libc-e3cfd2099db6ee14/run-build-script-build-script-build new file mode 100644 index 0000000..5c449d5 --- /dev/null +++ b/server/target/debug/.fingerprint/libc-e3cfd2099db6ee14/run-build-script-build-script-build @@ -0,0 +1 @@ +65b5d53f0f77688c \ No newline at end of file diff --git a/server/target/debug/.fingerprint/libc-e3cfd2099db6ee14/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/libc-e3cfd2099db6ee14/run-build-script-build-script-build.json new file mode 100644 index 0000000..0b406f7 --- /dev/null +++ b/server/target/debug/.fingerprint/libc-e3cfd2099db6ee14/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[12111499963430175700,"build_script_build",false,10637777884085707192]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-e3cfd2099db6ee14/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_MUSL_V1_2_3","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_TIME_BITS","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/libc-f7181fc07a3cbf6e/build-script-build-script-build b/server/target/debug/.fingerprint/libc-f7181fc07a3cbf6e/build-script-build-script-build new file mode 100644 index 0000000..20df8db --- /dev/null +++ b/server/target/debug/.fingerprint/libc-f7181fc07a3cbf6e/build-script-build-script-build @@ -0,0 +1 @@ +b8616fcc9ffaa093 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/libc-f7181fc07a3cbf6e/build-script-build-script-build.json b/server/target/debug/.fingerprint/libc-f7181fc07a3cbf6e/build-script-build-script-build.json new file mode 100644 index 0000000..bfde26c --- /dev/null +++ b/server/target/debug/.fingerprint/libc-f7181fc07a3cbf6e/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":5408242616063297496,"profile":1565149285177326037,"path":7989317799912906730,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-f7181fc07a3cbf6e/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/libc-f7181fc07a3cbf6e/dep-build-script-build-script-build b/server/target/debug/.fingerprint/libc-f7181fc07a3cbf6e/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/libc-f7181fc07a3cbf6e/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/libc-f7181fc07a3cbf6e/invoked.timestamp b/server/target/debug/.fingerprint/libc-f7181fc07a3cbf6e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/libc-f7181fc07a3cbf6e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/libc-f771bdf5247e5968/dep-lib-libc b/server/target/debug/.fingerprint/libc-f771bdf5247e5968/dep-lib-libc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/libc-f771bdf5247e5968/dep-lib-libc differ diff --git a/server/target/debug/.fingerprint/libc-f771bdf5247e5968/invoked.timestamp b/server/target/debug/.fingerprint/libc-f771bdf5247e5968/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/libc-f771bdf5247e5968/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/libc-f771bdf5247e5968/lib-libc b/server/target/debug/.fingerprint/libc-f771bdf5247e5968/lib-libc new file mode 100644 index 0000000..0e372b3 --- /dev/null +++ b/server/target/debug/.fingerprint/libc-f771bdf5247e5968/lib-libc @@ -0,0 +1 @@ +b7fb310dfd2fcaf4 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/libc-f771bdf5247e5968/lib-libc.json b/server/target/debug/.fingerprint/libc-f771bdf5247e5968/lib-libc.json new file mode 100644 index 0000000..9c5d2c2 --- /dev/null +++ b/server/target/debug/.fingerprint/libc-f771bdf5247e5968/lib-libc.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":1565149285177326037,"path":3848135770127145815,"deps":[[12111499963430175700,"build_script_build",false,10117467470267004261]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-f771bdf5247e5968/dep-lib-libc","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/litemap-71b455a851390e48/dep-lib-litemap b/server/target/debug/.fingerprint/litemap-71b455a851390e48/dep-lib-litemap new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/litemap-71b455a851390e48/dep-lib-litemap differ diff --git a/server/target/debug/.fingerprint/litemap-71b455a851390e48/invoked.timestamp b/server/target/debug/.fingerprint/litemap-71b455a851390e48/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/litemap-71b455a851390e48/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/litemap-71b455a851390e48/lib-litemap b/server/target/debug/.fingerprint/litemap-71b455a851390e48/lib-litemap new file mode 100644 index 0000000..8d0692e --- /dev/null +++ b/server/target/debug/.fingerprint/litemap-71b455a851390e48/lib-litemap @@ -0,0 +1 @@ +48f8d770e07ea440 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/litemap-71b455a851390e48/lib-litemap.json b/server/target/debug/.fingerprint/litemap-71b455a851390e48/lib-litemap.json new file mode 100644 index 0000000..196dca9 --- /dev/null +++ b/server/target/debug/.fingerprint/litemap-71b455a851390e48/lib-litemap.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"testing\", \"yoke\"]","target":6548088149557820361,"profile":15319846033271432293,"path":13642705340157855940,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/litemap-71b455a851390e48/dep-lib-litemap","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/local-channel-c8e97449d34ae9e1/dep-lib-local_channel b/server/target/debug/.fingerprint/local-channel-c8e97449d34ae9e1/dep-lib-local_channel new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/local-channel-c8e97449d34ae9e1/dep-lib-local_channel differ diff --git a/server/target/debug/.fingerprint/local-channel-c8e97449d34ae9e1/invoked.timestamp b/server/target/debug/.fingerprint/local-channel-c8e97449d34ae9e1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/local-channel-c8e97449d34ae9e1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/local-channel-c8e97449d34ae9e1/lib-local_channel b/server/target/debug/.fingerprint/local-channel-c8e97449d34ae9e1/lib-local_channel new file mode 100644 index 0000000..9596a4c --- /dev/null +++ b/server/target/debug/.fingerprint/local-channel-c8e97449d34ae9e1/lib-local_channel @@ -0,0 +1 @@ +895bdabcaee6038a \ No newline at end of file diff --git a/server/target/debug/.fingerprint/local-channel-c8e97449d34ae9e1/lib-local_channel.json b/server/target/debug/.fingerprint/local-channel-c8e97449d34ae9e1/lib-local_channel.json new file mode 100644 index 0000000..9d6b2d2 --- /dev/null +++ b/server/target/debug/.fingerprint/local-channel-c8e97449d34ae9e1/lib-local_channel.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":6700716963145592976,"profile":2241668132362809309,"path":11007900694012876879,"deps":[[270634688040536827,"futures_sink",false,10518964324922000320],[302948626015856208,"futures_core",false,13411290377882743454],[2083946343206318420,"local_waker",false,18075911899985205745]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/local-channel-c8e97449d34ae9e1/dep-lib-local_channel","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/local-waker-1e4b07ea5bf0ccda/dep-lib-local_waker b/server/target/debug/.fingerprint/local-waker-1e4b07ea5bf0ccda/dep-lib-local_waker new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/local-waker-1e4b07ea5bf0ccda/dep-lib-local_waker differ diff --git a/server/target/debug/.fingerprint/local-waker-1e4b07ea5bf0ccda/invoked.timestamp b/server/target/debug/.fingerprint/local-waker-1e4b07ea5bf0ccda/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/local-waker-1e4b07ea5bf0ccda/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/local-waker-1e4b07ea5bf0ccda/lib-local_waker b/server/target/debug/.fingerprint/local-waker-1e4b07ea5bf0ccda/lib-local_waker new file mode 100644 index 0000000..f0411d9 --- /dev/null +++ b/server/target/debug/.fingerprint/local-waker-1e4b07ea5bf0ccda/lib-local_waker @@ -0,0 +1 @@ +f1d9df4d1a8adafa \ No newline at end of file diff --git a/server/target/debug/.fingerprint/local-waker-1e4b07ea5bf0ccda/lib-local_waker.json b/server/target/debug/.fingerprint/local-waker-1e4b07ea5bf0ccda/lib-local_waker.json new file mode 100644 index 0000000..a988558 --- /dev/null +++ b/server/target/debug/.fingerprint/local-waker-1e4b07ea5bf0ccda/lib-local_waker.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":16986141586775429002,"profile":2241668132362809309,"path":13450631415995802511,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/local-waker-1e4b07ea5bf0ccda/dep-lib-local_waker","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/lock_api-ed3dbd93df9a6b25/dep-lib-lock_api b/server/target/debug/.fingerprint/lock_api-ed3dbd93df9a6b25/dep-lib-lock_api new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/lock_api-ed3dbd93df9a6b25/dep-lib-lock_api differ diff --git a/server/target/debug/.fingerprint/lock_api-ed3dbd93df9a6b25/invoked.timestamp b/server/target/debug/.fingerprint/lock_api-ed3dbd93df9a6b25/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/lock_api-ed3dbd93df9a6b25/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/lock_api-ed3dbd93df9a6b25/lib-lock_api b/server/target/debug/.fingerprint/lock_api-ed3dbd93df9a6b25/lib-lock_api new file mode 100644 index 0000000..e14bf62 --- /dev/null +++ b/server/target/debug/.fingerprint/lock_api-ed3dbd93df9a6b25/lib-lock_api @@ -0,0 +1 @@ +6eacbdbb55888206 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/lock_api-ed3dbd93df9a6b25/lib-lock_api.json b/server/target/debug/.fingerprint/lock_api-ed3dbd93df9a6b25/lib-lock_api.json new file mode 100644 index 0000000..892d661 --- /dev/null +++ b/server/target/debug/.fingerprint/lock_api-ed3dbd93df9a6b25/lib-lock_api.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"atomic_usize\", \"default\"]","declared_features":"[\"arc_lock\", \"atomic_usize\", \"default\", \"nightly\", \"owning_ref\", \"serde\"]","target":16157403318809843794,"profile":2241668132362809309,"path":15388393393038802058,"deps":[[15358414700195712381,"scopeguard",false,5868041283160954269]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/lock_api-ed3dbd93df9a6b25/dep-lib-lock_api","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/log-3b71213746445865/dep-lib-log b/server/target/debug/.fingerprint/log-3b71213746445865/dep-lib-log new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/log-3b71213746445865/dep-lib-log differ diff --git a/server/target/debug/.fingerprint/log-3b71213746445865/invoked.timestamp b/server/target/debug/.fingerprint/log-3b71213746445865/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/log-3b71213746445865/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/log-3b71213746445865/lib-log b/server/target/debug/.fingerprint/log-3b71213746445865/lib-log new file mode 100644 index 0000000..ed9d922 --- /dev/null +++ b/server/target/debug/.fingerprint/log-3b71213746445865/lib-log @@ -0,0 +1 @@ +afaeb45b574344b7 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/log-3b71213746445865/lib-log.json b/server/target/debug/.fingerprint/log-3b71213746445865/lib-log.json new file mode 100644 index 0000000..955a800 --- /dev/null +++ b/server/target/debug/.fingerprint/log-3b71213746445865/lib-log.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"kv\", \"kv_serde\", \"kv_std\", \"kv_sval\", \"kv_unstable\", \"kv_unstable_serde\", \"kv_unstable_std\", \"kv_unstable_sval\", \"max_level_debug\", \"max_level_error\", \"max_level_info\", \"max_level_off\", \"max_level_trace\", \"max_level_warn\", \"release_max_level_debug\", \"release_max_level_error\", \"release_max_level_info\", \"release_max_level_off\", \"release_max_level_trace\", \"release_max_level_warn\", \"serde\", \"serde_core\", \"std\", \"sval\", \"sval_ref\", \"value-bag\"]","target":6550155848337067049,"profile":2225463790103693989,"path":1286426320026932731,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/log-3b71213746445865/dep-lib-log","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/log-b309183b5a1bb05e/dep-lib-log b/server/target/debug/.fingerprint/log-b309183b5a1bb05e/dep-lib-log new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/log-b309183b5a1bb05e/dep-lib-log differ diff --git a/server/target/debug/.fingerprint/log-b309183b5a1bb05e/invoked.timestamp b/server/target/debug/.fingerprint/log-b309183b5a1bb05e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/log-b309183b5a1bb05e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/log-b309183b5a1bb05e/lib-log b/server/target/debug/.fingerprint/log-b309183b5a1bb05e/lib-log new file mode 100644 index 0000000..7d75494 --- /dev/null +++ b/server/target/debug/.fingerprint/log-b309183b5a1bb05e/lib-log @@ -0,0 +1 @@ +acf5281db0cff729 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/log-b309183b5a1bb05e/lib-log.json b/server/target/debug/.fingerprint/log-b309183b5a1bb05e/lib-log.json new file mode 100644 index 0000000..afbaa74 --- /dev/null +++ b/server/target/debug/.fingerprint/log-b309183b5a1bb05e/lib-log.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"std\"]","declared_features":"[\"kv\", \"kv_serde\", \"kv_std\", \"kv_sval\", \"kv_unstable\", \"kv_unstable_serde\", \"kv_unstable_std\", \"kv_unstable_sval\", \"max_level_debug\", \"max_level_error\", \"max_level_info\", \"max_level_off\", \"max_level_trace\", \"max_level_warn\", \"release_max_level_debug\", \"release_max_level_error\", \"release_max_level_info\", \"release_max_level_off\", \"release_max_level_trace\", \"release_max_level_warn\", \"serde\", \"serde_core\", \"std\", \"sval\", \"sval_ref\", \"value-bag\"]","target":6550155848337067049,"profile":2241668132362809309,"path":1286426320026932731,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/log-b309183b5a1bb05e/dep-lib-log","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/memchr-aff27760c037fde7/dep-lib-memchr b/server/target/debug/.fingerprint/memchr-aff27760c037fde7/dep-lib-memchr new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/memchr-aff27760c037fde7/dep-lib-memchr differ diff --git a/server/target/debug/.fingerprint/memchr-aff27760c037fde7/invoked.timestamp b/server/target/debug/.fingerprint/memchr-aff27760c037fde7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/memchr-aff27760c037fde7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/memchr-aff27760c037fde7/lib-memchr b/server/target/debug/.fingerprint/memchr-aff27760c037fde7/lib-memchr new file mode 100644 index 0000000..6d73b77 --- /dev/null +++ b/server/target/debug/.fingerprint/memchr-aff27760c037fde7/lib-memchr @@ -0,0 +1 @@ +f9f7e7133d07607d \ No newline at end of file diff --git a/server/target/debug/.fingerprint/memchr-aff27760c037fde7/lib-memchr.json b/server/target/debug/.fingerprint/memchr-aff27760c037fde7/lib-memchr.json new file mode 100644 index 0000000..f7668a4 --- /dev/null +++ b/server/target/debug/.fingerprint/memchr-aff27760c037fde7/lib-memchr.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"core\", \"default\", \"libc\", \"logging\", \"rustc-dep-of-std\", \"std\", \"use_std\"]","target":11745930252914242013,"profile":2241668132362809309,"path":13565324805647184098,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memchr-aff27760c037fde7/dep-lib-memchr","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/mime-c04131c2cb6bc619/dep-lib-mime b/server/target/debug/.fingerprint/mime-c04131c2cb6bc619/dep-lib-mime new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/mime-c04131c2cb6bc619/dep-lib-mime differ diff --git a/server/target/debug/.fingerprint/mime-c04131c2cb6bc619/invoked.timestamp b/server/target/debug/.fingerprint/mime-c04131c2cb6bc619/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/mime-c04131c2cb6bc619/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/mime-c04131c2cb6bc619/lib-mime b/server/target/debug/.fingerprint/mime-c04131c2cb6bc619/lib-mime new file mode 100644 index 0000000..b980a5d --- /dev/null +++ b/server/target/debug/.fingerprint/mime-c04131c2cb6bc619/lib-mime @@ -0,0 +1 @@ +604d9964cac2dd83 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/mime-c04131c2cb6bc619/lib-mime.json b/server/target/debug/.fingerprint/mime-c04131c2cb6bc619/lib-mime.json new file mode 100644 index 0000000..5a3acb9 --- /dev/null +++ b/server/target/debug/.fingerprint/mime-c04131c2cb6bc619/lib-mime.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":2764086469773243511,"profile":2241668132362809309,"path":9702437360216931746,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/mime-c04131c2cb6bc619/dep-lib-mime","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/mime_guess-0224f58ecbf4d1c5/build-script-build-script-build b/server/target/debug/.fingerprint/mime_guess-0224f58ecbf4d1c5/build-script-build-script-build new file mode 100644 index 0000000..d76eccb --- /dev/null +++ b/server/target/debug/.fingerprint/mime_guess-0224f58ecbf4d1c5/build-script-build-script-build @@ -0,0 +1 @@ +b69704272d927b30 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/mime_guess-0224f58ecbf4d1c5/build-script-build-script-build.json b/server/target/debug/.fingerprint/mime_guess-0224f58ecbf4d1c5/build-script-build-script-build.json new file mode 100644 index 0000000..c8eb0cc --- /dev/null +++ b/server/target/debug/.fingerprint/mime_guess-0224f58ecbf4d1c5/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"rev-mappings\"]","declared_features":"[\"default\", \"rev-mappings\"]","target":12318548087768197662,"profile":2225463790103693989,"path":17872205241927985653,"deps":[[9161548618241828600,"unicase",false,8984699723738192909]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/mime_guess-0224f58ecbf4d1c5/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/mime_guess-0224f58ecbf4d1c5/dep-build-script-build-script-build b/server/target/debug/.fingerprint/mime_guess-0224f58ecbf4d1c5/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/mime_guess-0224f58ecbf4d1c5/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/mime_guess-0224f58ecbf4d1c5/invoked.timestamp b/server/target/debug/.fingerprint/mime_guess-0224f58ecbf4d1c5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/mime_guess-0224f58ecbf4d1c5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/mime_guess-5bbdcd00817a2228/dep-lib-mime_guess b/server/target/debug/.fingerprint/mime_guess-5bbdcd00817a2228/dep-lib-mime_guess new file mode 100644 index 0000000..cb84860 Binary files /dev/null and b/server/target/debug/.fingerprint/mime_guess-5bbdcd00817a2228/dep-lib-mime_guess differ diff --git a/server/target/debug/.fingerprint/mime_guess-5bbdcd00817a2228/invoked.timestamp b/server/target/debug/.fingerprint/mime_guess-5bbdcd00817a2228/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/mime_guess-5bbdcd00817a2228/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/mime_guess-5bbdcd00817a2228/lib-mime_guess b/server/target/debug/.fingerprint/mime_guess-5bbdcd00817a2228/lib-mime_guess new file mode 100644 index 0000000..6a81a83 --- /dev/null +++ b/server/target/debug/.fingerprint/mime_guess-5bbdcd00817a2228/lib-mime_guess @@ -0,0 +1 @@ +4d0780a11eb313fe \ No newline at end of file diff --git a/server/target/debug/.fingerprint/mime_guess-5bbdcd00817a2228/lib-mime_guess.json b/server/target/debug/.fingerprint/mime_guess-5bbdcd00817a2228/lib-mime_guess.json new file mode 100644 index 0000000..f0a9f27 --- /dev/null +++ b/server/target/debug/.fingerprint/mime_guess-5bbdcd00817a2228/lib-mime_guess.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"rev-mappings\"]","declared_features":"[\"default\", \"rev-mappings\"]","target":15598103354628129045,"profile":2241668132362809309,"path":13821924381339063548,"deps":[[9161548618241828600,"unicase",false,1656366329086709316],[10229185211513642314,"mime",false,9501964963348565344],[18071510856783138481,"build_script_build",false,14866827306719819687]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/mime_guess-5bbdcd00817a2228/dep-lib-mime_guess","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/mime_guess-dab029086dacac36/run-build-script-build-script-build b/server/target/debug/.fingerprint/mime_guess-dab029086dacac36/run-build-script-build-script-build new file mode 100644 index 0000000..af9c3d3 --- /dev/null +++ b/server/target/debug/.fingerprint/mime_guess-dab029086dacac36/run-build-script-build-script-build @@ -0,0 +1 @@ +a7b71ceaaa9451ce \ No newline at end of file diff --git a/server/target/debug/.fingerprint/mime_guess-dab029086dacac36/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/mime_guess-dab029086dacac36/run-build-script-build-script-build.json new file mode 100644 index 0000000..09884ea --- /dev/null +++ b/server/target/debug/.fingerprint/mime_guess-dab029086dacac36/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[18071510856783138481,"build_script_build",false,3493546658581747638]],"local":[{"Precalculated":"2.0.5"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/miniz_oxide-4e882d942c23dc07/dep-lib-miniz_oxide b/server/target/debug/.fingerprint/miniz_oxide-4e882d942c23dc07/dep-lib-miniz_oxide new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/miniz_oxide-4e882d942c23dc07/dep-lib-miniz_oxide differ diff --git a/server/target/debug/.fingerprint/miniz_oxide-4e882d942c23dc07/invoked.timestamp b/server/target/debug/.fingerprint/miniz_oxide-4e882d942c23dc07/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/miniz_oxide-4e882d942c23dc07/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/miniz_oxide-4e882d942c23dc07/lib-miniz_oxide b/server/target/debug/.fingerprint/miniz_oxide-4e882d942c23dc07/lib-miniz_oxide new file mode 100644 index 0000000..8e253af --- /dev/null +++ b/server/target/debug/.fingerprint/miniz_oxide-4e882d942c23dc07/lib-miniz_oxide @@ -0,0 +1 @@ +245d3ef032321611 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/miniz_oxide-4e882d942c23dc07/lib-miniz_oxide.json b/server/target/debug/.fingerprint/miniz_oxide-4e882d942c23dc07/lib-miniz_oxide.json new file mode 100644 index 0000000..656c89e --- /dev/null +++ b/server/target/debug/.fingerprint/miniz_oxide-4e882d942c23dc07/lib-miniz_oxide.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"simd\", \"simd-adler32\", \"with-alloc\"]","declared_features":"[\"alloc\", \"block-boundary\", \"core\", \"default\", \"rustc-dep-of-std\", \"serde\", \"simd\", \"simd-adler32\", \"std\", \"with-alloc\"]","target":8661567070972402511,"profile":14166219718623142490,"path":16362808192497387773,"deps":[[3714697949143471456,"simd_adler32",false,6858308044421824214],[7911289239703230891,"adler2",false,9686958614490211502]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/miniz_oxide-4e882d942c23dc07/dep-lib-miniz_oxide","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/mio-d488354276225ad0/dep-lib-mio b/server/target/debug/.fingerprint/mio-d488354276225ad0/dep-lib-mio new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/mio-d488354276225ad0/dep-lib-mio differ diff --git a/server/target/debug/.fingerprint/mio-d488354276225ad0/invoked.timestamp b/server/target/debug/.fingerprint/mio-d488354276225ad0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/mio-d488354276225ad0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/mio-d488354276225ad0/lib-mio b/server/target/debug/.fingerprint/mio-d488354276225ad0/lib-mio new file mode 100644 index 0000000..8f5b0c5 --- /dev/null +++ b/server/target/debug/.fingerprint/mio-d488354276225ad0/lib-mio @@ -0,0 +1 @@ +b2ba431daa8bece7 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/mio-d488354276225ad0/lib-mio.json b/server/target/debug/.fingerprint/mio-d488354276225ad0/lib-mio.json new file mode 100644 index 0000000..7a3a6d3 --- /dev/null +++ b/server/target/debug/.fingerprint/mio-d488354276225ad0/lib-mio.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"log\", \"net\", \"os-ext\", \"os-poll\"]","declared_features":"[\"default\", \"log\", \"net\", \"os-ext\", \"os-poll\"]","target":5157902839847266895,"profile":9936639502610548555,"path":14906109394641637536,"deps":[[10630857666389190470,"log",false,3024114030112994732],[12111499963430175700,"libc",false,2814671613317866187]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/mio-d488354276225ad0/dep-lib-mio","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/num-conv-96d07c508cc7b742/dep-lib-num_conv b/server/target/debug/.fingerprint/num-conv-96d07c508cc7b742/dep-lib-num_conv new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/num-conv-96d07c508cc7b742/dep-lib-num_conv differ diff --git a/server/target/debug/.fingerprint/num-conv-96d07c508cc7b742/invoked.timestamp b/server/target/debug/.fingerprint/num-conv-96d07c508cc7b742/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/num-conv-96d07c508cc7b742/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/num-conv-96d07c508cc7b742/lib-num_conv b/server/target/debug/.fingerprint/num-conv-96d07c508cc7b742/lib-num_conv new file mode 100644 index 0000000..2518351 --- /dev/null +++ b/server/target/debug/.fingerprint/num-conv-96d07c508cc7b742/lib-num_conv @@ -0,0 +1 @@ +2fd46c2fc644727f \ No newline at end of file diff --git a/server/target/debug/.fingerprint/num-conv-96d07c508cc7b742/lib-num_conv.json b/server/target/debug/.fingerprint/num-conv-96d07c508cc7b742/lib-num_conv.json new file mode 100644 index 0000000..2183e8c --- /dev/null +++ b/server/target/debug/.fingerprint/num-conv-96d07c508cc7b742/lib-num_conv.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":8759765779269301280,"profile":11784300447023629780,"path":11474285684046459657,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/num-conv-96d07c508cc7b742/dep-lib-num_conv","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/num-conv-c4923f863fd16db5/dep-lib-num_conv b/server/target/debug/.fingerprint/num-conv-c4923f863fd16db5/dep-lib-num_conv new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/num-conv-c4923f863fd16db5/dep-lib-num_conv differ diff --git a/server/target/debug/.fingerprint/num-conv-c4923f863fd16db5/invoked.timestamp b/server/target/debug/.fingerprint/num-conv-c4923f863fd16db5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/num-conv-c4923f863fd16db5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/num-conv-c4923f863fd16db5/lib-num_conv b/server/target/debug/.fingerprint/num-conv-c4923f863fd16db5/lib-num_conv new file mode 100644 index 0000000..f99ee6a --- /dev/null +++ b/server/target/debug/.fingerprint/num-conv-c4923f863fd16db5/lib-num_conv @@ -0,0 +1 @@ +54b538f7bc8429ca \ No newline at end of file diff --git a/server/target/debug/.fingerprint/num-conv-c4923f863fd16db5/lib-num_conv.json b/server/target/debug/.fingerprint/num-conv-c4923f863fd16db5/lib-num_conv.json new file mode 100644 index 0000000..8f0972d --- /dev/null +++ b/server/target/debug/.fingerprint/num-conv-c4923f863fd16db5/lib-num_conv.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":8759765779269301280,"profile":18171221995694770001,"path":11474285684046459657,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/num-conv-c4923f863fd16db5/dep-lib-num_conv","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/num-traits-244900f1b7582dbe/run-build-script-build-script-build b/server/target/debug/.fingerprint/num-traits-244900f1b7582dbe/run-build-script-build-script-build new file mode 100644 index 0000000..824405f --- /dev/null +++ b/server/target/debug/.fingerprint/num-traits-244900f1b7582dbe/run-build-script-build-script-build @@ -0,0 +1 @@ +d217f53a89278061 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/num-traits-244900f1b7582dbe/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/num-traits-244900f1b7582dbe/run-build-script-build-script-build.json new file mode 100644 index 0000000..05b4378 --- /dev/null +++ b/server/target/debug/.fingerprint/num-traits-244900f1b7582dbe/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5157631553186200874,"build_script_build",false,4761170467796855555]],"local":[{"RerunIfChanged":{"output":"debug/build/num-traits-244900f1b7582dbe/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/num-traits-375ea6ec4b734af3/build-script-build-script-build b/server/target/debug/.fingerprint/num-traits-375ea6ec4b734af3/build-script-build-script-build new file mode 100644 index 0000000..41a1b1a --- /dev/null +++ b/server/target/debug/.fingerprint/num-traits-375ea6ec4b734af3/build-script-build-script-build @@ -0,0 +1 @@ +03ab1c9050131342 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/num-traits-375ea6ec4b734af3/build-script-build-script-build.json b/server/target/debug/.fingerprint/num-traits-375ea6ec4b734af3/build-script-build-script-build.json new file mode 100644 index 0000000..e5c62ff --- /dev/null +++ b/server/target/debug/.fingerprint/num-traits-375ea6ec4b734af3/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"default\", \"i128\", \"libm\", \"std\"]","target":5408242616063297496,"profile":2225463790103693989,"path":16400515592494572657,"deps":[[13927012481677012980,"autocfg",false,15592629032451737902]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/num-traits-375ea6ec4b734af3/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/num-traits-375ea6ec4b734af3/dep-build-script-build-script-build b/server/target/debug/.fingerprint/num-traits-375ea6ec4b734af3/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/num-traits-375ea6ec4b734af3/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/num-traits-375ea6ec4b734af3/invoked.timestamp b/server/target/debug/.fingerprint/num-traits-375ea6ec4b734af3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/num-traits-375ea6ec4b734af3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/num-traits-8ca7a5faf9aeb92a/dep-lib-num_traits b/server/target/debug/.fingerprint/num-traits-8ca7a5faf9aeb92a/dep-lib-num_traits new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/num-traits-8ca7a5faf9aeb92a/dep-lib-num_traits differ diff --git a/server/target/debug/.fingerprint/num-traits-8ca7a5faf9aeb92a/invoked.timestamp b/server/target/debug/.fingerprint/num-traits-8ca7a5faf9aeb92a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/num-traits-8ca7a5faf9aeb92a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/num-traits-8ca7a5faf9aeb92a/lib-num_traits b/server/target/debug/.fingerprint/num-traits-8ca7a5faf9aeb92a/lib-num_traits new file mode 100644 index 0000000..2d980ca --- /dev/null +++ b/server/target/debug/.fingerprint/num-traits-8ca7a5faf9aeb92a/lib-num_traits @@ -0,0 +1 @@ +0b61e147c407eec9 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/num-traits-8ca7a5faf9aeb92a/lib-num_traits.json b/server/target/debug/.fingerprint/num-traits-8ca7a5faf9aeb92a/lib-num_traits.json new file mode 100644 index 0000000..a5a8c30 --- /dev/null +++ b/server/target/debug/.fingerprint/num-traits-8ca7a5faf9aeb92a/lib-num_traits.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"default\", \"i128\", \"libm\", \"std\"]","target":4278088450330190724,"profile":2241668132362809309,"path":14695587039969749920,"deps":[[5157631553186200874,"build_script_build",false,7025658889051117522]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/num-traits-8ca7a5faf9aeb92a/dep-lib-num_traits","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/once_cell-dc700a0db4d40c33/dep-lib-once_cell b/server/target/debug/.fingerprint/once_cell-dc700a0db4d40c33/dep-lib-once_cell new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/once_cell-dc700a0db4d40c33/dep-lib-once_cell differ diff --git a/server/target/debug/.fingerprint/once_cell-dc700a0db4d40c33/invoked.timestamp b/server/target/debug/.fingerprint/once_cell-dc700a0db4d40c33/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/once_cell-dc700a0db4d40c33/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/once_cell-dc700a0db4d40c33/lib-once_cell b/server/target/debug/.fingerprint/once_cell-dc700a0db4d40c33/lib-once_cell new file mode 100644 index 0000000..b1aa936 --- /dev/null +++ b/server/target/debug/.fingerprint/once_cell-dc700a0db4d40c33/lib-once_cell @@ -0,0 +1 @@ +dd109e1242226d9a \ No newline at end of file diff --git a/server/target/debug/.fingerprint/once_cell-dc700a0db4d40c33/lib-once_cell.json b/server/target/debug/.fingerprint/once_cell-dc700a0db4d40c33/lib-once_cell.json new file mode 100644 index 0000000..6a7c5ec --- /dev/null +++ b/server/target/debug/.fingerprint/once_cell-dc700a0db4d40c33/lib-once_cell.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"default\", \"race\", \"std\"]","declared_features":"[\"alloc\", \"atomic-polyfill\", \"critical-section\", \"default\", \"parking_lot\", \"portable-atomic\", \"race\", \"std\", \"unstable\"]","target":17524666916136250164,"profile":2241668132362809309,"path":3041237643812799072,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/once_cell-dc700a0db4d40c33/dep-lib-once_cell","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/parking_lot-347d3476e9677771/dep-lib-parking_lot b/server/target/debug/.fingerprint/parking_lot-347d3476e9677771/dep-lib-parking_lot new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/parking_lot-347d3476e9677771/dep-lib-parking_lot differ diff --git a/server/target/debug/.fingerprint/parking_lot-347d3476e9677771/invoked.timestamp b/server/target/debug/.fingerprint/parking_lot-347d3476e9677771/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/parking_lot-347d3476e9677771/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/parking_lot-347d3476e9677771/lib-parking_lot b/server/target/debug/.fingerprint/parking_lot-347d3476e9677771/lib-parking_lot new file mode 100644 index 0000000..5045125 --- /dev/null +++ b/server/target/debug/.fingerprint/parking_lot-347d3476e9677771/lib-parking_lot @@ -0,0 +1 @@ +df7211d777836e81 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/parking_lot-347d3476e9677771/lib-parking_lot.json b/server/target/debug/.fingerprint/parking_lot-347d3476e9677771/lib-parking_lot.json new file mode 100644 index 0000000..344f159 --- /dev/null +++ b/server/target/debug/.fingerprint/parking_lot-347d3476e9677771/lib-parking_lot.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\"]","declared_features":"[\"arc_lock\", \"deadlock_detection\", \"default\", \"hardware-lock-elision\", \"nightly\", \"owning_ref\", \"send_guard\", \"serde\"]","target":9887373948397848517,"profile":2241668132362809309,"path":8024002484697082972,"deps":[[2555121257709722468,"lock_api",false,469087213003320430],[6545091685033313457,"parking_lot_core",false,12253157224707842752]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot-347d3476e9677771/dep-lib-parking_lot","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/parking_lot_core-14c069bde3267cf0/run-build-script-build-script-build b/server/target/debug/.fingerprint/parking_lot_core-14c069bde3267cf0/run-build-script-build-script-build new file mode 100644 index 0000000..a3b58bd --- /dev/null +++ b/server/target/debug/.fingerprint/parking_lot_core-14c069bde3267cf0/run-build-script-build-script-build @@ -0,0 +1 @@ +2b044af4882c8197 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/parking_lot_core-14c069bde3267cf0/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/parking_lot_core-14c069bde3267cf0/run-build-script-build-script-build.json new file mode 100644 index 0000000..af507c1 --- /dev/null +++ b/server/target/debug/.fingerprint/parking_lot_core-14c069bde3267cf0/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6545091685033313457,"build_script_build",false,4035656821183541707]],"local":[{"RerunIfChanged":{"output":"debug/build/parking_lot_core-14c069bde3267cf0/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/parking_lot_core-6dc20afcb03675f8/build-script-build-script-build b/server/target/debug/.fingerprint/parking_lot_core-6dc20afcb03675f8/build-script-build-script-build new file mode 100644 index 0000000..2640a4f --- /dev/null +++ b/server/target/debug/.fingerprint/parking_lot_core-6dc20afcb03675f8/build-script-build-script-build @@ -0,0 +1 @@ +cbf1063e7f880138 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/parking_lot_core-6dc20afcb03675f8/build-script-build-script-build.json b/server/target/debug/.fingerprint/parking_lot_core-6dc20afcb03675f8/build-script-build-script-build.json new file mode 100644 index 0000000..8d94e75 --- /dev/null +++ b/server/target/debug/.fingerprint/parking_lot_core-6dc20afcb03675f8/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"backtrace\", \"deadlock_detection\", \"nightly\", \"petgraph\"]","target":5408242616063297496,"profile":2225463790103693989,"path":13059941544860881375,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot_core-6dc20afcb03675f8/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/parking_lot_core-6dc20afcb03675f8/dep-build-script-build-script-build b/server/target/debug/.fingerprint/parking_lot_core-6dc20afcb03675f8/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/parking_lot_core-6dc20afcb03675f8/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/parking_lot_core-6dc20afcb03675f8/invoked.timestamp b/server/target/debug/.fingerprint/parking_lot_core-6dc20afcb03675f8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/parking_lot_core-6dc20afcb03675f8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/parking_lot_core-bcca45860b45ef76/dep-lib-parking_lot_core b/server/target/debug/.fingerprint/parking_lot_core-bcca45860b45ef76/dep-lib-parking_lot_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/parking_lot_core-bcca45860b45ef76/dep-lib-parking_lot_core differ diff --git a/server/target/debug/.fingerprint/parking_lot_core-bcca45860b45ef76/invoked.timestamp b/server/target/debug/.fingerprint/parking_lot_core-bcca45860b45ef76/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/parking_lot_core-bcca45860b45ef76/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/parking_lot_core-bcca45860b45ef76/lib-parking_lot_core b/server/target/debug/.fingerprint/parking_lot_core-bcca45860b45ef76/lib-parking_lot_core new file mode 100644 index 0000000..6e3c270 --- /dev/null +++ b/server/target/debug/.fingerprint/parking_lot_core-bcca45860b45ef76/lib-parking_lot_core @@ -0,0 +1 @@ +c0e2b86b93f50baa \ No newline at end of file diff --git a/server/target/debug/.fingerprint/parking_lot_core-bcca45860b45ef76/lib-parking_lot_core.json b/server/target/debug/.fingerprint/parking_lot_core-bcca45860b45ef76/lib-parking_lot_core.json new file mode 100644 index 0000000..ee16c62 --- /dev/null +++ b/server/target/debug/.fingerprint/parking_lot_core-bcca45860b45ef76/lib-parking_lot_core.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"backtrace\", \"deadlock_detection\", \"nightly\", \"petgraph\"]","target":12558056885032795287,"profile":2241668132362809309,"path":2722968792434348583,"deps":[[3666196340704888985,"smallvec",false,5778069751535923719],[6545091685033313457,"build_script_build",false,10917055938448458795],[7667230146095136825,"cfg_if",false,3415395165544656506],[12111499963430175700,"libc",false,2814671613317866187]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot_core-bcca45860b45ef76/dep-lib-parking_lot_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/percent-encoding-d25155148e7c3ea3/dep-lib-percent_encoding b/server/target/debug/.fingerprint/percent-encoding-d25155148e7c3ea3/dep-lib-percent_encoding new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/percent-encoding-d25155148e7c3ea3/dep-lib-percent_encoding differ diff --git a/server/target/debug/.fingerprint/percent-encoding-d25155148e7c3ea3/invoked.timestamp b/server/target/debug/.fingerprint/percent-encoding-d25155148e7c3ea3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/percent-encoding-d25155148e7c3ea3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/percent-encoding-d25155148e7c3ea3/lib-percent_encoding b/server/target/debug/.fingerprint/percent-encoding-d25155148e7c3ea3/lib-percent_encoding new file mode 100644 index 0000000..59d1bf2 --- /dev/null +++ b/server/target/debug/.fingerprint/percent-encoding-d25155148e7c3ea3/lib-percent_encoding @@ -0,0 +1 @@ +5386a67b0cb001ac \ No newline at end of file diff --git a/server/target/debug/.fingerprint/percent-encoding-d25155148e7c3ea3/lib-percent_encoding.json b/server/target/debug/.fingerprint/percent-encoding-d25155148e7c3ea3/lib-percent_encoding.json new file mode 100644 index 0000000..0145ec7 --- /dev/null +++ b/server/target/debug/.fingerprint/percent-encoding-d25155148e7c3ea3/lib-percent_encoding.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":6219969305134610909,"profile":2241668132362809309,"path":6185265526388862181,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/percent-encoding-d25155148e7c3ea3/dep-lib-percent_encoding","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/pin-project-lite-8b988ba6c9f72f5b/dep-lib-pin_project_lite b/server/target/debug/.fingerprint/pin-project-lite-8b988ba6c9f72f5b/dep-lib-pin_project_lite new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/pin-project-lite-8b988ba6c9f72f5b/dep-lib-pin_project_lite differ diff --git a/server/target/debug/.fingerprint/pin-project-lite-8b988ba6c9f72f5b/invoked.timestamp b/server/target/debug/.fingerprint/pin-project-lite-8b988ba6c9f72f5b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/pin-project-lite-8b988ba6c9f72f5b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/pin-project-lite-8b988ba6c9f72f5b/lib-pin_project_lite b/server/target/debug/.fingerprint/pin-project-lite-8b988ba6c9f72f5b/lib-pin_project_lite new file mode 100644 index 0000000..2735083 --- /dev/null +++ b/server/target/debug/.fingerprint/pin-project-lite-8b988ba6c9f72f5b/lib-pin_project_lite @@ -0,0 +1 @@ +11b37c3286932970 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/pin-project-lite-8b988ba6c9f72f5b/lib-pin_project_lite.json b/server/target/debug/.fingerprint/pin-project-lite-8b988ba6c9f72f5b/lib-pin_project_lite.json new file mode 100644 index 0000000..fa2c930 --- /dev/null +++ b/server/target/debug/.fingerprint/pin-project-lite-8b988ba6c9f72f5b/lib-pin_project_lite.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":7529200858990304138,"profile":1789622579709404223,"path":17963691072006942641,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pin-project-lite-8b988ba6c9f72f5b/dep-lib-pin_project_lite","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/pin-project-lite-a61eee401cfe4d00/dep-lib-pin_project_lite b/server/target/debug/.fingerprint/pin-project-lite-a61eee401cfe4d00/dep-lib-pin_project_lite new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/pin-project-lite-a61eee401cfe4d00/dep-lib-pin_project_lite differ diff --git a/server/target/debug/.fingerprint/pin-project-lite-a61eee401cfe4d00/invoked.timestamp b/server/target/debug/.fingerprint/pin-project-lite-a61eee401cfe4d00/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/pin-project-lite-a61eee401cfe4d00/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/pin-project-lite-a61eee401cfe4d00/lib-pin_project_lite b/server/target/debug/.fingerprint/pin-project-lite-a61eee401cfe4d00/lib-pin_project_lite new file mode 100644 index 0000000..1a5cb47 --- /dev/null +++ b/server/target/debug/.fingerprint/pin-project-lite-a61eee401cfe4d00/lib-pin_project_lite @@ -0,0 +1 @@ +f455d337f07e07d8 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/pin-project-lite-a61eee401cfe4d00/lib-pin_project_lite.json b/server/target/debug/.fingerprint/pin-project-lite-a61eee401cfe4d00/lib-pin_project_lite.json new file mode 100644 index 0000000..a506dec --- /dev/null +++ b/server/target/debug/.fingerprint/pin-project-lite-a61eee401cfe4d00/lib-pin_project_lite.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":7529200858990304138,"profile":17997933717712007536,"path":17963691072006942641,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pin-project-lite-a61eee401cfe4d00/dep-lib-pin_project_lite","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/pkg-config-f481c1c51f21f55d/dep-lib-pkg_config b/server/target/debug/.fingerprint/pkg-config-f481c1c51f21f55d/dep-lib-pkg_config new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/pkg-config-f481c1c51f21f55d/dep-lib-pkg_config differ diff --git a/server/target/debug/.fingerprint/pkg-config-f481c1c51f21f55d/invoked.timestamp b/server/target/debug/.fingerprint/pkg-config-f481c1c51f21f55d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/pkg-config-f481c1c51f21f55d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/pkg-config-f481c1c51f21f55d/lib-pkg_config b/server/target/debug/.fingerprint/pkg-config-f481c1c51f21f55d/lib-pkg_config new file mode 100644 index 0000000..3e8214d --- /dev/null +++ b/server/target/debug/.fingerprint/pkg-config-f481c1c51f21f55d/lib-pkg_config @@ -0,0 +1 @@ +603ce4827ffd7f27 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/pkg-config-f481c1c51f21f55d/lib-pkg_config.json b/server/target/debug/.fingerprint/pkg-config-f481c1c51f21f55d/lib-pkg_config.json new file mode 100644 index 0000000..d9dd9ee --- /dev/null +++ b/server/target/debug/.fingerprint/pkg-config-f481c1c51f21f55d/lib-pkg_config.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":4588055084852603002,"profile":2225463790103693989,"path":14633844410476985335,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pkg-config-f481c1c51f21f55d/dep-lib-pkg_config","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/potential_utf-0f9b10e58c9340ac/dep-lib-potential_utf b/server/target/debug/.fingerprint/potential_utf-0f9b10e58c9340ac/dep-lib-potential_utf new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/potential_utf-0f9b10e58c9340ac/dep-lib-potential_utf differ diff --git a/server/target/debug/.fingerprint/potential_utf-0f9b10e58c9340ac/invoked.timestamp b/server/target/debug/.fingerprint/potential_utf-0f9b10e58c9340ac/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/potential_utf-0f9b10e58c9340ac/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/potential_utf-0f9b10e58c9340ac/lib-potential_utf b/server/target/debug/.fingerprint/potential_utf-0f9b10e58c9340ac/lib-potential_utf new file mode 100644 index 0000000..899f9cf --- /dev/null +++ b/server/target/debug/.fingerprint/potential_utf-0f9b10e58c9340ac/lib-potential_utf @@ -0,0 +1 @@ +2544141336e4cfbb \ No newline at end of file diff --git a/server/target/debug/.fingerprint/potential_utf-0f9b10e58c9340ac/lib-potential_utf.json b/server/target/debug/.fingerprint/potential_utf-0f9b10e58c9340ac/lib-potential_utf.json new file mode 100644 index 0000000..85d9d81 --- /dev/null +++ b/server/target/debug/.fingerprint/potential_utf-0f9b10e58c9340ac/lib-potential_utf.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"writeable\", \"zerovec\"]","target":16089386906944150126,"profile":15319846033271432293,"path":16560581442444373016,"deps":[[9119616491714376884,"zerovec",false,7143538521124184093]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/potential_utf-0f9b10e58c9340ac/dep-lib-potential_utf","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/powerfmt-77d7e4a078e3c049/dep-lib-powerfmt b/server/target/debug/.fingerprint/powerfmt-77d7e4a078e3c049/dep-lib-powerfmt new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/powerfmt-77d7e4a078e3c049/dep-lib-powerfmt differ diff --git a/server/target/debug/.fingerprint/powerfmt-77d7e4a078e3c049/invoked.timestamp b/server/target/debug/.fingerprint/powerfmt-77d7e4a078e3c049/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/powerfmt-77d7e4a078e3c049/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/powerfmt-77d7e4a078e3c049/lib-powerfmt b/server/target/debug/.fingerprint/powerfmt-77d7e4a078e3c049/lib-powerfmt new file mode 100644 index 0000000..092ce9a --- /dev/null +++ b/server/target/debug/.fingerprint/powerfmt-77d7e4a078e3c049/lib-powerfmt @@ -0,0 +1 @@ +d5c47d9e4381e207 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/powerfmt-77d7e4a078e3c049/lib-powerfmt.json b/server/target/debug/.fingerprint/powerfmt-77d7e4a078e3c049/lib-powerfmt.json new file mode 100644 index 0000000..404e6e3 --- /dev/null +++ b/server/target/debug/.fingerprint/powerfmt-77d7e4a078e3c049/lib-powerfmt.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"alloc\", \"default\", \"macros\", \"std\"]","target":3190409771209632544,"profile":2241668132362809309,"path":49714162504703623,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/powerfmt-77d7e4a078e3c049/dep-lib-powerfmt","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/ppv-lite86-02fd091ba5b69964/dep-lib-ppv_lite86 b/server/target/debug/.fingerprint/ppv-lite86-02fd091ba5b69964/dep-lib-ppv_lite86 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/ppv-lite86-02fd091ba5b69964/dep-lib-ppv_lite86 differ diff --git a/server/target/debug/.fingerprint/ppv-lite86-02fd091ba5b69964/invoked.timestamp b/server/target/debug/.fingerprint/ppv-lite86-02fd091ba5b69964/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/ppv-lite86-02fd091ba5b69964/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/ppv-lite86-02fd091ba5b69964/lib-ppv_lite86 b/server/target/debug/.fingerprint/ppv-lite86-02fd091ba5b69964/lib-ppv_lite86 new file mode 100644 index 0000000..92ed818 --- /dev/null +++ b/server/target/debug/.fingerprint/ppv-lite86-02fd091ba5b69964/lib-ppv_lite86 @@ -0,0 +1 @@ +5be7efaed94303fd \ No newline at end of file diff --git a/server/target/debug/.fingerprint/ppv-lite86-02fd091ba5b69964/lib-ppv_lite86.json b/server/target/debug/.fingerprint/ppv-lite86-02fd091ba5b69964/lib-ppv_lite86.json new file mode 100644 index 0000000..316eb55 --- /dev/null +++ b/server/target/debug/.fingerprint/ppv-lite86-02fd091ba5b69964/lib-ppv_lite86.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"simd\", \"std\"]","declared_features":"[\"default\", \"no_simd\", \"simd\", \"std\"]","target":2607852365283500179,"profile":2241668132362809309,"path":9930126320833731056,"deps":[[3612005756660025491,"zerocopy",false,14985554458179427097]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ppv-lite86-02fd091ba5b69964/dep-lib-ppv_lite86","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/proc-macro2-8b947d10cfa3dc7d/dep-lib-proc_macro2 b/server/target/debug/.fingerprint/proc-macro2-8b947d10cfa3dc7d/dep-lib-proc_macro2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/proc-macro2-8b947d10cfa3dc7d/dep-lib-proc_macro2 differ diff --git a/server/target/debug/.fingerprint/proc-macro2-8b947d10cfa3dc7d/invoked.timestamp b/server/target/debug/.fingerprint/proc-macro2-8b947d10cfa3dc7d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/proc-macro2-8b947d10cfa3dc7d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/proc-macro2-8b947d10cfa3dc7d/lib-proc_macro2 b/server/target/debug/.fingerprint/proc-macro2-8b947d10cfa3dc7d/lib-proc_macro2 new file mode 100644 index 0000000..ae93ec3 --- /dev/null +++ b/server/target/debug/.fingerprint/proc-macro2-8b947d10cfa3dc7d/lib-proc_macro2 @@ -0,0 +1 @@ +c36236f89f9f408d \ No newline at end of file diff --git a/server/target/debug/.fingerprint/proc-macro2-8b947d10cfa3dc7d/lib-proc_macro2.json b/server/target/debug/.fingerprint/proc-macro2-8b947d10cfa3dc7d/lib-proc_macro2.json new file mode 100644 index 0000000..47c751c --- /dev/null +++ b/server/target/debug/.fingerprint/proc-macro2-8b947d10cfa3dc7d/lib-proc_macro2.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":369203346396300798,"profile":2225463790103693989,"path":9800046391940342037,"deps":[[4289358735036141001,"build_script_build",false,12071923296883494207],[8901712065508858692,"unicode_ident",false,10544093101577960102]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-8b947d10cfa3dc7d/dep-lib-proc_macro2","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/proc-macro2-cdc80bb011340cc8/run-build-script-build-script-build b/server/target/debug/.fingerprint/proc-macro2-cdc80bb011340cc8/run-build-script-build-script-build new file mode 100644 index 0000000..636ee30 --- /dev/null +++ b/server/target/debug/.fingerprint/proc-macro2-cdc80bb011340cc8/run-build-script-build-script-build @@ -0,0 +1 @@ +3fcd805a471688a7 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/proc-macro2-cdc80bb011340cc8/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/proc-macro2-cdc80bb011340cc8/run-build-script-build-script-build.json new file mode 100644 index 0000000..38d52b2 --- /dev/null +++ b/server/target/debug/.fingerprint/proc-macro2-cdc80bb011340cc8/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[4289358735036141001,"build_script_build",false,13714794591800983731]],"local":[{"RerunIfChanged":{"output":"debug/build/proc-macro2-cdc80bb011340cc8/output","paths":["src/probe/proc_macro_span.rs","src/probe/proc_macro_span_location.rs","src/probe/proc_macro_span_file.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/proc-macro2-e61b3caad72a3067/build-script-build-script-build b/server/target/debug/.fingerprint/proc-macro2-e61b3caad72a3067/build-script-build-script-build new file mode 100644 index 0000000..e3069cf --- /dev/null +++ b/server/target/debug/.fingerprint/proc-macro2-e61b3caad72a3067/build-script-build-script-build @@ -0,0 +1 @@ +b300bf6304bd54be \ No newline at end of file diff --git a/server/target/debug/.fingerprint/proc-macro2-e61b3caad72a3067/build-script-build-script-build.json b/server/target/debug/.fingerprint/proc-macro2-e61b3caad72a3067/build-script-build-script-build.json new file mode 100644 index 0000000..39884dd --- /dev/null +++ b/server/target/debug/.fingerprint/proc-macro2-e61b3caad72a3067/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":5408242616063297496,"profile":2225463790103693989,"path":16578469798727684893,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-e61b3caad72a3067/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/proc-macro2-e61b3caad72a3067/dep-build-script-build-script-build b/server/target/debug/.fingerprint/proc-macro2-e61b3caad72a3067/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/proc-macro2-e61b3caad72a3067/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/proc-macro2-e61b3caad72a3067/invoked.timestamp b/server/target/debug/.fingerprint/proc-macro2-e61b3caad72a3067/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/proc-macro2-e61b3caad72a3067/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/quote-117ea8ba3d8931af/dep-lib-quote b/server/target/debug/.fingerprint/quote-117ea8ba3d8931af/dep-lib-quote new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/quote-117ea8ba3d8931af/dep-lib-quote differ diff --git a/server/target/debug/.fingerprint/quote-117ea8ba3d8931af/invoked.timestamp b/server/target/debug/.fingerprint/quote-117ea8ba3d8931af/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/quote-117ea8ba3d8931af/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/quote-117ea8ba3d8931af/lib-quote b/server/target/debug/.fingerprint/quote-117ea8ba3d8931af/lib-quote new file mode 100644 index 0000000..37ba779 --- /dev/null +++ b/server/target/debug/.fingerprint/quote-117ea8ba3d8931af/lib-quote @@ -0,0 +1 @@ +a09850723fc919e1 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/quote-117ea8ba3d8931af/lib-quote.json b/server/target/debug/.fingerprint/quote-117ea8ba3d8931af/lib-quote.json new file mode 100644 index 0000000..5e43335 --- /dev/null +++ b/server/target/debug/.fingerprint/quote-117ea8ba3d8931af/lib-quote.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":8313845041260779044,"profile":2225463790103693989,"path":3529332701204076950,"deps":[[4289358735036141001,"proc_macro2",false,10178310667270251203],[13111758008314797071,"build_script_build",false,1747895465569048329]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-117ea8ba3d8931af/dep-lib-quote","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/quote-76885401fd60bb49/build-script-build-script-build b/server/target/debug/.fingerprint/quote-76885401fd60bb49/build-script-build-script-build new file mode 100644 index 0000000..be5865d --- /dev/null +++ b/server/target/debug/.fingerprint/quote-76885401fd60bb49/build-script-build-script-build @@ -0,0 +1 @@ +93119e49d951d702 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/quote-76885401fd60bb49/build-script-build-script-build.json b/server/target/debug/.fingerprint/quote-76885401fd60bb49/build-script-build-script-build.json new file mode 100644 index 0000000..97d502b --- /dev/null +++ b/server/target/debug/.fingerprint/quote-76885401fd60bb49/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":5408242616063297496,"profile":2225463790103693989,"path":5680396967275487135,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-76885401fd60bb49/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/quote-76885401fd60bb49/dep-build-script-build-script-build b/server/target/debug/.fingerprint/quote-76885401fd60bb49/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/quote-76885401fd60bb49/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/quote-76885401fd60bb49/invoked.timestamp b/server/target/debug/.fingerprint/quote-76885401fd60bb49/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/quote-76885401fd60bb49/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/quote-d4c1d5b91a3b7899/run-build-script-build-script-build b/server/target/debug/.fingerprint/quote-d4c1d5b91a3b7899/run-build-script-build-script-build new file mode 100644 index 0000000..2e82132 --- /dev/null +++ b/server/target/debug/.fingerprint/quote-d4c1d5b91a3b7899/run-build-script-build-script-build @@ -0,0 +1 @@ +0957c249aac54118 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/quote-d4c1d5b91a3b7899/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/quote-d4c1d5b91a3b7899/run-build-script-build-script-build.json new file mode 100644 index 0000000..8dbd7b5 --- /dev/null +++ b/server/target/debug/.fingerprint/quote-d4c1d5b91a3b7899/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13111758008314797071,"build_script_build",false,204722301753495955]],"local":[{"RerunIfChanged":{"output":"debug/build/quote-d4c1d5b91a3b7899/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand-25ec97ffd940b728/dep-lib-rand b/server/target/debug/.fingerprint/rand-25ec97ffd940b728/dep-lib-rand new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/rand-25ec97ffd940b728/dep-lib-rand differ diff --git a/server/target/debug/.fingerprint/rand-25ec97ffd940b728/invoked.timestamp b/server/target/debug/.fingerprint/rand-25ec97ffd940b728/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/rand-25ec97ffd940b728/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand-25ec97ffd940b728/lib-rand b/server/target/debug/.fingerprint/rand-25ec97ffd940b728/lib-rand new file mode 100644 index 0000000..b3e774a --- /dev/null +++ b/server/target/debug/.fingerprint/rand-25ec97ffd940b728/lib-rand @@ -0,0 +1 @@ +1c25520c577c382f \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand-25ec97ffd940b728/lib-rand.json b/server/target/debug/.fingerprint/rand-25ec97ffd940b728/lib-rand.json new file mode 100644 index 0000000..aa758ec --- /dev/null +++ b/server/target/debug/.fingerprint/rand-25ec97ffd940b728/lib-rand.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"default\", \"os_rng\", \"small_rng\", \"std\", \"std_rng\", \"thread_rng\"]","declared_features":"[\"alloc\", \"default\", \"log\", \"nightly\", \"os_rng\", \"serde\", \"simd_support\", \"small_rng\", \"std\", \"std_rng\", \"thread_rng\", \"unbiased\"]","target":4488736914369465202,"profile":2241668132362809309,"path":14571125541954006099,"deps":[[5652558058897858086,"rand_chacha",false,4837324785969081956],[8547529450283578711,"rand_core",false,3169625045731875766]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand-25ec97ffd940b728/dep-lib-rand","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand-3386ff06806e5b30/dep-lib-rand b/server/target/debug/.fingerprint/rand-3386ff06806e5b30/dep-lib-rand new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/rand-3386ff06806e5b30/dep-lib-rand differ diff --git a/server/target/debug/.fingerprint/rand-3386ff06806e5b30/invoked.timestamp b/server/target/debug/.fingerprint/rand-3386ff06806e5b30/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/rand-3386ff06806e5b30/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand-3386ff06806e5b30/lib-rand b/server/target/debug/.fingerprint/rand-3386ff06806e5b30/lib-rand new file mode 100644 index 0000000..c3c95b1 --- /dev/null +++ b/server/target/debug/.fingerprint/rand-3386ff06806e5b30/lib-rand @@ -0,0 +1 @@ +d1ff2241ec2fbd31 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand-3386ff06806e5b30/lib-rand.json b/server/target/debug/.fingerprint/rand-3386ff06806e5b30/lib-rand.json new file mode 100644 index 0000000..d6d48aa --- /dev/null +++ b/server/target/debug/.fingerprint/rand-3386ff06806e5b30/lib-rand.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"rand_chacha\", \"std\", \"std_rng\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"log\", \"min_const_gen\", \"nightly\", \"packed_simd\", \"rand_chacha\", \"serde\", \"serde1\", \"simd_support\", \"small_rng\", \"std\", \"std_rng\"]","target":8827111241893198906,"profile":2241668132362809309,"path":11898380758611838985,"deps":[[1573238666360410412,"rand_chacha",false,1672514342091198408],[12111499963430175700,"libc",false,2814671613317866187],[18130209639506977569,"rand_core",false,4586651405622322815]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand-3386ff06806e5b30/dep-lib-rand","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand_chacha-2853c95e5a3f5795/dep-lib-rand_chacha b/server/target/debug/.fingerprint/rand_chacha-2853c95e5a3f5795/dep-lib-rand_chacha new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/rand_chacha-2853c95e5a3f5795/dep-lib-rand_chacha differ diff --git a/server/target/debug/.fingerprint/rand_chacha-2853c95e5a3f5795/invoked.timestamp b/server/target/debug/.fingerprint/rand_chacha-2853c95e5a3f5795/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/rand_chacha-2853c95e5a3f5795/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand_chacha-2853c95e5a3f5795/lib-rand_chacha b/server/target/debug/.fingerprint/rand_chacha-2853c95e5a3f5795/lib-rand_chacha new file mode 100644 index 0000000..88ae91f --- /dev/null +++ b/server/target/debug/.fingerprint/rand_chacha-2853c95e5a3f5795/lib-rand_chacha @@ -0,0 +1 @@ +642ee17a43a12143 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand_chacha-2853c95e5a3f5795/lib-rand_chacha.json b/server/target/debug/.fingerprint/rand_chacha-2853c95e5a3f5795/lib-rand_chacha.json new file mode 100644 index 0000000..ddcb412 --- /dev/null +++ b/server/target/debug/.fingerprint/rand_chacha-2853c95e5a3f5795/lib-rand_chacha.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"std\"]","declared_features":"[\"default\", \"os_rng\", \"serde\", \"std\"]","target":12152606625246618204,"profile":2241668132362809309,"path":859233863586051393,"deps":[[8547529450283578711,"rand_core",false,3169625045731875766],[12919011715531272606,"ppv_lite86",false,18231490318747821915]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_chacha-2853c95e5a3f5795/dep-lib-rand_chacha","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand_chacha-306a6853a00b0af4/dep-lib-rand_chacha b/server/target/debug/.fingerprint/rand_chacha-306a6853a00b0af4/dep-lib-rand_chacha new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/rand_chacha-306a6853a00b0af4/dep-lib-rand_chacha differ diff --git a/server/target/debug/.fingerprint/rand_chacha-306a6853a00b0af4/invoked.timestamp b/server/target/debug/.fingerprint/rand_chacha-306a6853a00b0af4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/rand_chacha-306a6853a00b0af4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand_chacha-306a6853a00b0af4/lib-rand_chacha b/server/target/debug/.fingerprint/rand_chacha-306a6853a00b0af4/lib-rand_chacha new file mode 100644 index 0000000..a817c66 --- /dev/null +++ b/server/target/debug/.fingerprint/rand_chacha-306a6853a00b0af4/lib-rand_chacha @@ -0,0 +1 @@ +c88f17caeef63517 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand_chacha-306a6853a00b0af4/lib-rand_chacha.json b/server/target/debug/.fingerprint/rand_chacha-306a6853a00b0af4/lib-rand_chacha.json new file mode 100644 index 0000000..b9c1bf6 --- /dev/null +++ b/server/target/debug/.fingerprint/rand_chacha-306a6853a00b0af4/lib-rand_chacha.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"std\"]","declared_features":"[\"default\", \"serde\", \"serde1\", \"simd\", \"std\"]","target":15766068575093147603,"profile":2241668132362809309,"path":4827389285280304987,"deps":[[12919011715531272606,"ppv_lite86",false,18231490318747821915],[18130209639506977569,"rand_core",false,4586651405622322815]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_chacha-306a6853a00b0af4/dep-lib-rand_chacha","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand_core-57e641724a17c916/dep-lib-rand_core b/server/target/debug/.fingerprint/rand_core-57e641724a17c916/dep-lib-rand_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/rand_core-57e641724a17c916/dep-lib-rand_core differ diff --git a/server/target/debug/.fingerprint/rand_core-57e641724a17c916/invoked.timestamp b/server/target/debug/.fingerprint/rand_core-57e641724a17c916/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/rand_core-57e641724a17c916/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand_core-57e641724a17c916/lib-rand_core b/server/target/debug/.fingerprint/rand_core-57e641724a17c916/lib-rand_core new file mode 100644 index 0000000..cf522ee --- /dev/null +++ b/server/target/debug/.fingerprint/rand_core-57e641724a17c916/lib-rand_core @@ -0,0 +1 @@ +7f26aafc260fa73f \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand_core-57e641724a17c916/lib-rand_core.json b/server/target/debug/.fingerprint/rand_core-57e641724a17c916/lib-rand_core.json new file mode 100644 index 0000000..7da535a --- /dev/null +++ b/server/target/debug/.fingerprint/rand_core-57e641724a17c916/lib-rand_core.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"getrandom\", \"std\"]","declared_features":"[\"alloc\", \"getrandom\", \"serde\", \"serde1\", \"std\"]","target":13770603672348587087,"profile":2241668132362809309,"path":13040281369988655907,"deps":[[11023519408959114924,"getrandom",false,3559954868388151097]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_core-57e641724a17c916/dep-lib-rand_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand_core-eb58fd436e06fdeb/dep-lib-rand_core b/server/target/debug/.fingerprint/rand_core-eb58fd436e06fdeb/dep-lib-rand_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/rand_core-eb58fd436e06fdeb/dep-lib-rand_core differ diff --git a/server/target/debug/.fingerprint/rand_core-eb58fd436e06fdeb/invoked.timestamp b/server/target/debug/.fingerprint/rand_core-eb58fd436e06fdeb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/rand_core-eb58fd436e06fdeb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand_core-eb58fd436e06fdeb/lib-rand_core b/server/target/debug/.fingerprint/rand_core-eb58fd436e06fdeb/lib-rand_core new file mode 100644 index 0000000..9162c8d --- /dev/null +++ b/server/target/debug/.fingerprint/rand_core-eb58fd436e06fdeb/lib-rand_core @@ -0,0 +1 @@ +b69b078a2fc5fc2b \ No newline at end of file diff --git a/server/target/debug/.fingerprint/rand_core-eb58fd436e06fdeb/lib-rand_core.json b/server/target/debug/.fingerprint/rand_core-eb58fd436e06fdeb/lib-rand_core.json new file mode 100644 index 0000000..48f6665 --- /dev/null +++ b/server/target/debug/.fingerprint/rand_core-eb58fd436e06fdeb/lib-rand_core.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"os_rng\", \"std\"]","declared_features":"[\"os_rng\", \"serde\", \"std\"]","target":7103588737537114155,"profile":2241668132362809309,"path":11604875775923548450,"deps":[[18408407127522236545,"getrandom",false,12232681354608923425]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_core-eb58fd436e06fdeb/dep-lib-rand_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/regex-automata-26c72ccac949279a/dep-lib-regex_automata b/server/target/debug/.fingerprint/regex-automata-26c72ccac949279a/dep-lib-regex_automata new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/regex-automata-26c72ccac949279a/dep-lib-regex_automata differ diff --git a/server/target/debug/.fingerprint/regex-automata-26c72ccac949279a/invoked.timestamp b/server/target/debug/.fingerprint/regex-automata-26c72ccac949279a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/regex-automata-26c72ccac949279a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/regex-automata-26c72ccac949279a/lib-regex_automata b/server/target/debug/.fingerprint/regex-automata-26c72ccac949279a/lib-regex_automata new file mode 100644 index 0000000..be3c738 --- /dev/null +++ b/server/target/debug/.fingerprint/regex-automata-26c72ccac949279a/lib-regex_automata @@ -0,0 +1 @@ +b550cc7e5fb48e6e \ No newline at end of file diff --git a/server/target/debug/.fingerprint/regex-automata-26c72ccac949279a/lib-regex_automata.json b/server/target/debug/.fingerprint/regex-automata-26c72ccac949279a/lib-regex_automata.json new file mode 100644 index 0000000..08b05df --- /dev/null +++ b/server/target/debug/.fingerprint/regex-automata-26c72ccac949279a/lib-regex_automata.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"dfa-onepass\", \"hybrid\", \"meta\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","declared_features":"[\"alloc\", \"default\", \"dfa\", \"dfa-build\", \"dfa-onepass\", \"dfa-search\", \"hybrid\", \"internal-instrument\", \"internal-instrument-pikevm\", \"logging\", \"meta\", \"nfa\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","target":4726246767843925232,"profile":10712413002018579216,"path":4699610158389674457,"deps":[[1363051979936526615,"memchr",false,9034228811413583865],[13473492399833278124,"regex_syntax",false,4147636488593665752],[15324871377471570981,"aho_corasick",false,3189489365194691505]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-automata-26c72ccac949279a/dep-lib-regex_automata","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/regex-f7c445cd394d0691/dep-lib-regex b/server/target/debug/.fingerprint/regex-f7c445cd394d0691/dep-lib-regex new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/regex-f7c445cd394d0691/dep-lib-regex differ diff --git a/server/target/debug/.fingerprint/regex-f7c445cd394d0691/invoked.timestamp b/server/target/debug/.fingerprint/regex-f7c445cd394d0691/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/regex-f7c445cd394d0691/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/regex-f7c445cd394d0691/lib-regex b/server/target/debug/.fingerprint/regex-f7c445cd394d0691/lib-regex new file mode 100644 index 0000000..37ade4f --- /dev/null +++ b/server/target/debug/.fingerprint/regex-f7c445cd394d0691/lib-regex @@ -0,0 +1 @@ +af2733a73a4ddbca \ No newline at end of file diff --git a/server/target/debug/.fingerprint/regex-f7c445cd394d0691/lib-regex.json b/server/target/debug/.fingerprint/regex-f7c445cd394d0691/lib-regex.json new file mode 100644 index 0000000..429584f --- /dev/null +++ b/server/target/debug/.fingerprint/regex-f7c445cd394d0691/lib-regex.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"perf\", \"perf-backtrack\", \"perf-cache\", \"perf-dfa\", \"perf-inline\", \"perf-literal\", \"perf-onepass\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","declared_features":"[\"default\", \"logging\", \"pattern\", \"perf\", \"perf-backtrack\", \"perf-cache\", \"perf-dfa\", \"perf-dfa-full\", \"perf-inline\", \"perf-literal\", \"perf-onepass\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unstable\", \"use_std\"]","target":5796931310894148030,"profile":10712413002018579216,"path":13226367313082562765,"deps":[[1363051979936526615,"memchr",false,9034228811413583865],[3621165330500844947,"regex_automata",false,7966503113107198133],[13473492399833278124,"regex_syntax",false,4147636488593665752],[15324871377471570981,"aho_corasick",false,3189489365194691505]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-f7c445cd394d0691/dep-lib-regex","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/regex-lite-70fc10b20a1d64f3/dep-lib-regex_lite b/server/target/debug/.fingerprint/regex-lite-70fc10b20a1d64f3/dep-lib-regex_lite new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/regex-lite-70fc10b20a1d64f3/dep-lib-regex_lite differ diff --git a/server/target/debug/.fingerprint/regex-lite-70fc10b20a1d64f3/invoked.timestamp b/server/target/debug/.fingerprint/regex-lite-70fc10b20a1d64f3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/regex-lite-70fc10b20a1d64f3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/regex-lite-70fc10b20a1d64f3/lib-regex_lite b/server/target/debug/.fingerprint/regex-lite-70fc10b20a1d64f3/lib-regex_lite new file mode 100644 index 0000000..354637c --- /dev/null +++ b/server/target/debug/.fingerprint/regex-lite-70fc10b20a1d64f3/lib-regex_lite @@ -0,0 +1 @@ +15246113c6535de2 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/regex-lite-70fc10b20a1d64f3/lib-regex_lite.json b/server/target/debug/.fingerprint/regex-lite-70fc10b20a1d64f3/lib-regex_lite.json new file mode 100644 index 0000000..96a1d4d --- /dev/null +++ b/server/target/debug/.fingerprint/regex-lite-70fc10b20a1d64f3/lib-regex_lite.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\", \"string\"]","declared_features":"[\"default\", \"std\", \"string\"]","target":300499141083605431,"profile":2241668132362809309,"path":13427192594535891376,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-lite-70fc10b20a1d64f3/dep-lib-regex_lite","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/regex-lite-95a42a74d9f31bac/dep-lib-regex_lite b/server/target/debug/.fingerprint/regex-lite-95a42a74d9f31bac/dep-lib-regex_lite new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/regex-lite-95a42a74d9f31bac/dep-lib-regex_lite differ diff --git a/server/target/debug/.fingerprint/regex-lite-95a42a74d9f31bac/invoked.timestamp b/server/target/debug/.fingerprint/regex-lite-95a42a74d9f31bac/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/regex-lite-95a42a74d9f31bac/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/regex-lite-95a42a74d9f31bac/lib-regex_lite b/server/target/debug/.fingerprint/regex-lite-95a42a74d9f31bac/lib-regex_lite new file mode 100644 index 0000000..5ace614 --- /dev/null +++ b/server/target/debug/.fingerprint/regex-lite-95a42a74d9f31bac/lib-regex_lite @@ -0,0 +1 @@ +75a5152fc90a313a \ No newline at end of file diff --git a/server/target/debug/.fingerprint/regex-lite-95a42a74d9f31bac/lib-regex_lite.json b/server/target/debug/.fingerprint/regex-lite-95a42a74d9f31bac/lib-regex_lite.json new file mode 100644 index 0000000..1d77856 --- /dev/null +++ b/server/target/debug/.fingerprint/regex-lite-95a42a74d9f31bac/lib-regex_lite.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\", \"string\"]","declared_features":"[\"default\", \"std\", \"string\"]","target":300499141083605431,"profile":2225463790103693989,"path":13427192594535891376,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-lite-95a42a74d9f31bac/dep-lib-regex_lite","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/regex-syntax-d08731c9e14afbee/dep-lib-regex_syntax b/server/target/debug/.fingerprint/regex-syntax-d08731c9e14afbee/dep-lib-regex_syntax new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/regex-syntax-d08731c9e14afbee/dep-lib-regex_syntax differ diff --git a/server/target/debug/.fingerprint/regex-syntax-d08731c9e14afbee/invoked.timestamp b/server/target/debug/.fingerprint/regex-syntax-d08731c9e14afbee/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/regex-syntax-d08731c9e14afbee/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/regex-syntax-d08731c9e14afbee/lib-regex_syntax b/server/target/debug/.fingerprint/regex-syntax-d08731c9e14afbee/lib-regex_syntax new file mode 100644 index 0000000..f3148c0 --- /dev/null +++ b/server/target/debug/.fingerprint/regex-syntax-d08731c9e14afbee/lib-regex_syntax @@ -0,0 +1 @@ +d8ee1248695d8f39 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/regex-syntax-d08731c9e14afbee/lib-regex_syntax.json b/server/target/debug/.fingerprint/regex-syntax-d08731c9e14afbee/lib-regex_syntax.json new file mode 100644 index 0000000..240fbca --- /dev/null +++ b/server/target/debug/.fingerprint/regex-syntax-d08731c9e14afbee/lib-regex_syntax.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","declared_features":"[\"arbitrary\", \"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","target":742186494246220192,"profile":10712413002018579216,"path":16704479884823311706,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-syntax-d08731c9e14afbee/dep-lib-regex_syntax","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/ryu-4311754d5ac1e9e4/dep-lib-ryu b/server/target/debug/.fingerprint/ryu-4311754d5ac1e9e4/dep-lib-ryu new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/ryu-4311754d5ac1e9e4/dep-lib-ryu differ diff --git a/server/target/debug/.fingerprint/ryu-4311754d5ac1e9e4/invoked.timestamp b/server/target/debug/.fingerprint/ryu-4311754d5ac1e9e4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/ryu-4311754d5ac1e9e4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/ryu-4311754d5ac1e9e4/lib-ryu b/server/target/debug/.fingerprint/ryu-4311754d5ac1e9e4/lib-ryu new file mode 100644 index 0000000..aa6cdbd --- /dev/null +++ b/server/target/debug/.fingerprint/ryu-4311754d5ac1e9e4/lib-ryu @@ -0,0 +1 @@ +840b453f1fc2c777 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/ryu-4311754d5ac1e9e4/lib-ryu.json b/server/target/debug/.fingerprint/ryu-4311754d5ac1e9e4/lib-ryu.json new file mode 100644 index 0000000..511ed3f --- /dev/null +++ b/server/target/debug/.fingerprint/ryu-4311754d5ac1e9e4/lib-ryu.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"no-panic\", \"small\"]","target":13763186580977333631,"profile":2241668132362809309,"path":10186125480188599509,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ryu-4311754d5ac1e9e4/dep-lib-ryu","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/scopeguard-5f5d74d42e3f7fac/dep-lib-scopeguard b/server/target/debug/.fingerprint/scopeguard-5f5d74d42e3f7fac/dep-lib-scopeguard new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/scopeguard-5f5d74d42e3f7fac/dep-lib-scopeguard differ diff --git a/server/target/debug/.fingerprint/scopeguard-5f5d74d42e3f7fac/invoked.timestamp b/server/target/debug/.fingerprint/scopeguard-5f5d74d42e3f7fac/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/scopeguard-5f5d74d42e3f7fac/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/scopeguard-5f5d74d42e3f7fac/lib-scopeguard b/server/target/debug/.fingerprint/scopeguard-5f5d74d42e3f7fac/lib-scopeguard new file mode 100644 index 0000000..04dcffd --- /dev/null +++ b/server/target/debug/.fingerprint/scopeguard-5f5d74d42e3f7fac/lib-scopeguard @@ -0,0 +1 @@ +9dd522f274786f51 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/scopeguard-5f5d74d42e3f7fac/lib-scopeguard.json b/server/target/debug/.fingerprint/scopeguard-5f5d74d42e3f7fac/lib-scopeguard.json new file mode 100644 index 0000000..ed49dbd --- /dev/null +++ b/server/target/debug/.fingerprint/scopeguard-5f5d74d42e3f7fac/lib-scopeguard.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"default\", \"use_std\"]","target":3556356971060988614,"profile":2241668132362809309,"path":5987799877052157267,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/scopeguard-5f5d74d42e3f7fac/dep-lib-scopeguard","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde-0c0d3ac83fe3437f/build-script-build-script-build b/server/target/debug/.fingerprint/serde-0c0d3ac83fe3437f/build-script-build-script-build new file mode 100644 index 0000000..bbbb115 --- /dev/null +++ b/server/target/debug/.fingerprint/serde-0c0d3ac83fe3437f/build-script-build-script-build @@ -0,0 +1 @@ +9855e967728add28 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde-0c0d3ac83fe3437f/build-script-build-script-build.json b/server/target/debug/.fingerprint/serde-0c0d3ac83fe3437f/build-script-build-script-build.json new file mode 100644 index 0000000..63c9af7 --- /dev/null +++ b/server/target/debug/.fingerprint/serde-0c0d3ac83fe3437f/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"derive\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":2225463790103693989,"path":7332870654301455433,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-0c0d3ac83fe3437f/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde-0c0d3ac83fe3437f/dep-build-script-build-script-build b/server/target/debug/.fingerprint/serde-0c0d3ac83fe3437f/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/serde-0c0d3ac83fe3437f/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/serde-0c0d3ac83fe3437f/invoked.timestamp b/server/target/debug/.fingerprint/serde-0c0d3ac83fe3437f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/serde-0c0d3ac83fe3437f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde-26ece2303ac8a3b5/dep-lib-serde b/server/target/debug/.fingerprint/serde-26ece2303ac8a3b5/dep-lib-serde new file mode 100644 index 0000000..a310e04 Binary files /dev/null and b/server/target/debug/.fingerprint/serde-26ece2303ac8a3b5/dep-lib-serde differ diff --git a/server/target/debug/.fingerprint/serde-26ece2303ac8a3b5/invoked.timestamp b/server/target/debug/.fingerprint/serde-26ece2303ac8a3b5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/serde-26ece2303ac8a3b5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde-26ece2303ac8a3b5/lib-serde b/server/target/debug/.fingerprint/serde-26ece2303ac8a3b5/lib-serde new file mode 100644 index 0000000..6334fb2 --- /dev/null +++ b/server/target/debug/.fingerprint/serde-26ece2303ac8a3b5/lib-serde @@ -0,0 +1 @@ +5b1a35777402f42c \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde-26ece2303ac8a3b5/lib-serde.json b/server/target/debug/.fingerprint/serde-26ece2303ac8a3b5/lib-serde.json new file mode 100644 index 0000000..6e0350d --- /dev/null +++ b/server/target/debug/.fingerprint/serde-26ece2303ac8a3b5/lib-serde.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":11327258112168116673,"profile":2225463790103693989,"path":3052639765718140588,"deps":[[11899261697793765154,"serde_core",false,1131610050894205912],[13548984313718623784,"build_script_build",false,10437293817969981152]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-26ece2303ac8a3b5/dep-lib-serde","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde-6aeb262f7e7c722f/run-build-script-build-script-build b/server/target/debug/.fingerprint/serde-6aeb262f7e7c722f/run-build-script-build-script-build new file mode 100644 index 0000000..26db6b8 --- /dev/null +++ b/server/target/debug/.fingerprint/serde-6aeb262f7e7c722f/run-build-script-build-script-build @@ -0,0 +1 @@ +d23088a0a44ae2ab \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde-6aeb262f7e7c722f/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/serde-6aeb262f7e7c722f/run-build-script-build-script-build.json new file mode 100644 index 0000000..67a1549 --- /dev/null +++ b/server/target/debug/.fingerprint/serde-6aeb262f7e7c722f/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13548984313718623784,"build_script_build",false,2944661955344422296]],"local":[{"RerunIfChanged":{"output":"debug/build/serde-6aeb262f7e7c722f/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde-9c8b6d6f9285a874/dep-lib-serde b/server/target/debug/.fingerprint/serde-9c8b6d6f9285a874/dep-lib-serde new file mode 100644 index 0000000..ce70810 Binary files /dev/null and b/server/target/debug/.fingerprint/serde-9c8b6d6f9285a874/dep-lib-serde differ diff --git a/server/target/debug/.fingerprint/serde-9c8b6d6f9285a874/invoked.timestamp b/server/target/debug/.fingerprint/serde-9c8b6d6f9285a874/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/serde-9c8b6d6f9285a874/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde-9c8b6d6f9285a874/lib-serde b/server/target/debug/.fingerprint/serde-9c8b6d6f9285a874/lib-serde new file mode 100644 index 0000000..da22f1c --- /dev/null +++ b/server/target/debug/.fingerprint/serde-9c8b6d6f9285a874/lib-serde @@ -0,0 +1 @@ +4dec1d3b7c7c7a68 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde-9c8b6d6f9285a874/lib-serde.json b/server/target/debug/.fingerprint/serde-9c8b6d6f9285a874/lib-serde.json new file mode 100644 index 0000000..a6d9202 --- /dev/null +++ b/server/target/debug/.fingerprint/serde-9c8b6d6f9285a874/lib-serde.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"derive\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":11327258112168116673,"profile":2241668132362809309,"path":3052639765718140588,"deps":[[3051629642231505422,"serde_derive",false,7853123531137331752],[11899261697793765154,"serde_core",false,8850312048232807501],[13548984313718623784,"build_script_build",false,12385543996150657234]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-9c8b6d6f9285a874/dep-lib-serde","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde-b83883f49ee5ce96/build-script-build-script-build b/server/target/debug/.fingerprint/serde-b83883f49ee5ce96/build-script-build-script-build new file mode 100644 index 0000000..dd56c52 --- /dev/null +++ b/server/target/debug/.fingerprint/serde-b83883f49ee5ce96/build-script-build-script-build @@ -0,0 +1 @@ +0a806c1662c5670b \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde-b83883f49ee5ce96/build-script-build-script-build.json b/server/target/debug/.fingerprint/serde-b83883f49ee5ce96/build-script-build-script-build.json new file mode 100644 index 0000000..cd3e912 --- /dev/null +++ b/server/target/debug/.fingerprint/serde-b83883f49ee5ce96/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":2225463790103693989,"path":7332870654301455433,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-b83883f49ee5ce96/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde-b83883f49ee5ce96/dep-build-script-build-script-build b/server/target/debug/.fingerprint/serde-b83883f49ee5ce96/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/serde-b83883f49ee5ce96/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/serde-b83883f49ee5ce96/invoked.timestamp b/server/target/debug/.fingerprint/serde-b83883f49ee5ce96/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/serde-b83883f49ee5ce96/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde-dd2c010b396bfb3d/run-build-script-build-script-build b/server/target/debug/.fingerprint/serde-dd2c010b396bfb3d/run-build-script-build-script-build new file mode 100644 index 0000000..a1da567 --- /dev/null +++ b/server/target/debug/.fingerprint/serde-dd2c010b396bfb3d/run-build-script-build-script-build @@ -0,0 +1 @@ +e0367ba46db7d890 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde-dd2c010b396bfb3d/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/serde-dd2c010b396bfb3d/run-build-script-build-script-build.json new file mode 100644 index 0000000..dfbfe47 --- /dev/null +++ b/server/target/debug/.fingerprint/serde-dd2c010b396bfb3d/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13548984313718623784,"build_script_build",false,821842482092081162]],"local":[{"RerunIfChanged":{"output":"debug/build/serde-dd2c010b396bfb3d/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_core-07f62aa92e7cee58/dep-lib-serde_core b/server/target/debug/.fingerprint/serde_core-07f62aa92e7cee58/dep-lib-serde_core new file mode 100644 index 0000000..d6b30d0 Binary files /dev/null and b/server/target/debug/.fingerprint/serde_core-07f62aa92e7cee58/dep-lib-serde_core differ diff --git a/server/target/debug/.fingerprint/serde_core-07f62aa92e7cee58/invoked.timestamp b/server/target/debug/.fingerprint/serde_core-07f62aa92e7cee58/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/serde_core-07f62aa92e7cee58/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_core-07f62aa92e7cee58/lib-serde_core b/server/target/debug/.fingerprint/serde_core-07f62aa92e7cee58/lib-serde_core new file mode 100644 index 0000000..9df37ee --- /dev/null +++ b/server/target/debug/.fingerprint/serde_core-07f62aa92e7cee58/lib-serde_core @@ -0,0 +1 @@ +4dbc46baea9fd27a \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_core-07f62aa92e7cee58/lib-serde_core.json b/server/target/debug/.fingerprint/serde_core-07f62aa92e7cee58/lib-serde_core.json new file mode 100644 index 0000000..6722f64 --- /dev/null +++ b/server/target/debug/.fingerprint/serde_core-07f62aa92e7cee58/lib-serde_core.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":6810695588070812737,"profile":2241668132362809309,"path":11485337461273312706,"deps":[[11899261697793765154,"build_script_build",false,6895943107009110595]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-07f62aa92e7cee58/dep-lib-serde_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_core-842ae9a69327bc0f/build-script-build-script-build b/server/target/debug/.fingerprint/serde_core-842ae9a69327bc0f/build-script-build-script-build new file mode 100644 index 0000000..d51f2b9 --- /dev/null +++ b/server/target/debug/.fingerprint/serde_core-842ae9a69327bc0f/build-script-build-script-build @@ -0,0 +1 @@ +826a24444fc28d3a \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_core-842ae9a69327bc0f/build-script-build-script-build.json b/server/target/debug/.fingerprint/serde_core-842ae9a69327bc0f/build-script-build-script-build.json new file mode 100644 index 0000000..7232b48 --- /dev/null +++ b/server/target/debug/.fingerprint/serde_core-842ae9a69327bc0f/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":2225463790103693989,"path":5369527400202643844,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-842ae9a69327bc0f/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_core-842ae9a69327bc0f/dep-build-script-build-script-build b/server/target/debug/.fingerprint/serde_core-842ae9a69327bc0f/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/serde_core-842ae9a69327bc0f/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/serde_core-842ae9a69327bc0f/invoked.timestamp b/server/target/debug/.fingerprint/serde_core-842ae9a69327bc0f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/serde_core-842ae9a69327bc0f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_core-a2b0d5857c986c99/run-build-script-build-script-build b/server/target/debug/.fingerprint/serde_core-a2b0d5857c986c99/run-build-script-build-script-build new file mode 100644 index 0000000..b083ac7 --- /dev/null +++ b/server/target/debug/.fingerprint/serde_core-a2b0d5857c986c99/run-build-script-build-script-build @@ -0,0 +1 @@ +43e29434b84fb35f \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_core-a2b0d5857c986c99/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/serde_core-a2b0d5857c986c99/run-build-script-build-script-build.json new file mode 100644 index 0000000..e40982a --- /dev/null +++ b/server/target/debug/.fingerprint/serde_core-a2b0d5857c986c99/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11899261697793765154,"build_script_build",false,4219242071617464962]],"local":[{"RerunIfChanged":{"output":"debug/build/serde_core-a2b0d5857c986c99/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_core-d6815a25a682173f/dep-lib-serde_core b/server/target/debug/.fingerprint/serde_core-d6815a25a682173f/dep-lib-serde_core new file mode 100644 index 0000000..d6b30d0 Binary files /dev/null and b/server/target/debug/.fingerprint/serde_core-d6815a25a682173f/dep-lib-serde_core differ diff --git a/server/target/debug/.fingerprint/serde_core-d6815a25a682173f/invoked.timestamp b/server/target/debug/.fingerprint/serde_core-d6815a25a682173f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/serde_core-d6815a25a682173f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_core-d6815a25a682173f/lib-serde_core b/server/target/debug/.fingerprint/serde_core-d6815a25a682173f/lib-serde_core new file mode 100644 index 0000000..ad2293f --- /dev/null +++ b/server/target/debug/.fingerprint/serde_core-d6815a25a682173f/lib-serde_core @@ -0,0 +1 @@ +d893cf835849b40f \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_core-d6815a25a682173f/lib-serde_core.json b/server/target/debug/.fingerprint/serde_core-d6815a25a682173f/lib-serde_core.json new file mode 100644 index 0000000..86d51ff --- /dev/null +++ b/server/target/debug/.fingerprint/serde_core-d6815a25a682173f/lib-serde_core.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":6810695588070812737,"profile":2225463790103693989,"path":11485337461273312706,"deps":[[11899261697793765154,"build_script_build",false,6895943107009110595]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-d6815a25a682173f/dep-lib-serde_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_derive-6dc42ac9ff14fe0b/dep-lib-serde_derive b/server/target/debug/.fingerprint/serde_derive-6dc42ac9ff14fe0b/dep-lib-serde_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/serde_derive-6dc42ac9ff14fe0b/dep-lib-serde_derive differ diff --git a/server/target/debug/.fingerprint/serde_derive-6dc42ac9ff14fe0b/invoked.timestamp b/server/target/debug/.fingerprint/serde_derive-6dc42ac9ff14fe0b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/serde_derive-6dc42ac9ff14fe0b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_derive-6dc42ac9ff14fe0b/lib-serde_derive b/server/target/debug/.fingerprint/serde_derive-6dc42ac9ff14fe0b/lib-serde_derive new file mode 100644 index 0000000..abb4ebb --- /dev/null +++ b/server/target/debug/.fingerprint/serde_derive-6dc42ac9ff14fe0b/lib-serde_derive @@ -0,0 +1 @@ +28b2b3723ee6fb6c \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_derive-6dc42ac9ff14fe0b/lib-serde_derive.json b/server/target/debug/.fingerprint/serde_derive-6dc42ac9ff14fe0b/lib-serde_derive.json new file mode 100644 index 0000000..98e133a --- /dev/null +++ b/server/target/debug/.fingerprint/serde_derive-6dc42ac9ff14fe0b/lib-serde_derive.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\"]","declared_features":"[\"default\", \"deserialize_in_place\"]","target":13076129734743110817,"profile":2225463790103693989,"path":15460334479034070920,"deps":[[4289358735036141001,"proc_macro2",false,10178310667270251203],[10420560437213941093,"syn",false,16474032542208326673],[13111758008314797071,"quote",false,16220216807289559200]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_derive-6dc42ac9ff14fe0b/dep-lib-serde_derive","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_json-372dae96d9312c69/dep-lib-serde_json b/server/target/debug/.fingerprint/serde_json-372dae96d9312c69/dep-lib-serde_json new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/serde_json-372dae96d9312c69/dep-lib-serde_json differ diff --git a/server/target/debug/.fingerprint/serde_json-372dae96d9312c69/invoked.timestamp b/server/target/debug/.fingerprint/serde_json-372dae96d9312c69/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/serde_json-372dae96d9312c69/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_json-372dae96d9312c69/lib-serde_json b/server/target/debug/.fingerprint/serde_json-372dae96d9312c69/lib-serde_json new file mode 100644 index 0000000..3a6afa2 --- /dev/null +++ b/server/target/debug/.fingerprint/serde_json-372dae96d9312c69/lib-serde_json @@ -0,0 +1 @@ +c18c98165e8a506a \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_json-372dae96d9312c69/lib-serde_json.json b/server/target/debug/.fingerprint/serde_json-372dae96d9312c69/lib-serde_json.json new file mode 100644 index 0000000..5efbd12 --- /dev/null +++ b/server/target/debug/.fingerprint/serde_json-372dae96d9312c69/lib-serde_json.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"arbitrary_precision\", \"default\", \"float_roundtrip\", \"indexmap\", \"preserve_order\", \"raw_value\", \"std\", \"unbounded_depth\"]","target":9592559880233824070,"profile":2241668132362809309,"path":4147831379960815885,"deps":[[1363051979936526615,"memchr",false,9034228811413583865],[5532778797167691009,"itoa",false,3720987438297136726],[11899261697793765154,"serde_core",false,8850312048232807501],[12347024475581975995,"zmij",false,14442169770372392231],[13795362694956882968,"build_script_build",false,10310239442359568652]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_json-372dae96d9312c69/dep-lib-serde_json","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_json-6361a6d06e4c740b/build-script-build-script-build b/server/target/debug/.fingerprint/serde_json-6361a6d06e4c740b/build-script-build-script-build new file mode 100644 index 0000000..89faf56 --- /dev/null +++ b/server/target/debug/.fingerprint/serde_json-6361a6d06e4c740b/build-script-build-script-build @@ -0,0 +1 @@ +4f355a9ad2f31932 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_json-6361a6d06e4c740b/build-script-build-script-build.json b/server/target/debug/.fingerprint/serde_json-6361a6d06e4c740b/build-script-build-script-build.json new file mode 100644 index 0000000..ce04841 --- /dev/null +++ b/server/target/debug/.fingerprint/serde_json-6361a6d06e4c740b/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"arbitrary_precision\", \"default\", \"float_roundtrip\", \"indexmap\", \"preserve_order\", \"raw_value\", \"std\", \"unbounded_depth\"]","target":5408242616063297496,"profile":2225463790103693989,"path":2745554054047725357,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_json-6361a6d06e4c740b/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_json-6361a6d06e4c740b/dep-build-script-build-script-build b/server/target/debug/.fingerprint/serde_json-6361a6d06e4c740b/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/serde_json-6361a6d06e4c740b/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/serde_json-6361a6d06e4c740b/invoked.timestamp b/server/target/debug/.fingerprint/serde_json-6361a6d06e4c740b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/serde_json-6361a6d06e4c740b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_json-9a7e2db8c27659cc/run-build-script-build-script-build b/server/target/debug/.fingerprint/serde_json-9a7e2db8c27659cc/run-build-script-build-script-build new file mode 100644 index 0000000..07a9b1a --- /dev/null +++ b/server/target/debug/.fingerprint/serde_json-9a7e2db8c27659cc/run-build-script-build-script-build @@ -0,0 +1 @@ +0c4910972554158f \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_json-9a7e2db8c27659cc/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/serde_json-9a7e2db8c27659cc/run-build-script-build-script-build.json new file mode 100644 index 0000000..80fdafc --- /dev/null +++ b/server/target/debug/.fingerprint/serde_json-9a7e2db8c27659cc/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13795362694956882968,"build_script_build",false,3610184662172448079]],"local":[{"RerunIfChanged":{"output":"debug/build/serde_json-9a7e2db8c27659cc/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_urlencoded-a80aa6db2c7456fc/dep-lib-serde_urlencoded b/server/target/debug/.fingerprint/serde_urlencoded-a80aa6db2c7456fc/dep-lib-serde_urlencoded new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/serde_urlencoded-a80aa6db2c7456fc/dep-lib-serde_urlencoded differ diff --git a/server/target/debug/.fingerprint/serde_urlencoded-a80aa6db2c7456fc/invoked.timestamp b/server/target/debug/.fingerprint/serde_urlencoded-a80aa6db2c7456fc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/serde_urlencoded-a80aa6db2c7456fc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_urlencoded-a80aa6db2c7456fc/lib-serde_urlencoded b/server/target/debug/.fingerprint/serde_urlencoded-a80aa6db2c7456fc/lib-serde_urlencoded new file mode 100644 index 0000000..4d71cf9 --- /dev/null +++ b/server/target/debug/.fingerprint/serde_urlencoded-a80aa6db2c7456fc/lib-serde_urlencoded @@ -0,0 +1 @@ +1cfb70d27153ecf2 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/serde_urlencoded-a80aa6db2c7456fc/lib-serde_urlencoded.json b/server/target/debug/.fingerprint/serde_urlencoded-a80aa6db2c7456fc/lib-serde_urlencoded.json new file mode 100644 index 0000000..eba84b5 --- /dev/null +++ b/server/target/debug/.fingerprint/serde_urlencoded-a80aa6db2c7456fc/lib-serde_urlencoded.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":13961612944102757082,"profile":2241668132362809309,"path":16910583511199031997,"deps":[[1074175012458081222,"form_urlencoded",false,8112727511342513145],[5532778797167691009,"itoa",false,3720987438297136726],[6400797066282925533,"ryu",false,8631080650340109188],[13548984313718623784,"serde",false,7528466600112811085]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_urlencoded-a80aa6db2c7456fc/dep-lib-serde_urlencoded","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/sha1-3c138eab508fb52f/dep-lib-sha1 b/server/target/debug/.fingerprint/sha1-3c138eab508fb52f/dep-lib-sha1 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/sha1-3c138eab508fb52f/dep-lib-sha1 differ diff --git a/server/target/debug/.fingerprint/sha1-3c138eab508fb52f/invoked.timestamp b/server/target/debug/.fingerprint/sha1-3c138eab508fb52f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/sha1-3c138eab508fb52f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/sha1-3c138eab508fb52f/lib-sha1 b/server/target/debug/.fingerprint/sha1-3c138eab508fb52f/lib-sha1 new file mode 100644 index 0000000..b71df63 --- /dev/null +++ b/server/target/debug/.fingerprint/sha1-3c138eab508fb52f/lib-sha1 @@ -0,0 +1 @@ +dc7ad385f35c8f48 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/sha1-3c138eab508fb52f/lib-sha1.json b/server/target/debug/.fingerprint/sha1-3c138eab508fb52f/lib-sha1.json new file mode 100644 index 0000000..18fd9d6 --- /dev/null +++ b/server/target/debug/.fingerprint/sha1-3c138eab508fb52f/lib-sha1.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"asm\", \"compress\", \"default\", \"force-soft\", \"loongarch64_asm\", \"oid\", \"sha1-asm\", \"std\"]","target":2434896857235101365,"profile":2241668132362809309,"path":12383147093114376276,"deps":[[7667230146095136825,"cfg_if",false,3415395165544656506],[17475753849556516473,"digest",false,8180547201677930044],[17620084158052398167,"cpufeatures",false,5605478229288933943]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/sha1-3c138eab508fb52f/dep-lib-sha1","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/shlex-ce973efa54fd88d8/dep-lib-shlex b/server/target/debug/.fingerprint/shlex-ce973efa54fd88d8/dep-lib-shlex new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/shlex-ce973efa54fd88d8/dep-lib-shlex differ diff --git a/server/target/debug/.fingerprint/shlex-ce973efa54fd88d8/invoked.timestamp b/server/target/debug/.fingerprint/shlex-ce973efa54fd88d8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/shlex-ce973efa54fd88d8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/shlex-ce973efa54fd88d8/lib-shlex b/server/target/debug/.fingerprint/shlex-ce973efa54fd88d8/lib-shlex new file mode 100644 index 0000000..d8c065d --- /dev/null +++ b/server/target/debug/.fingerprint/shlex-ce973efa54fd88d8/lib-shlex @@ -0,0 +1 @@ +038d36652bb98764 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/shlex-ce973efa54fd88d8/lib-shlex.json b/server/target/debug/.fingerprint/shlex-ce973efa54fd88d8/lib-shlex.json new file mode 100644 index 0000000..8ce2fe0 --- /dev/null +++ b/server/target/debug/.fingerprint/shlex-ce973efa54fd88d8/lib-shlex.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":929485496544747924,"profile":2225463790103693989,"path":4793980640917665640,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/shlex-ce973efa54fd88d8/dep-lib-shlex","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/signal-hook-registry-aaa116fc060d4191/dep-lib-signal_hook_registry b/server/target/debug/.fingerprint/signal-hook-registry-aaa116fc060d4191/dep-lib-signal_hook_registry new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/signal-hook-registry-aaa116fc060d4191/dep-lib-signal_hook_registry differ diff --git a/server/target/debug/.fingerprint/signal-hook-registry-aaa116fc060d4191/invoked.timestamp b/server/target/debug/.fingerprint/signal-hook-registry-aaa116fc060d4191/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/signal-hook-registry-aaa116fc060d4191/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/signal-hook-registry-aaa116fc060d4191/lib-signal_hook_registry b/server/target/debug/.fingerprint/signal-hook-registry-aaa116fc060d4191/lib-signal_hook_registry new file mode 100644 index 0000000..191dcdc --- /dev/null +++ b/server/target/debug/.fingerprint/signal-hook-registry-aaa116fc060d4191/lib-signal_hook_registry @@ -0,0 +1 @@ +e3251c2234f67d63 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/signal-hook-registry-aaa116fc060d4191/lib-signal_hook_registry.json b/server/target/debug/.fingerprint/signal-hook-registry-aaa116fc060d4191/lib-signal_hook_registry.json new file mode 100644 index 0000000..5dd0123 --- /dev/null +++ b/server/target/debug/.fingerprint/signal-hook-registry-aaa116fc060d4191/lib-signal_hook_registry.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":17877812014956321412,"profile":10024706962467689494,"path":9380403052051109750,"deps":[[3666973139609465052,"errno",false,10082928172395889703],[12111499963430175700,"libc",false,2814671613317866187]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/signal-hook-registry-aaa116fc060d4191/dep-lib-signal_hook_registry","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/simd-adler32-f782a128a7da4c28/dep-lib-simd_adler32 b/server/target/debug/.fingerprint/simd-adler32-f782a128a7da4c28/dep-lib-simd_adler32 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/simd-adler32-f782a128a7da4c28/dep-lib-simd_adler32 differ diff --git a/server/target/debug/.fingerprint/simd-adler32-f782a128a7da4c28/invoked.timestamp b/server/target/debug/.fingerprint/simd-adler32-f782a128a7da4c28/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/simd-adler32-f782a128a7da4c28/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/simd-adler32-f782a128a7da4c28/lib-simd_adler32 b/server/target/debug/.fingerprint/simd-adler32-f782a128a7da4c28/lib-simd_adler32 new file mode 100644 index 0000000..b3e6734 --- /dev/null +++ b/server/target/debug/.fingerprint/simd-adler32-f782a128a7da4c28/lib-simd_adler32 @@ -0,0 +1 @@ +d67ef75bd49a2d5f \ No newline at end of file diff --git a/server/target/debug/.fingerprint/simd-adler32-f782a128a7da4c28/lib-simd_adler32.json b/server/target/debug/.fingerprint/simd-adler32-f782a128a7da4c28/lib-simd_adler32.json new file mode 100644 index 0000000..91d3440 --- /dev/null +++ b/server/target/debug/.fingerprint/simd-adler32-f782a128a7da4c28/lib-simd_adler32.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"const-generics\", \"default\", \"nightly\", \"std\"]","target":13480744403352105069,"profile":2241668132362809309,"path":12267734418812053341,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/simd-adler32-f782a128a7da4c28/dep-lib-simd_adler32","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/slab-c76132a80a233406/dep-lib-slab b/server/target/debug/.fingerprint/slab-c76132a80a233406/dep-lib-slab new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/slab-c76132a80a233406/dep-lib-slab differ diff --git a/server/target/debug/.fingerprint/slab-c76132a80a233406/invoked.timestamp b/server/target/debug/.fingerprint/slab-c76132a80a233406/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/slab-c76132a80a233406/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/slab-c76132a80a233406/lib-slab b/server/target/debug/.fingerprint/slab-c76132a80a233406/lib-slab new file mode 100644 index 0000000..3c596aa --- /dev/null +++ b/server/target/debug/.fingerprint/slab-c76132a80a233406/lib-slab @@ -0,0 +1 @@ +1ac5071a37f6417c \ No newline at end of file diff --git a/server/target/debug/.fingerprint/slab-c76132a80a233406/lib-slab.json b/server/target/debug/.fingerprint/slab-c76132a80a233406/lib-slab.json new file mode 100644 index 0000000..c86f067 --- /dev/null +++ b/server/target/debug/.fingerprint/slab-c76132a80a233406/lib-slab.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"std\"]","target":7798044754532116308,"profile":2241668132362809309,"path":15466329406283175698,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/slab-c76132a80a233406/dep-lib-slab","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/smallvec-33ecc30efeb3e270/dep-lib-smallvec b/server/target/debug/.fingerprint/smallvec-33ecc30efeb3e270/dep-lib-smallvec new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/smallvec-33ecc30efeb3e270/dep-lib-smallvec differ diff --git a/server/target/debug/.fingerprint/smallvec-33ecc30efeb3e270/invoked.timestamp b/server/target/debug/.fingerprint/smallvec-33ecc30efeb3e270/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/smallvec-33ecc30efeb3e270/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/smallvec-33ecc30efeb3e270/lib-smallvec b/server/target/debug/.fingerprint/smallvec-33ecc30efeb3e270/lib-smallvec new file mode 100644 index 0000000..e7deb2b --- /dev/null +++ b/server/target/debug/.fingerprint/smallvec-33ecc30efeb3e270/lib-smallvec @@ -0,0 +1 @@ +0772ba53d3d32f50 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/smallvec-33ecc30efeb3e270/lib-smallvec.json b/server/target/debug/.fingerprint/smallvec-33ecc30efeb3e270/lib-smallvec.json new file mode 100644 index 0000000..d27a753 --- /dev/null +++ b/server/target/debug/.fingerprint/smallvec-33ecc30efeb3e270/lib-smallvec.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"const_generics\"]","declared_features":"[\"arbitrary\", \"bincode\", \"const_generics\", \"const_new\", \"debugger_visualizer\", \"drain_filter\", \"drain_keep_rest\", \"impl_bincode\", \"malloc_size_of\", \"may_dangle\", \"serde\", \"specialization\", \"union\", \"unty\", \"write\"]","target":9091769176333489034,"profile":2241668132362809309,"path":8935890817182496444,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/smallvec-33ecc30efeb3e270/dep-lib-smallvec","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/socket2-5c6468c58041f61f/dep-lib-socket2 b/server/target/debug/.fingerprint/socket2-5c6468c58041f61f/dep-lib-socket2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/socket2-5c6468c58041f61f/dep-lib-socket2 differ diff --git a/server/target/debug/.fingerprint/socket2-5c6468c58041f61f/invoked.timestamp b/server/target/debug/.fingerprint/socket2-5c6468c58041f61f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/socket2-5c6468c58041f61f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/socket2-5c6468c58041f61f/lib-socket2 b/server/target/debug/.fingerprint/socket2-5c6468c58041f61f/lib-socket2 new file mode 100644 index 0000000..bcfd357 --- /dev/null +++ b/server/target/debug/.fingerprint/socket2-5c6468c58041f61f/lib-socket2 @@ -0,0 +1 @@ +e03a265adc8bc545 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/socket2-5c6468c58041f61f/lib-socket2.json b/server/target/debug/.fingerprint/socket2-5c6468c58041f61f/lib-socket2.json new file mode 100644 index 0000000..306a7ce --- /dev/null +++ b/server/target/debug/.fingerprint/socket2-5c6468c58041f61f/lib-socket2.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"all\"]","target":2270514485357617025,"profile":2241668132362809309,"path":3095997212608162669,"deps":[[12111499963430175700,"libc",false,2814671613317866187]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/socket2-5c6468c58041f61f/dep-lib-socket2","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/socket2-cc1150982e127da5/dep-lib-socket2 b/server/target/debug/.fingerprint/socket2-cc1150982e127da5/dep-lib-socket2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/socket2-cc1150982e127da5/dep-lib-socket2 differ diff --git a/server/target/debug/.fingerprint/socket2-cc1150982e127da5/invoked.timestamp b/server/target/debug/.fingerprint/socket2-cc1150982e127da5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/socket2-cc1150982e127da5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/socket2-cc1150982e127da5/lib-socket2 b/server/target/debug/.fingerprint/socket2-cc1150982e127da5/lib-socket2 new file mode 100644 index 0000000..b633da9 --- /dev/null +++ b/server/target/debug/.fingerprint/socket2-cc1150982e127da5/lib-socket2 @@ -0,0 +1 @@ +162c85f020b9ef0c \ No newline at end of file diff --git a/server/target/debug/.fingerprint/socket2-cc1150982e127da5/lib-socket2.json b/server/target/debug/.fingerprint/socket2-cc1150982e127da5/lib-socket2.json new file mode 100644 index 0000000..f5a479d --- /dev/null +++ b/server/target/debug/.fingerprint/socket2-cc1150982e127da5/lib-socket2.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"all\"]","declared_features":"[\"all\"]","target":2270514485357617025,"profile":2241668132362809309,"path":204419311810839404,"deps":[[12111499963430175700,"libc",false,2814671613317866187]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/socket2-cc1150982e127da5/dep-lib-socket2","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/stable_deref_trait-4338ea27e4f4ee16/dep-lib-stable_deref_trait b/server/target/debug/.fingerprint/stable_deref_trait-4338ea27e4f4ee16/dep-lib-stable_deref_trait new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/stable_deref_trait-4338ea27e4f4ee16/dep-lib-stable_deref_trait differ diff --git a/server/target/debug/.fingerprint/stable_deref_trait-4338ea27e4f4ee16/invoked.timestamp b/server/target/debug/.fingerprint/stable_deref_trait-4338ea27e4f4ee16/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/stable_deref_trait-4338ea27e4f4ee16/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/stable_deref_trait-4338ea27e4f4ee16/lib-stable_deref_trait b/server/target/debug/.fingerprint/stable_deref_trait-4338ea27e4f4ee16/lib-stable_deref_trait new file mode 100644 index 0000000..d1bc911 --- /dev/null +++ b/server/target/debug/.fingerprint/stable_deref_trait-4338ea27e4f4ee16/lib-stable_deref_trait @@ -0,0 +1 @@ +0eae36dcb8b615f4 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/stable_deref_trait-4338ea27e4f4ee16/lib-stable_deref_trait.json b/server/target/debug/.fingerprint/stable_deref_trait-4338ea27e4f4ee16/lib-stable_deref_trait.json new file mode 100644 index 0000000..7a477e6 --- /dev/null +++ b/server/target/debug/.fingerprint/stable_deref_trait-4338ea27e4f4ee16/lib-stable_deref_trait.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":5616890217583455155,"profile":2241668132362809309,"path":13397112291308167043,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/stable_deref_trait-4338ea27e4f4ee16/dep-lib-stable_deref_trait","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/syn-88c9cf438a869065/dep-lib-syn b/server/target/debug/.fingerprint/syn-88c9cf438a869065/dep-lib-syn new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/syn-88c9cf438a869065/dep-lib-syn differ diff --git a/server/target/debug/.fingerprint/syn-88c9cf438a869065/invoked.timestamp b/server/target/debug/.fingerprint/syn-88c9cf438a869065/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/syn-88c9cf438a869065/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/syn-88c9cf438a869065/lib-syn b/server/target/debug/.fingerprint/syn-88c9cf438a869065/lib-syn new file mode 100644 index 0000000..6d8b116 --- /dev/null +++ b/server/target/debug/.fingerprint/syn-88c9cf438a869065/lib-syn @@ -0,0 +1 @@ +117c8d6050859fe4 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/syn-88c9cf438a869065/lib-syn.json b/server/target/debug/.fingerprint/syn-88c9cf438a869065/lib-syn.json new file mode 100644 index 0000000..fecaafa --- /dev/null +++ b/server/target/debug/.fingerprint/syn-88c9cf438a869065/lib-syn.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"visit\", \"visit-mut\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"test\", \"visit\", \"visit-mut\"]","target":9442126953582868550,"profile":2225463790103693989,"path":3719856767789459259,"deps":[[4289358735036141001,"proc_macro2",false,10178310667270251203],[8901712065508858692,"unicode_ident",false,10544093101577960102],[13111758008314797071,"quote",false,16220216807289559200]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/syn-88c9cf438a869065/dep-lib-syn","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/synstructure-444040a19a662d08/dep-lib-synstructure b/server/target/debug/.fingerprint/synstructure-444040a19a662d08/dep-lib-synstructure new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/synstructure-444040a19a662d08/dep-lib-synstructure differ diff --git a/server/target/debug/.fingerprint/synstructure-444040a19a662d08/invoked.timestamp b/server/target/debug/.fingerprint/synstructure-444040a19a662d08/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/synstructure-444040a19a662d08/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/synstructure-444040a19a662d08/lib-synstructure b/server/target/debug/.fingerprint/synstructure-444040a19a662d08/lib-synstructure new file mode 100644 index 0000000..18e703d --- /dev/null +++ b/server/target/debug/.fingerprint/synstructure-444040a19a662d08/lib-synstructure @@ -0,0 +1 @@ +21ec0327d909124f \ No newline at end of file diff --git a/server/target/debug/.fingerprint/synstructure-444040a19a662d08/lib-synstructure.json b/server/target/debug/.fingerprint/synstructure-444040a19a662d08/lib-synstructure.json new file mode 100644 index 0000000..be4c82e --- /dev/null +++ b/server/target/debug/.fingerprint/synstructure-444040a19a662d08/lib-synstructure.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":14291004384071580589,"profile":2225463790103693989,"path":2105051884225636178,"deps":[[4289358735036141001,"proc_macro2",false,10178310667270251203],[10420560437213941093,"syn",false,16474032542208326673],[13111758008314797071,"quote",false,16220216807289559200]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/synstructure-444040a19a662d08/dep-lib-synstructure","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/time-08b4323066e5ba60/dep-lib-time b/server/target/debug/.fingerprint/time-08b4323066e5ba60/dep-lib-time new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/time-08b4323066e5ba60/dep-lib-time differ diff --git a/server/target/debug/.fingerprint/time-08b4323066e5ba60/invoked.timestamp b/server/target/debug/.fingerprint/time-08b4323066e5ba60/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/time-08b4323066e5ba60/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/time-08b4323066e5ba60/lib-time b/server/target/debug/.fingerprint/time-08b4323066e5ba60/lib-time new file mode 100644 index 0000000..f9006ef --- /dev/null +++ b/server/target/debug/.fingerprint/time-08b4323066e5ba60/lib-time @@ -0,0 +1 @@ +a5cb4b2e6d62564e \ No newline at end of file diff --git a/server/target/debug/.fingerprint/time-08b4323066e5ba60/lib-time.json b/server/target/debug/.fingerprint/time-08b4323066e5ba60/lib-time.json new file mode 100644 index 0000000..014749b --- /dev/null +++ b/server/target/debug/.fingerprint/time-08b4323066e5ba60/lib-time.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"alloc\", \"formatting\", \"macros\", \"parsing\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"formatting\", \"large-dates\", \"local-offset\", \"macros\", \"parsing\", \"quickcheck\", \"rand\", \"rand08\", \"rand09\", \"serde\", \"serde-human-readable\", \"serde-well-known\", \"std\", \"wasm-bindgen\"]","target":8476133839300368761,"profile":2263997393868540911,"path":10129802543463484395,"deps":[[5532778797167691009,"itoa",false,3720987438297136726],[5901133744777009488,"powerfmt",false,568158630423938261],[8249548034248209199,"num_conv",false,9183478208151737391],[9889232103266058129,"time_macros",false,13064439660954172646],[15572560757901793625,"time_core",false,15011715088469934643],[17634244132575000293,"deranged",false,18043356612260535812]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/time-08b4323066e5ba60/dep-lib-time","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/time-core-34128e7d4eed9e7c/dep-lib-time_core b/server/target/debug/.fingerprint/time-core-34128e7d4eed9e7c/dep-lib-time_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/time-core-34128e7d4eed9e7c/dep-lib-time_core differ diff --git a/server/target/debug/.fingerprint/time-core-34128e7d4eed9e7c/invoked.timestamp b/server/target/debug/.fingerprint/time-core-34128e7d4eed9e7c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/time-core-34128e7d4eed9e7c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/time-core-34128e7d4eed9e7c/lib-time_core b/server/target/debug/.fingerprint/time-core-34128e7d4eed9e7c/lib-time_core new file mode 100644 index 0000000..cd0e0ac --- /dev/null +++ b/server/target/debug/.fingerprint/time-core-34128e7d4eed9e7c/lib-time_core @@ -0,0 +1 @@ +9be42a7818fea61b \ No newline at end of file diff --git a/server/target/debug/.fingerprint/time-core-34128e7d4eed9e7c/lib-time_core.json b/server/target/debug/.fingerprint/time-core-34128e7d4eed9e7c/lib-time_core.json new file mode 100644 index 0000000..34510cc --- /dev/null +++ b/server/target/debug/.fingerprint/time-core-34128e7d4eed9e7c/lib-time_core.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"large-dates\"]","target":10582047573009931897,"profile":3917305393394401773,"path":16934738816760698346,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/time-core-34128e7d4eed9e7c/dep-lib-time_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/time-core-867d88cbfa098135/dep-lib-time_core b/server/target/debug/.fingerprint/time-core-867d88cbfa098135/dep-lib-time_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/time-core-867d88cbfa098135/dep-lib-time_core differ diff --git a/server/target/debug/.fingerprint/time-core-867d88cbfa098135/invoked.timestamp b/server/target/debug/.fingerprint/time-core-867d88cbfa098135/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/time-core-867d88cbfa098135/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/time-core-867d88cbfa098135/lib-time_core b/server/target/debug/.fingerprint/time-core-867d88cbfa098135/lib-time_core new file mode 100644 index 0000000..0471d4e --- /dev/null +++ b/server/target/debug/.fingerprint/time-core-867d88cbfa098135/lib-time_core @@ -0,0 +1 @@ +33429f65565354d0 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/time-core-867d88cbfa098135/lib-time_core.json b/server/target/debug/.fingerprint/time-core-867d88cbfa098135/lib-time_core.json new file mode 100644 index 0000000..c551f23 --- /dev/null +++ b/server/target/debug/.fingerprint/time-core-867d88cbfa098135/lib-time_core.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"large-dates\"]","target":10582047573009931897,"profile":2263997393868540911,"path":16934738816760698346,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/time-core-867d88cbfa098135/dep-lib-time_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/time-macros-f8715d5ae3617016/dep-lib-time_macros b/server/target/debug/.fingerprint/time-macros-f8715d5ae3617016/dep-lib-time_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/time-macros-f8715d5ae3617016/dep-lib-time_macros differ diff --git a/server/target/debug/.fingerprint/time-macros-f8715d5ae3617016/invoked.timestamp b/server/target/debug/.fingerprint/time-macros-f8715d5ae3617016/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/time-macros-f8715d5ae3617016/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/time-macros-f8715d5ae3617016/lib-time_macros b/server/target/debug/.fingerprint/time-macros-f8715d5ae3617016/lib-time_macros new file mode 100644 index 0000000..6113d68 --- /dev/null +++ b/server/target/debug/.fingerprint/time-macros-f8715d5ae3617016/lib-time_macros @@ -0,0 +1 @@ +e6bcb23ca7364eb5 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/time-macros-f8715d5ae3617016/lib-time_macros.json b/server/target/debug/.fingerprint/time-macros-f8715d5ae3617016/lib-time_macros.json new file mode 100644 index 0000000..0716cec --- /dev/null +++ b/server/target/debug/.fingerprint/time-macros-f8715d5ae3617016/lib-time_macros.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"formatting\", \"parsing\"]","declared_features":"[\"formatting\", \"large-dates\", \"parsing\", \"serde\"]","target":6150452040990090255,"profile":3917305393394401773,"path":7675974952392619086,"deps":[[8249548034248209199,"num_conv",false,14567320416842986836],[15572560757901793625,"time_core",false,1992559266206770331]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/time-macros-f8715d5ae3617016/dep-lib-time_macros","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tinystr-2771ca0d3247b01b/dep-lib-tinystr b/server/target/debug/.fingerprint/tinystr-2771ca0d3247b01b/dep-lib-tinystr new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/tinystr-2771ca0d3247b01b/dep-lib-tinystr differ diff --git a/server/target/debug/.fingerprint/tinystr-2771ca0d3247b01b/invoked.timestamp b/server/target/debug/.fingerprint/tinystr-2771ca0d3247b01b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/tinystr-2771ca0d3247b01b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tinystr-2771ca0d3247b01b/lib-tinystr b/server/target/debug/.fingerprint/tinystr-2771ca0d3247b01b/lib-tinystr new file mode 100644 index 0000000..56f8630 --- /dev/null +++ b/server/target/debug/.fingerprint/tinystr-2771ca0d3247b01b/lib-tinystr @@ -0,0 +1 @@ +6c5383d681a85b83 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tinystr-2771ca0d3247b01b/lib-tinystr.json b/server/target/debug/.fingerprint/tinystr-2771ca0d3247b01b/lib-tinystr.json new file mode 100644 index 0000000..678a091 --- /dev/null +++ b/server/target/debug/.fingerprint/tinystr-2771ca0d3247b01b/lib-tinystr.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"std\", \"zerovec\"]","target":161691779326313357,"profile":15319846033271432293,"path":16481481123883584754,"deps":[[5298260564258778412,"displaydoc",false,9486569632487039336],[9119616491714376884,"zerovec",false,7143538521124184093]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tinystr-2771ca0d3247b01b/dep-lib-tinystr","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tokio-daeaa16a951e0192/dep-lib-tokio b/server/target/debug/.fingerprint/tokio-daeaa16a951e0192/dep-lib-tokio new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/tokio-daeaa16a951e0192/dep-lib-tokio differ diff --git a/server/target/debug/.fingerprint/tokio-daeaa16a951e0192/invoked.timestamp b/server/target/debug/.fingerprint/tokio-daeaa16a951e0192/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/tokio-daeaa16a951e0192/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tokio-daeaa16a951e0192/lib-tokio b/server/target/debug/.fingerprint/tokio-daeaa16a951e0192/lib-tokio new file mode 100644 index 0000000..dcd4738 --- /dev/null +++ b/server/target/debug/.fingerprint/tokio-daeaa16a951e0192/lib-tokio @@ -0,0 +1 @@ +49fe7b2a8f2b740e \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tokio-daeaa16a951e0192/lib-tokio.json b/server/target/debug/.fingerprint/tokio-daeaa16a951e0192/lib-tokio.json new file mode 100644 index 0000000..6e5729d --- /dev/null +++ b/server/target/debug/.fingerprint/tokio-daeaa16a951e0192/lib-tokio.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"bytes\", \"default\", \"fs\", \"full\", \"io-std\", \"io-util\", \"libc\", \"macros\", \"mio\", \"net\", \"parking_lot\", \"process\", \"rt\", \"rt-multi-thread\", \"signal\", \"signal-hook-registry\", \"socket2\", \"sync\", \"time\", \"tokio-macros\"]","declared_features":"[\"bytes\", \"default\", \"fs\", \"full\", \"io-std\", \"io-uring\", \"io-util\", \"libc\", \"macros\", \"mio\", \"net\", \"parking_lot\", \"process\", \"rt\", \"rt-multi-thread\", \"signal\", \"signal-hook-registry\", \"socket2\", \"sync\", \"taskdump\", \"test-util\", \"time\", \"tokio-macros\", \"tracing\", \"windows-sys\"]","target":9605832425414080464,"profile":16115388926700855947,"path":14420077608481367558,"deps":[[260904210593906365,"tokio_macros",false,9619189449854452481],[2251399859588827949,"pin_project_lite",false,15566550207223256564],[3870702314125662939,"bytes",false,16948387749507789063],[5675930438384443948,"mio",false,16711885880016747186],[6684496268350303357,"signal_hook_registry",false,7169156885614700003],[10947645248417156337,"socket2",false,932167199014333462],[12111499963430175700,"libc",false,2814671613317866187],[12459942763388630573,"parking_lot",false,9326536429063467743]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tokio-daeaa16a951e0192/dep-lib-tokio","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tokio-macros-affebf8340ce0c7c/dep-lib-tokio_macros b/server/target/debug/.fingerprint/tokio-macros-affebf8340ce0c7c/dep-lib-tokio_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/tokio-macros-affebf8340ce0c7c/dep-lib-tokio_macros differ diff --git a/server/target/debug/.fingerprint/tokio-macros-affebf8340ce0c7c/invoked.timestamp b/server/target/debug/.fingerprint/tokio-macros-affebf8340ce0c7c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/tokio-macros-affebf8340ce0c7c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tokio-macros-affebf8340ce0c7c/lib-tokio_macros b/server/target/debug/.fingerprint/tokio-macros-affebf8340ce0c7c/lib-tokio_macros new file mode 100644 index 0000000..116f5ac --- /dev/null +++ b/server/target/debug/.fingerprint/tokio-macros-affebf8340ce0c7c/lib-tokio_macros @@ -0,0 +1 @@ +0183c209d7397e85 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tokio-macros-affebf8340ce0c7c/lib-tokio_macros.json b/server/target/debug/.fingerprint/tokio-macros-affebf8340ce0c7c/lib-tokio_macros.json new file mode 100644 index 0000000..865e40a --- /dev/null +++ b/server/target/debug/.fingerprint/tokio-macros-affebf8340ce0c7c/lib-tokio_macros.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":5059940852446330081,"profile":7508124752878485869,"path":1570748510242220779,"deps":[[4289358735036141001,"proc_macro2",false,10178310667270251203],[10420560437213941093,"syn",false,16474032542208326673],[13111758008314797071,"quote",false,16220216807289559200]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tokio-macros-affebf8340ce0c7c/dep-lib-tokio_macros","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tokio-stream-457a4c8da78a1f7a/dep-lib-tokio_stream b/server/target/debug/.fingerprint/tokio-stream-457a4c8da78a1f7a/dep-lib-tokio_stream new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/tokio-stream-457a4c8da78a1f7a/dep-lib-tokio_stream differ diff --git a/server/target/debug/.fingerprint/tokio-stream-457a4c8da78a1f7a/invoked.timestamp b/server/target/debug/.fingerprint/tokio-stream-457a4c8da78a1f7a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/tokio-stream-457a4c8da78a1f7a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tokio-stream-457a4c8da78a1f7a/lib-tokio_stream b/server/target/debug/.fingerprint/tokio-stream-457a4c8da78a1f7a/lib-tokio_stream new file mode 100644 index 0000000..ecd71ca --- /dev/null +++ b/server/target/debug/.fingerprint/tokio-stream-457a4c8da78a1f7a/lib-tokio_stream @@ -0,0 +1 @@ +2a5d32805dce93d5 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tokio-stream-457a4c8da78a1f7a/lib-tokio_stream.json b/server/target/debug/.fingerprint/tokio-stream-457a4c8da78a1f7a/lib-tokio_stream.json new file mode 100644 index 0000000..bc8a070 --- /dev/null +++ b/server/target/debug/.fingerprint/tokio-stream-457a4c8da78a1f7a/lib-tokio_stream.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"time\"]","declared_features":"[\"default\", \"fs\", \"full\", \"io-util\", \"net\", \"signal\", \"sync\", \"time\", \"tokio-util\"]","target":13526430384360234991,"profile":16115388926700855947,"path":16430372782553392777,"deps":[[302948626015856208,"futures_core",false,13411290377882743454],[2251399859588827949,"pin_project_lite",false,15566550207223256564],[17541620359049798014,"tokio",false,1041505307722513993]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tokio-stream-457a4c8da78a1f7a/dep-lib-tokio_stream","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tokio-util-1da6e936d69cb930/dep-lib-tokio_util b/server/target/debug/.fingerprint/tokio-util-1da6e936d69cb930/dep-lib-tokio_util new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/tokio-util-1da6e936d69cb930/dep-lib-tokio_util differ diff --git a/server/target/debug/.fingerprint/tokio-util-1da6e936d69cb930/invoked.timestamp b/server/target/debug/.fingerprint/tokio-util-1da6e936d69cb930/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/tokio-util-1da6e936d69cb930/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tokio-util-1da6e936d69cb930/lib-tokio_util b/server/target/debug/.fingerprint/tokio-util-1da6e936d69cb930/lib-tokio_util new file mode 100644 index 0000000..74f8d50 --- /dev/null +++ b/server/target/debug/.fingerprint/tokio-util-1da6e936d69cb930/lib-tokio_util @@ -0,0 +1 @@ +4c456052208985e9 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tokio-util-1da6e936d69cb930/lib-tokio_util.json b/server/target/debug/.fingerprint/tokio-util-1da6e936d69cb930/lib-tokio_util.json new file mode 100644 index 0000000..767c23d --- /dev/null +++ b/server/target/debug/.fingerprint/tokio-util-1da6e936d69cb930/lib-tokio_util.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"codec\", \"default\", \"futures-util\", \"io\", \"rt\"]","declared_features":"[\"__docs_rs\", \"codec\", \"compat\", \"default\", \"full\", \"futures-io\", \"futures-util\", \"hashbrown\", \"io\", \"io-util\", \"join-map\", \"net\", \"rt\", \"slab\", \"time\", \"tracing\"]","target":17993092506817503379,"profile":16115388926700855947,"path":10874064529844354476,"deps":[[270634688040536827,"futures_sink",false,10518964324922000320],[302948626015856208,"futures_core",false,13411290377882743454],[2251399859588827949,"pin_project_lite",false,15566550207223256564],[3870702314125662939,"bytes",false,16948387749507789063],[5898568623609459682,"futures_util",false,9030658141603746226],[17541620359049798014,"tokio",false,1041505307722513993]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tokio-util-1da6e936d69cb930/dep-lib-tokio_util","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tracing-33c7011246df32e8/dep-lib-tracing b/server/target/debug/.fingerprint/tracing-33c7011246df32e8/dep-lib-tracing new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/tracing-33c7011246df32e8/dep-lib-tracing differ diff --git a/server/target/debug/.fingerprint/tracing-33c7011246df32e8/invoked.timestamp b/server/target/debug/.fingerprint/tracing-33c7011246df32e8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/tracing-33c7011246df32e8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tracing-33c7011246df32e8/lib-tracing b/server/target/debug/.fingerprint/tracing-33c7011246df32e8/lib-tracing new file mode 100644 index 0000000..9c9d98b --- /dev/null +++ b/server/target/debug/.fingerprint/tracing-33c7011246df32e8/lib-tracing @@ -0,0 +1 @@ +a500561fa452a2bf \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tracing-33c7011246df32e8/lib-tracing.json b/server/target/debug/.fingerprint/tracing-33c7011246df32e8/lib-tracing.json new file mode 100644 index 0000000..a2c2103 --- /dev/null +++ b/server/target/debug/.fingerprint/tracing-33c7011246df32e8/lib-tracing.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"log\"]","declared_features":"[\"async-await\", \"attributes\", \"default\", \"log\", \"log-always\", \"max_level_debug\", \"max_level_error\", \"max_level_info\", \"max_level_off\", \"max_level_trace\", \"max_level_warn\", \"release_max_level_debug\", \"release_max_level_error\", \"release_max_level_info\", \"release_max_level_off\", \"release_max_level_trace\", \"release_max_level_warn\", \"std\", \"tracing-attributes\", \"valuable\"]","target":5568135053145998517,"profile":8954976685155339804,"path":16456985915583733735,"deps":[[2251399859588827949,"pin_project_lite",false,8082153210874999569],[10630857666389190470,"log",false,13205754049836920495],[16023452927926505185,"tracing_core",false,11067753378341242885]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tracing-33c7011246df32e8/dep-lib-tracing","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tracing-3979c33161b262f3/dep-lib-tracing b/server/target/debug/.fingerprint/tracing-3979c33161b262f3/dep-lib-tracing new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/tracing-3979c33161b262f3/dep-lib-tracing differ diff --git a/server/target/debug/.fingerprint/tracing-3979c33161b262f3/invoked.timestamp b/server/target/debug/.fingerprint/tracing-3979c33161b262f3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/tracing-3979c33161b262f3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tracing-3979c33161b262f3/lib-tracing b/server/target/debug/.fingerprint/tracing-3979c33161b262f3/lib-tracing new file mode 100644 index 0000000..626a5d0 --- /dev/null +++ b/server/target/debug/.fingerprint/tracing-3979c33161b262f3/lib-tracing @@ -0,0 +1 @@ +6d3351c72d4e4f45 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tracing-3979c33161b262f3/lib-tracing.json b/server/target/debug/.fingerprint/tracing-3979c33161b262f3/lib-tracing.json new file mode 100644 index 0000000..936e9e0 --- /dev/null +++ b/server/target/debug/.fingerprint/tracing-3979c33161b262f3/lib-tracing.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"attributes\", \"default\", \"log\", \"std\", \"tracing-attributes\"]","declared_features":"[\"async-await\", \"attributes\", \"default\", \"log\", \"log-always\", \"max_level_debug\", \"max_level_error\", \"max_level_info\", \"max_level_off\", \"max_level_trace\", \"max_level_warn\", \"release_max_level_debug\", \"release_max_level_error\", \"release_max_level_info\", \"release_max_level_off\", \"release_max_level_trace\", \"release_max_level_warn\", \"std\", \"tracing-attributes\", \"valuable\"]","target":5568135053145998517,"profile":15960269462403795582,"path":16456985915583733735,"deps":[[2251399859588827949,"pin_project_lite",false,15566550207223256564],[5938672567312282946,"tracing_attributes",false,13737547227523344715],[10630857666389190470,"log",false,3024114030112994732],[16023452927926505185,"tracing_core",false,1179856869384899707]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tracing-3979c33161b262f3/dep-lib-tracing","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tracing-attributes-7927744f87d8d978/dep-lib-tracing_attributes b/server/target/debug/.fingerprint/tracing-attributes-7927744f87d8d978/dep-lib-tracing_attributes new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/tracing-attributes-7927744f87d8d978/dep-lib-tracing_attributes differ diff --git a/server/target/debug/.fingerprint/tracing-attributes-7927744f87d8d978/invoked.timestamp b/server/target/debug/.fingerprint/tracing-attributes-7927744f87d8d978/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/tracing-attributes-7927744f87d8d978/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tracing-attributes-7927744f87d8d978/lib-tracing_attributes b/server/target/debug/.fingerprint/tracing-attributes-7927744f87d8d978/lib-tracing_attributes new file mode 100644 index 0000000..b3b4ab7 --- /dev/null +++ b/server/target/debug/.fingerprint/tracing-attributes-7927744f87d8d978/lib-tracing_attributes @@ -0,0 +1 @@ +4b69ae356b92a5be \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tracing-attributes-7927744f87d8d978/lib-tracing_attributes.json b/server/target/debug/.fingerprint/tracing-attributes-7927744f87d8d978/lib-tracing_attributes.json new file mode 100644 index 0000000..b882d80 --- /dev/null +++ b/server/target/debug/.fingerprint/tracing-attributes-7927744f87d8d978/lib-tracing_attributes.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"async-await\"]","target":8647784244936583625,"profile":8954976685155339804,"path":7248729075848846271,"deps":[[4289358735036141001,"proc_macro2",false,10178310667270251203],[10420560437213941093,"syn",false,16474032542208326673],[13111758008314797071,"quote",false,16220216807289559200]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tracing-attributes-7927744f87d8d978/dep-lib-tracing_attributes","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tracing-core-1d9746ace9409443/dep-lib-tracing_core b/server/target/debug/.fingerprint/tracing-core-1d9746ace9409443/dep-lib-tracing_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/tracing-core-1d9746ace9409443/dep-lib-tracing_core differ diff --git a/server/target/debug/.fingerprint/tracing-core-1d9746ace9409443/invoked.timestamp b/server/target/debug/.fingerprint/tracing-core-1d9746ace9409443/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/tracing-core-1d9746ace9409443/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tracing-core-1d9746ace9409443/lib-tracing_core b/server/target/debug/.fingerprint/tracing-core-1d9746ace9409443/lib-tracing_core new file mode 100644 index 0000000..bdb6882 --- /dev/null +++ b/server/target/debug/.fingerprint/tracing-core-1d9746ace9409443/lib-tracing_core @@ -0,0 +1 @@ +05c8a8e10e8f9899 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tracing-core-1d9746ace9409443/lib-tracing_core.json b/server/target/debug/.fingerprint/tracing-core-1d9746ace9409443/lib-tracing_core.json new file mode 100644 index 0000000..14d9201 --- /dev/null +++ b/server/target/debug/.fingerprint/tracing-core-1d9746ace9409443/lib-tracing_core.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"default\", \"once_cell\", \"std\", \"valuable\"]","target":14276081467424924844,"profile":8954976685155339804,"path":6469428265636522075,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tracing-core-1d9746ace9409443/dep-lib-tracing_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tracing-core-2a280d3a91c8c1cf/dep-lib-tracing_core b/server/target/debug/.fingerprint/tracing-core-2a280d3a91c8c1cf/dep-lib-tracing_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/tracing-core-2a280d3a91c8c1cf/dep-lib-tracing_core differ diff --git a/server/target/debug/.fingerprint/tracing-core-2a280d3a91c8c1cf/invoked.timestamp b/server/target/debug/.fingerprint/tracing-core-2a280d3a91c8c1cf/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/tracing-core-2a280d3a91c8c1cf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tracing-core-2a280d3a91c8c1cf/lib-tracing_core b/server/target/debug/.fingerprint/tracing-core-2a280d3a91c8c1cf/lib-tracing_core new file mode 100644 index 0000000..50399da --- /dev/null +++ b/server/target/debug/.fingerprint/tracing-core-2a280d3a91c8c1cf/lib-tracing_core @@ -0,0 +1 @@ +7bcc7d5192b15f10 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/tracing-core-2a280d3a91c8c1cf/lib-tracing_core.json b/server/target/debug/.fingerprint/tracing-core-2a280d3a91c8c1cf/lib-tracing_core.json new file mode 100644 index 0000000..3fc0b2c --- /dev/null +++ b/server/target/debug/.fingerprint/tracing-core-2a280d3a91c8c1cf/lib-tracing_core.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"once_cell\", \"std\"]","declared_features":"[\"default\", \"once_cell\", \"std\", \"valuable\"]","target":14276081467424924844,"profile":15960269462403795582,"path":6469428265636522075,"deps":[[5855319743879205494,"once_cell",false,11127587921477898461]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tracing-core-2a280d3a91c8c1cf/dep-lib-tracing_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/typenum-28d8c72df459a6c5/build-script-build-script-build b/server/target/debug/.fingerprint/typenum-28d8c72df459a6c5/build-script-build-script-build new file mode 100644 index 0000000..74aa521 --- /dev/null +++ b/server/target/debug/.fingerprint/typenum-28d8c72df459a6c5/build-script-build-script-build @@ -0,0 +1 @@ +53c6985f8cd7ad4b \ No newline at end of file diff --git a/server/target/debug/.fingerprint/typenum-28d8c72df459a6c5/build-script-build-script-build.json b/server/target/debug/.fingerprint/typenum-28d8c72df459a6c5/build-script-build-script-build.json new file mode 100644 index 0000000..df50bbc --- /dev/null +++ b/server/target/debug/.fingerprint/typenum-28d8c72df459a6c5/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"const-generics\", \"force_unix_path_separator\", \"i128\", \"no_std\", \"scale-info\", \"scale_info\", \"strict\"]","target":17883862002600103897,"profile":2225463790103693989,"path":5297254799000366754,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/typenum-28d8c72df459a6c5/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/typenum-28d8c72df459a6c5/dep-build-script-build-script-build b/server/target/debug/.fingerprint/typenum-28d8c72df459a6c5/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/typenum-28d8c72df459a6c5/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/typenum-28d8c72df459a6c5/invoked.timestamp b/server/target/debug/.fingerprint/typenum-28d8c72df459a6c5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/typenum-28d8c72df459a6c5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/typenum-c8cc37eb0dbedd4f/dep-lib-typenum b/server/target/debug/.fingerprint/typenum-c8cc37eb0dbedd4f/dep-lib-typenum new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/typenum-c8cc37eb0dbedd4f/dep-lib-typenum differ diff --git a/server/target/debug/.fingerprint/typenum-c8cc37eb0dbedd4f/invoked.timestamp b/server/target/debug/.fingerprint/typenum-c8cc37eb0dbedd4f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/typenum-c8cc37eb0dbedd4f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/typenum-c8cc37eb0dbedd4f/lib-typenum b/server/target/debug/.fingerprint/typenum-c8cc37eb0dbedd4f/lib-typenum new file mode 100644 index 0000000..106f4d7 --- /dev/null +++ b/server/target/debug/.fingerprint/typenum-c8cc37eb0dbedd4f/lib-typenum @@ -0,0 +1 @@ +5207ad6c79d3b7ae \ No newline at end of file diff --git a/server/target/debug/.fingerprint/typenum-c8cc37eb0dbedd4f/lib-typenum.json b/server/target/debug/.fingerprint/typenum-c8cc37eb0dbedd4f/lib-typenum.json new file mode 100644 index 0000000..52f4d0b --- /dev/null +++ b/server/target/debug/.fingerprint/typenum-c8cc37eb0dbedd4f/lib-typenum.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"const-generics\", \"force_unix_path_separator\", \"i128\", \"no_std\", \"scale-info\", \"scale_info\", \"strict\"]","target":2349969882102649915,"profile":2241668132362809309,"path":4056763161950257796,"deps":[[857979250431893282,"build_script_build",false,3409515637038245550]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/typenum-c8cc37eb0dbedd4f/dep-lib-typenum","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/typenum-fd2774ff4866da18/run-build-script-build-script-build b/server/target/debug/.fingerprint/typenum-fd2774ff4866da18/run-build-script-build-script-build new file mode 100644 index 0000000..b23c3e2 --- /dev/null +++ b/server/target/debug/.fingerprint/typenum-fd2774ff4866da18/run-build-script-build-script-build @@ -0,0 +1 @@ +aee6cd516808512f \ No newline at end of file diff --git a/server/target/debug/.fingerprint/typenum-fd2774ff4866da18/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/typenum-fd2774ff4866da18/run-build-script-build-script-build.json new file mode 100644 index 0000000..4076377 --- /dev/null +++ b/server/target/debug/.fingerprint/typenum-fd2774ff4866da18/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[857979250431893282,"build_script_build",false,5453251721714779731]],"local":[{"RerunIfChanged":{"output":"debug/build/typenum-fd2774ff4866da18/output","paths":["tests"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/unicase-3ac36185b62d69ed/dep-lib-unicase b/server/target/debug/.fingerprint/unicase-3ac36185b62d69ed/dep-lib-unicase new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/unicase-3ac36185b62d69ed/dep-lib-unicase differ diff --git a/server/target/debug/.fingerprint/unicase-3ac36185b62d69ed/invoked.timestamp b/server/target/debug/.fingerprint/unicase-3ac36185b62d69ed/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/unicase-3ac36185b62d69ed/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/unicase-3ac36185b62d69ed/lib-unicase b/server/target/debug/.fingerprint/unicase-3ac36185b62d69ed/lib-unicase new file mode 100644 index 0000000..ce9d567 --- /dev/null +++ b/server/target/debug/.fingerprint/unicase-3ac36185b62d69ed/lib-unicase @@ -0,0 +1 @@ +0d1cf7b6cb10b07c \ No newline at end of file diff --git a/server/target/debug/.fingerprint/unicase-3ac36185b62d69ed/lib-unicase.json b/server/target/debug/.fingerprint/unicase-3ac36185b62d69ed/lib-unicase.json new file mode 100644 index 0000000..860aba5 --- /dev/null +++ b/server/target/debug/.fingerprint/unicase-3ac36185b62d69ed/lib-unicase.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"nightly\"]","target":10111812390214232954,"profile":2225463790103693989,"path":17196880057663711032,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicase-3ac36185b62d69ed/dep-lib-unicase","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/unicase-9b2ded610a622a12/dep-lib-unicase b/server/target/debug/.fingerprint/unicase-9b2ded610a622a12/dep-lib-unicase new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/unicase-9b2ded610a622a12/dep-lib-unicase differ diff --git a/server/target/debug/.fingerprint/unicase-9b2ded610a622a12/invoked.timestamp b/server/target/debug/.fingerprint/unicase-9b2ded610a622a12/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/unicase-9b2ded610a622a12/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/unicase-9b2ded610a622a12/lib-unicase b/server/target/debug/.fingerprint/unicase-9b2ded610a622a12/lib-unicase new file mode 100644 index 0000000..4b75509 --- /dev/null +++ b/server/target/debug/.fingerprint/unicase-9b2ded610a622a12/lib-unicase @@ -0,0 +1 @@ +448e21876698fc16 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/unicase-9b2ded610a622a12/lib-unicase.json b/server/target/debug/.fingerprint/unicase-9b2ded610a622a12/lib-unicase.json new file mode 100644 index 0000000..2986f2c --- /dev/null +++ b/server/target/debug/.fingerprint/unicase-9b2ded610a622a12/lib-unicase.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"nightly\"]","target":10111812390214232954,"profile":2241668132362809309,"path":17196880057663711032,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicase-9b2ded610a622a12/dep-lib-unicase","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/unicode-ident-a43390fd6bef71db/dep-lib-unicode_ident b/server/target/debug/.fingerprint/unicode-ident-a43390fd6bef71db/dep-lib-unicode_ident new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/unicode-ident-a43390fd6bef71db/dep-lib-unicode_ident differ diff --git a/server/target/debug/.fingerprint/unicode-ident-a43390fd6bef71db/invoked.timestamp b/server/target/debug/.fingerprint/unicode-ident-a43390fd6bef71db/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/unicode-ident-a43390fd6bef71db/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/unicode-ident-a43390fd6bef71db/lib-unicode_ident b/server/target/debug/.fingerprint/unicode-ident-a43390fd6bef71db/lib-unicode_ident new file mode 100644 index 0000000..234bc5d --- /dev/null +++ b/server/target/debug/.fingerprint/unicode-ident-a43390fd6bef71db/lib-unicode_ident @@ -0,0 +1 @@ +a67a3396cf245492 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/unicode-ident-a43390fd6bef71db/lib-unicode_ident.json b/server/target/debug/.fingerprint/unicode-ident-a43390fd6bef71db/lib-unicode_ident.json new file mode 100644 index 0000000..f4f2f7c --- /dev/null +++ b/server/target/debug/.fingerprint/unicode-ident-a43390fd6bef71db/lib-unicode_ident.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":14045917370260632744,"profile":2225463790103693989,"path":260669985755860166,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-ident-a43390fd6bef71db/dep-lib-unicode_ident","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/unicode-segmentation-7ba902d172d5e12b/dep-lib-unicode_segmentation b/server/target/debug/.fingerprint/unicode-segmentation-7ba902d172d5e12b/dep-lib-unicode_segmentation new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/unicode-segmentation-7ba902d172d5e12b/dep-lib-unicode_segmentation differ diff --git a/server/target/debug/.fingerprint/unicode-segmentation-7ba902d172d5e12b/invoked.timestamp b/server/target/debug/.fingerprint/unicode-segmentation-7ba902d172d5e12b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/unicode-segmentation-7ba902d172d5e12b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/unicode-segmentation-7ba902d172d5e12b/lib-unicode_segmentation b/server/target/debug/.fingerprint/unicode-segmentation-7ba902d172d5e12b/lib-unicode_segmentation new file mode 100644 index 0000000..db307e5 --- /dev/null +++ b/server/target/debug/.fingerprint/unicode-segmentation-7ba902d172d5e12b/lib-unicode_segmentation @@ -0,0 +1 @@ +c264516a7b19d18c \ No newline at end of file diff --git a/server/target/debug/.fingerprint/unicode-segmentation-7ba902d172d5e12b/lib-unicode_segmentation.json b/server/target/debug/.fingerprint/unicode-segmentation-7ba902d172d5e12b/lib-unicode_segmentation.json new file mode 100644 index 0000000..1ca6c59 --- /dev/null +++ b/server/target/debug/.fingerprint/unicode-segmentation-7ba902d172d5e12b/lib-unicode_segmentation.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"no_std\"]","target":14369684853076716314,"profile":2225463790103693989,"path":10373855281946187666,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-segmentation-7ba902d172d5e12b/dep-lib-unicode_segmentation","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/unicode-xid-a1c81d0ca4d32902/dep-lib-unicode_xid b/server/target/debug/.fingerprint/unicode-xid-a1c81d0ca4d32902/dep-lib-unicode_xid new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/unicode-xid-a1c81d0ca4d32902/dep-lib-unicode_xid differ diff --git a/server/target/debug/.fingerprint/unicode-xid-a1c81d0ca4d32902/invoked.timestamp b/server/target/debug/.fingerprint/unicode-xid-a1c81d0ca4d32902/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/unicode-xid-a1c81d0ca4d32902/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/unicode-xid-a1c81d0ca4d32902/lib-unicode_xid b/server/target/debug/.fingerprint/unicode-xid-a1c81d0ca4d32902/lib-unicode_xid new file mode 100644 index 0000000..c14f6ab --- /dev/null +++ b/server/target/debug/.fingerprint/unicode-xid-a1c81d0ca4d32902/lib-unicode_xid @@ -0,0 +1 @@ +2af6f48554b860ea \ No newline at end of file diff --git a/server/target/debug/.fingerprint/unicode-xid-a1c81d0ca4d32902/lib-unicode_xid.json b/server/target/debug/.fingerprint/unicode-xid-a1c81d0ca4d32902/lib-unicode_xid.json new file mode 100644 index 0000000..aa9b808 --- /dev/null +++ b/server/target/debug/.fingerprint/unicode-xid-a1c81d0ca4d32902/lib-unicode_xid.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\"]","declared_features":"[\"bench\", \"default\", \"no_std\"]","target":5619579867478607190,"profile":2225463790103693989,"path":15574355250332420430,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-xid-a1c81d0ca4d32902/dep-lib-unicode_xid","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/url-05f4306a81909a21/dep-lib-url b/server/target/debug/.fingerprint/url-05f4306a81909a21/dep-lib-url new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/url-05f4306a81909a21/dep-lib-url differ diff --git a/server/target/debug/.fingerprint/url-05f4306a81909a21/invoked.timestamp b/server/target/debug/.fingerprint/url-05f4306a81909a21/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/url-05f4306a81909a21/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/url-05f4306a81909a21/lib-url b/server/target/debug/.fingerprint/url-05f4306a81909a21/lib-url new file mode 100644 index 0000000..c85cc79 --- /dev/null +++ b/server/target/debug/.fingerprint/url-05f4306a81909a21/lib-url @@ -0,0 +1 @@ +2f8dd56bfc5c3e1c \ No newline at end of file diff --git a/server/target/debug/.fingerprint/url-05f4306a81909a21/lib-url.json b/server/target/debug/.fingerprint/url-05f4306a81909a21/lib-url.json new file mode 100644 index 0000000..1f47832 --- /dev/null +++ b/server/target/debug/.fingerprint/url-05f4306a81909a21/lib-url.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"std\"]","declared_features":"[\"debugger_visualizer\", \"default\", \"expose_internals\", \"serde\", \"std\"]","target":7686100221094031937,"profile":2241668132362809309,"path":874324455951741278,"deps":[[1074175012458081222,"form_urlencoded",false,8112727511342513145],[6159443412421938570,"idna",false,10711445706402425280],[6803352382179706244,"percent_encoding",false,12394381217160922707]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/url-05f4306a81909a21/dep-lib-url","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/utf8_iter-2688cebfb14d9ed1/dep-lib-utf8_iter b/server/target/debug/.fingerprint/utf8_iter-2688cebfb14d9ed1/dep-lib-utf8_iter new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/utf8_iter-2688cebfb14d9ed1/dep-lib-utf8_iter differ diff --git a/server/target/debug/.fingerprint/utf8_iter-2688cebfb14d9ed1/invoked.timestamp b/server/target/debug/.fingerprint/utf8_iter-2688cebfb14d9ed1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/utf8_iter-2688cebfb14d9ed1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/utf8_iter-2688cebfb14d9ed1/lib-utf8_iter b/server/target/debug/.fingerprint/utf8_iter-2688cebfb14d9ed1/lib-utf8_iter new file mode 100644 index 0000000..bbc01a8 --- /dev/null +++ b/server/target/debug/.fingerprint/utf8_iter-2688cebfb14d9ed1/lib-utf8_iter @@ -0,0 +1 @@ +33e9a50a10541805 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/utf8_iter-2688cebfb14d9ed1/lib-utf8_iter.json b/server/target/debug/.fingerprint/utf8_iter-2688cebfb14d9ed1/lib-utf8_iter.json new file mode 100644 index 0000000..d414af2 --- /dev/null +++ b/server/target/debug/.fingerprint/utf8_iter-2688cebfb14d9ed1/lib-utf8_iter.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":6216520282702351879,"profile":2241668132362809309,"path":13959967405002904146,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/utf8_iter-2688cebfb14d9ed1/dep-lib-utf8_iter","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/utf8parse-a3c57471a0fdc5c4/dep-lib-utf8parse b/server/target/debug/.fingerprint/utf8parse-a3c57471a0fdc5c4/dep-lib-utf8parse new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/utf8parse-a3c57471a0fdc5c4/dep-lib-utf8parse differ diff --git a/server/target/debug/.fingerprint/utf8parse-a3c57471a0fdc5c4/invoked.timestamp b/server/target/debug/.fingerprint/utf8parse-a3c57471a0fdc5c4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/utf8parse-a3c57471a0fdc5c4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/utf8parse-a3c57471a0fdc5c4/lib-utf8parse b/server/target/debug/.fingerprint/utf8parse-a3c57471a0fdc5c4/lib-utf8parse new file mode 100644 index 0000000..f7f8a88 --- /dev/null +++ b/server/target/debug/.fingerprint/utf8parse-a3c57471a0fdc5c4/lib-utf8parse @@ -0,0 +1 @@ +4053fec4a2493d06 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/utf8parse-a3c57471a0fdc5c4/lib-utf8parse.json b/server/target/debug/.fingerprint/utf8parse-a3c57471a0fdc5c4/lib-utf8parse.json new file mode 100644 index 0000000..9486aec --- /dev/null +++ b/server/target/debug/.fingerprint/utf8parse-a3c57471a0fdc5c4/lib-utf8parse.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\"]","declared_features":"[\"default\", \"nightly\"]","target":13040855110431087744,"profile":2241668132362809309,"path":11136382967599083791,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/utf8parse-a3c57471a0fdc5c4/dep-lib-utf8parse","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/uuid-974f19b8bc788ee8/dep-lib-uuid b/server/target/debug/.fingerprint/uuid-974f19b8bc788ee8/dep-lib-uuid new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/uuid-974f19b8bc788ee8/dep-lib-uuid differ diff --git a/server/target/debug/.fingerprint/uuid-974f19b8bc788ee8/invoked.timestamp b/server/target/debug/.fingerprint/uuid-974f19b8bc788ee8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/uuid-974f19b8bc788ee8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/uuid-974f19b8bc788ee8/lib-uuid b/server/target/debug/.fingerprint/uuid-974f19b8bc788ee8/lib-uuid new file mode 100644 index 0000000..6a82186 --- /dev/null +++ b/server/target/debug/.fingerprint/uuid-974f19b8bc788ee8/lib-uuid @@ -0,0 +1 @@ +4d8bc4f471d97545 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/uuid-974f19b8bc788ee8/lib-uuid.json b/server/target/debug/.fingerprint/uuid-974f19b8bc788ee8/lib-uuid.json new file mode 100644 index 0000000..618c100 --- /dev/null +++ b/server/target/debug/.fingerprint/uuid-974f19b8bc788ee8/lib-uuid.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"default\", \"rng\", \"serde\", \"std\", \"v4\"]","declared_features":"[\"arbitrary\", \"atomic\", \"borsh\", \"bytemuck\", \"default\", \"fast-rng\", \"js\", \"macro-diagnostics\", \"md5\", \"rng\", \"rng-getrandom\", \"rng-rand\", \"serde\", \"sha1\", \"slog\", \"std\", \"uuid-rng-internal-lib\", \"v1\", \"v3\", \"v4\", \"v5\", \"v6\", \"v7\", \"v8\", \"zerocopy\"]","target":2422778461497348360,"profile":13283718623888339653,"path":6834423253034629428,"deps":[[6509165896255665847,"getrandom",false,1382537094985832756],[11899261697793765154,"serde_core",false,8850312048232807501]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/uuid-974f19b8bc788ee8/dep-lib-uuid","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/v_htmlescape-0f067229ea331099/dep-lib-v_htmlescape b/server/target/debug/.fingerprint/v_htmlescape-0f067229ea331099/dep-lib-v_htmlescape new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/v_htmlescape-0f067229ea331099/dep-lib-v_htmlescape differ diff --git a/server/target/debug/.fingerprint/v_htmlescape-0f067229ea331099/invoked.timestamp b/server/target/debug/.fingerprint/v_htmlescape-0f067229ea331099/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/v_htmlescape-0f067229ea331099/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/v_htmlescape-0f067229ea331099/lib-v_htmlescape b/server/target/debug/.fingerprint/v_htmlescape-0f067229ea331099/lib-v_htmlescape new file mode 100644 index 0000000..b834144 --- /dev/null +++ b/server/target/debug/.fingerprint/v_htmlescape-0f067229ea331099/lib-v_htmlescape @@ -0,0 +1 @@ +bd563b1934eea555 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/v_htmlescape-0f067229ea331099/lib-v_htmlescape.json b/server/target/debug/.fingerprint/v_htmlescape-0f067229ea331099/lib-v_htmlescape.json new file mode 100644 index 0000000..17b3938 --- /dev/null +++ b/server/target/debug/.fingerprint/v_htmlescape-0f067229ea331099/lib-v_htmlescape.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"buf-min\", \"bytes-buf\"]","target":12078619661417248044,"profile":2241668132362809309,"path":9491968593490656532,"deps":[[14335890238902064286,"build_script_build",false,3041150960606918015]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/v_htmlescape-0f067229ea331099/dep-lib-v_htmlescape","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/v_htmlescape-26c216c7210c5da7/build-script-build-script-build b/server/target/debug/.fingerprint/v_htmlescape-26c216c7210c5da7/build-script-build-script-build new file mode 100644 index 0000000..7815e28 --- /dev/null +++ b/server/target/debug/.fingerprint/v_htmlescape-26c216c7210c5da7/build-script-build-script-build @@ -0,0 +1 @@ +2d71d53a4e8e3774 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/v_htmlescape-26c216c7210c5da7/build-script-build-script-build.json b/server/target/debug/.fingerprint/v_htmlescape-26c216c7210c5da7/build-script-build-script-build.json new file mode 100644 index 0000000..bcdb190 --- /dev/null +++ b/server/target/debug/.fingerprint/v_htmlescape-26c216c7210c5da7/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"buf-min\", \"bytes-buf\"]","target":5408242616063297496,"profile":2225463790103693989,"path":12835039127737618187,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/v_htmlescape-26c216c7210c5da7/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/v_htmlescape-26c216c7210c5da7/dep-build-script-build-script-build b/server/target/debug/.fingerprint/v_htmlescape-26c216c7210c5da7/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/v_htmlescape-26c216c7210c5da7/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/v_htmlescape-26c216c7210c5da7/invoked.timestamp b/server/target/debug/.fingerprint/v_htmlescape-26c216c7210c5da7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/v_htmlescape-26c216c7210c5da7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/v_htmlescape-59780b0c286eef8d/run-build-script-build-script-build b/server/target/debug/.fingerprint/v_htmlescape-59780b0c286eef8d/run-build-script-build-script-build new file mode 100644 index 0000000..42f7da1 --- /dev/null +++ b/server/target/debug/.fingerprint/v_htmlescape-59780b0c286eef8d/run-build-script-build-script-build @@ -0,0 +1 @@ +7f35509baf56342a \ No newline at end of file diff --git a/server/target/debug/.fingerprint/v_htmlescape-59780b0c286eef8d/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/v_htmlescape-59780b0c286eef8d/run-build-script-build-script-build.json new file mode 100644 index 0000000..329b602 --- /dev/null +++ b/server/target/debug/.fingerprint/v_htmlescape-59780b0c286eef8d/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[14335890238902064286,"build_script_build",false,8374318498764386605]],"local":[{"Precalculated":"0.15.8"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/version_check-9859fe56c2d7fed0/dep-lib-version_check b/server/target/debug/.fingerprint/version_check-9859fe56c2d7fed0/dep-lib-version_check new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/version_check-9859fe56c2d7fed0/dep-lib-version_check differ diff --git a/server/target/debug/.fingerprint/version_check-9859fe56c2d7fed0/invoked.timestamp b/server/target/debug/.fingerprint/version_check-9859fe56c2d7fed0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/version_check-9859fe56c2d7fed0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/version_check-9859fe56c2d7fed0/lib-version_check b/server/target/debug/.fingerprint/version_check-9859fe56c2d7fed0/lib-version_check new file mode 100644 index 0000000..72fb585 --- /dev/null +++ b/server/target/debug/.fingerprint/version_check-9859fe56c2d7fed0/lib-version_check @@ -0,0 +1 @@ +e4eb8c10c4ac95df \ No newline at end of file diff --git a/server/target/debug/.fingerprint/version_check-9859fe56c2d7fed0/lib-version_check.json b/server/target/debug/.fingerprint/version_check-9859fe56c2d7fed0/lib-version_check.json new file mode 100644 index 0000000..87046f9 --- /dev/null +++ b/server/target/debug/.fingerprint/version_check-9859fe56c2d7fed0/lib-version_check.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":18099224280402537651,"profile":2225463790103693989,"path":7959040289878139273,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/version_check-9859fe56c2d7fed0/dep-lib-version_check","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/writeable-fae44dae67a10c43/dep-lib-writeable b/server/target/debug/.fingerprint/writeable-fae44dae67a10c43/dep-lib-writeable new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/writeable-fae44dae67a10c43/dep-lib-writeable differ diff --git a/server/target/debug/.fingerprint/writeable-fae44dae67a10c43/invoked.timestamp b/server/target/debug/.fingerprint/writeable-fae44dae67a10c43/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/writeable-fae44dae67a10c43/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/writeable-fae44dae67a10c43/lib-writeable b/server/target/debug/.fingerprint/writeable-fae44dae67a10c43/lib-writeable new file mode 100644 index 0000000..58b661b --- /dev/null +++ b/server/target/debug/.fingerprint/writeable-fae44dae67a10c43/lib-writeable @@ -0,0 +1 @@ +d0f3cb09b0acb583 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/writeable-fae44dae67a10c43/lib-writeable.json b/server/target/debug/.fingerprint/writeable-fae44dae67a10c43/lib-writeable.json new file mode 100644 index 0000000..ecf6fae --- /dev/null +++ b/server/target/debug/.fingerprint/writeable-fae44dae67a10c43/lib-writeable.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"alloc\", \"default\", \"either\"]","target":6209224040855486982,"profile":15319846033271432293,"path":14264553183218642398,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/writeable-fae44dae67a10c43/dep-lib-writeable","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/yoke-derive-b286261b91a18942/dep-lib-yoke_derive b/server/target/debug/.fingerprint/yoke-derive-b286261b91a18942/dep-lib-yoke_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/yoke-derive-b286261b91a18942/dep-lib-yoke_derive differ diff --git a/server/target/debug/.fingerprint/yoke-derive-b286261b91a18942/invoked.timestamp b/server/target/debug/.fingerprint/yoke-derive-b286261b91a18942/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/yoke-derive-b286261b91a18942/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/yoke-derive-b286261b91a18942/lib-yoke_derive b/server/target/debug/.fingerprint/yoke-derive-b286261b91a18942/lib-yoke_derive new file mode 100644 index 0000000..b1abab4 --- /dev/null +++ b/server/target/debug/.fingerprint/yoke-derive-b286261b91a18942/lib-yoke_derive @@ -0,0 +1 @@ +7a768ac71c74fefb \ No newline at end of file diff --git a/server/target/debug/.fingerprint/yoke-derive-b286261b91a18942/lib-yoke_derive.json b/server/target/debug/.fingerprint/yoke-derive-b286261b91a18942/lib-yoke_derive.json new file mode 100644 index 0000000..8c07208 --- /dev/null +++ b/server/target/debug/.fingerprint/yoke-derive-b286261b91a18942/lib-yoke_derive.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":1654536213780382264,"profile":17177036626609572155,"path":4719639198901670253,"deps":[[4289358735036141001,"proc_macro2",false,10178310667270251203],[4621990586401870511,"synstructure",false,5697627306844220449],[10420560437213941093,"syn",false,16474032542208326673],[13111758008314797071,"quote",false,16220216807289559200]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/yoke-derive-b286261b91a18942/dep-lib-yoke_derive","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/yoke-e037e3c224864b94/dep-lib-yoke b/server/target/debug/.fingerprint/yoke-e037e3c224864b94/dep-lib-yoke new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/yoke-e037e3c224864b94/dep-lib-yoke differ diff --git a/server/target/debug/.fingerprint/yoke-e037e3c224864b94/invoked.timestamp b/server/target/debug/.fingerprint/yoke-e037e3c224864b94/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/yoke-e037e3c224864b94/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/yoke-e037e3c224864b94/lib-yoke b/server/target/debug/.fingerprint/yoke-e037e3c224864b94/lib-yoke new file mode 100644 index 0000000..07c403e --- /dev/null +++ b/server/target/debug/.fingerprint/yoke-e037e3c224864b94/lib-yoke @@ -0,0 +1 @@ +a3d5fac43745ef22 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/yoke-e037e3c224864b94/lib-yoke.json b/server/target/debug/.fingerprint/yoke-e037e3c224864b94/lib-yoke.json new file mode 100644 index 0000000..4763fcb --- /dev/null +++ b/server/target/debug/.fingerprint/yoke-e037e3c224864b94/lib-yoke.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"derive\", \"zerofrom\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"serde\", \"zerofrom\"]","target":11250006364125496299,"profile":15319846033271432293,"path":9554630665912584034,"deps":[[12669569555400633618,"stable_deref_trait",false,17588164824850148878],[12771427830955461916,"zerofrom",false,14996317217188502111],[16311920433940660851,"yoke_derive",false,18158078414560065146]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/yoke-e037e3c224864b94/dep-lib-yoke","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerocopy-140e0db8661c6d51/dep-lib-zerocopy b/server/target/debug/.fingerprint/zerocopy-140e0db8661c6d51/dep-lib-zerocopy new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/zerocopy-140e0db8661c6d51/dep-lib-zerocopy differ diff --git a/server/target/debug/.fingerprint/zerocopy-140e0db8661c6d51/invoked.timestamp b/server/target/debug/.fingerprint/zerocopy-140e0db8661c6d51/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/zerocopy-140e0db8661c6d51/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerocopy-140e0db8661c6d51/lib-zerocopy b/server/target/debug/.fingerprint/zerocopy-140e0db8661c6d51/lib-zerocopy new file mode 100644 index 0000000..f16cf8c --- /dev/null +++ b/server/target/debug/.fingerprint/zerocopy-140e0db8661c6d51/lib-zerocopy @@ -0,0 +1 @@ +195b0e026262f7cf \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerocopy-140e0db8661c6d51/lib-zerocopy.json b/server/target/debug/.fingerprint/zerocopy-140e0db8661c6d51/lib-zerocopy.json new file mode 100644 index 0000000..eab301e --- /dev/null +++ b/server/target/debug/.fingerprint/zerocopy-140e0db8661c6d51/lib-zerocopy.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":3084901215544504908,"profile":2241668132362809309,"path":11862086354562390565,"deps":[[3612005756660025491,"build_script_build",false,5911999774266610278]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerocopy-140e0db8661c6d51/dep-lib-zerocopy","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerocopy-15ba195706a2ef69/run-build-script-build-script-build b/server/target/debug/.fingerprint/zerocopy-15ba195706a2ef69/run-build-script-build-script-build new file mode 100644 index 0000000..4a284a3 --- /dev/null +++ b/server/target/debug/.fingerprint/zerocopy-15ba195706a2ef69/run-build-script-build-script-build @@ -0,0 +1 @@ +66d259b978a40b52 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerocopy-15ba195706a2ef69/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/zerocopy-15ba195706a2ef69/run-build-script-build-script-build.json new file mode 100644 index 0000000..1f0df15 --- /dev/null +++ b/server/target/debug/.fingerprint/zerocopy-15ba195706a2ef69/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[3612005756660025491,"build_script_build",false,9729076233601730504]],"local":[{"RerunIfChanged":{"output":"debug/build/zerocopy-15ba195706a2ef69/output","paths":["build.rs","Cargo.toml"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerocopy-1bccde087d058d8e/build-script-build-script-build b/server/target/debug/.fingerprint/zerocopy-1bccde087d058d8e/build-script-build-script-build new file mode 100644 index 0000000..e8d8f1e --- /dev/null +++ b/server/target/debug/.fingerprint/zerocopy-1bccde087d058d8e/build-script-build-script-build @@ -0,0 +1 @@ +c8c786a0499f0487 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerocopy-1bccde087d058d8e/build-script-build-script-build.json b/server/target/debug/.fingerprint/zerocopy-1bccde087d058d8e/build-script-build-script-build.json new file mode 100644 index 0000000..9b3a5ea --- /dev/null +++ b/server/target/debug/.fingerprint/zerocopy-1bccde087d058d8e/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":5408242616063297496,"profile":2225463790103693989,"path":17690241356587902086,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerocopy-1bccde087d058d8e/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerocopy-1bccde087d058d8e/dep-build-script-build-script-build b/server/target/debug/.fingerprint/zerocopy-1bccde087d058d8e/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/zerocopy-1bccde087d058d8e/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/zerocopy-1bccde087d058d8e/invoked.timestamp b/server/target/debug/.fingerprint/zerocopy-1bccde087d058d8e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/zerocopy-1bccde087d058d8e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerofrom-8dbd1d50b3509f2f/dep-lib-zerofrom b/server/target/debug/.fingerprint/zerofrom-8dbd1d50b3509f2f/dep-lib-zerofrom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/zerofrom-8dbd1d50b3509f2f/dep-lib-zerofrom differ diff --git a/server/target/debug/.fingerprint/zerofrom-8dbd1d50b3509f2f/invoked.timestamp b/server/target/debug/.fingerprint/zerofrom-8dbd1d50b3509f2f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/zerofrom-8dbd1d50b3509f2f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerofrom-8dbd1d50b3509f2f/lib-zerofrom b/server/target/debug/.fingerprint/zerofrom-8dbd1d50b3509f2f/lib-zerofrom new file mode 100644 index 0000000..2d21f4a --- /dev/null +++ b/server/target/debug/.fingerprint/zerofrom-8dbd1d50b3509f2f/lib-zerofrom @@ -0,0 +1 @@ +5f5a981d0e9f1dd0 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerofrom-8dbd1d50b3509f2f/lib-zerofrom.json b/server/target/debug/.fingerprint/zerofrom-8dbd1d50b3509f2f/lib-zerofrom.json new file mode 100644 index 0000000..0ecf5b8 --- /dev/null +++ b/server/target/debug/.fingerprint/zerofrom-8dbd1d50b3509f2f/lib-zerofrom.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"derive\"]","declared_features":"[\"alloc\", \"default\", \"derive\"]","target":723370850876025358,"profile":15319846033271432293,"path":8484477896727206917,"deps":[[8736710335745631552,"zerofrom_derive",false,1025107641109305472]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerofrom-8dbd1d50b3509f2f/dep-lib-zerofrom","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerofrom-derive-9576136568908fe8/dep-lib-zerofrom_derive b/server/target/debug/.fingerprint/zerofrom-derive-9576136568908fe8/dep-lib-zerofrom_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/zerofrom-derive-9576136568908fe8/dep-lib-zerofrom_derive differ diff --git a/server/target/debug/.fingerprint/zerofrom-derive-9576136568908fe8/invoked.timestamp b/server/target/debug/.fingerprint/zerofrom-derive-9576136568908fe8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/zerofrom-derive-9576136568908fe8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerofrom-derive-9576136568908fe8/lib-zerofrom_derive b/server/target/debug/.fingerprint/zerofrom-derive-9576136568908fe8/lib-zerofrom_derive new file mode 100644 index 0000000..922ef32 --- /dev/null +++ b/server/target/debug/.fingerprint/zerofrom-derive-9576136568908fe8/lib-zerofrom_derive @@ -0,0 +1 @@ +80d8dbe4f7e9390e \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerofrom-derive-9576136568908fe8/lib-zerofrom_derive.json b/server/target/debug/.fingerprint/zerofrom-derive-9576136568908fe8/lib-zerofrom_derive.json new file mode 100644 index 0000000..e1723e0 --- /dev/null +++ b/server/target/debug/.fingerprint/zerofrom-derive-9576136568908fe8/lib-zerofrom_derive.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":1753304412232254384,"profile":17177036626609572155,"path":3140638444909127995,"deps":[[4289358735036141001,"proc_macro2",false,10178310667270251203],[4621990586401870511,"synstructure",false,5697627306844220449],[10420560437213941093,"syn",false,16474032542208326673],[13111758008314797071,"quote",false,16220216807289559200]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerofrom-derive-9576136568908fe8/dep-lib-zerofrom_derive","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerotrie-9818bc8ef3de4ac1/dep-lib-zerotrie b/server/target/debug/.fingerprint/zerotrie-9818bc8ef3de4ac1/dep-lib-zerotrie new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/zerotrie-9818bc8ef3de4ac1/dep-lib-zerotrie differ diff --git a/server/target/debug/.fingerprint/zerotrie-9818bc8ef3de4ac1/invoked.timestamp b/server/target/debug/.fingerprint/zerotrie-9818bc8ef3de4ac1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/zerotrie-9818bc8ef3de4ac1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerotrie-9818bc8ef3de4ac1/lib-zerotrie b/server/target/debug/.fingerprint/zerotrie-9818bc8ef3de4ac1/lib-zerotrie new file mode 100644 index 0000000..884f3cc --- /dev/null +++ b/server/target/debug/.fingerprint/zerotrie-9818bc8ef3de4ac1/lib-zerotrie @@ -0,0 +1 @@ +6ce88b7a14cdd6fe \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerotrie-9818bc8ef3de4ac1/lib-zerotrie.json b/server/target/debug/.fingerprint/zerotrie-9818bc8ef3de4ac1/lib-zerotrie.json new file mode 100644 index 0000000..7aab67a --- /dev/null +++ b/server/target/debug/.fingerprint/zerotrie-9818bc8ef3de4ac1/lib-zerotrie.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"yoke\", \"zerofrom\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"dense\", \"litemap\", \"serde\", \"yoke\", \"zerofrom\", \"zerovec\"]","target":12445875338185814621,"profile":15319846033271432293,"path":2386408814275247125,"deps":[[5298260564258778412,"displaydoc",false,9486569632487039336],[11416707103264493240,"yoke",false,2517306822553687459],[12771427830955461916,"zerofrom",false,14996317217188502111]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerotrie-9818bc8ef3de4ac1/dep-lib-zerotrie","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerovec-derive-62a37bc4fcf6d476/dep-lib-zerovec_derive b/server/target/debug/.fingerprint/zerovec-derive-62a37bc4fcf6d476/dep-lib-zerovec_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/zerovec-derive-62a37bc4fcf6d476/dep-lib-zerovec_derive differ diff --git a/server/target/debug/.fingerprint/zerovec-derive-62a37bc4fcf6d476/invoked.timestamp b/server/target/debug/.fingerprint/zerovec-derive-62a37bc4fcf6d476/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/zerovec-derive-62a37bc4fcf6d476/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerovec-derive-62a37bc4fcf6d476/lib-zerovec_derive b/server/target/debug/.fingerprint/zerovec-derive-62a37bc4fcf6d476/lib-zerovec_derive new file mode 100644 index 0000000..76ba803 --- /dev/null +++ b/server/target/debug/.fingerprint/zerovec-derive-62a37bc4fcf6d476/lib-zerovec_derive @@ -0,0 +1 @@ +1f82d19aa037e93b \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerovec-derive-62a37bc4fcf6d476/lib-zerovec_derive.json b/server/target/debug/.fingerprint/zerovec-derive-62a37bc4fcf6d476/lib-zerovec_derive.json new file mode 100644 index 0000000..d56aa33 --- /dev/null +++ b/server/target/debug/.fingerprint/zerovec-derive-62a37bc4fcf6d476/lib-zerovec_derive.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[]","target":14030368369369144574,"profile":17177036626609572155,"path":15568119257184612817,"deps":[[4289358735036141001,"proc_macro2",false,10178310667270251203],[10420560437213941093,"syn",false,16474032542208326673],[13111758008314797071,"quote",false,16220216807289559200]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerovec-derive-62a37bc4fcf6d476/dep-lib-zerovec_derive","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerovec-fd438d04957bc54b/dep-lib-zerovec b/server/target/debug/.fingerprint/zerovec-fd438d04957bc54b/dep-lib-zerovec new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/zerovec-fd438d04957bc54b/dep-lib-zerovec differ diff --git a/server/target/debug/.fingerprint/zerovec-fd438d04957bc54b/invoked.timestamp b/server/target/debug/.fingerprint/zerovec-fd438d04957bc54b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/zerovec-fd438d04957bc54b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerovec-fd438d04957bc54b/lib-zerovec b/server/target/debug/.fingerprint/zerovec-fd438d04957bc54b/lib-zerovec new file mode 100644 index 0000000..2265e90 --- /dev/null +++ b/server/target/debug/.fingerprint/zerovec-fd438d04957bc54b/lib-zerovec @@ -0,0 +1 @@ +1d20edd66ff22263 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zerovec-fd438d04957bc54b/lib-zerovec.json b/server/target/debug/.fingerprint/zerovec-fd438d04957bc54b/lib-zerovec.json new file mode 100644 index 0000000..6d68b0a --- /dev/null +++ b/server/target/debug/.fingerprint/zerovec-fd438d04957bc54b/lib-zerovec.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"derive\", \"yoke\"]","declared_features":"[\"alloc\", \"databake\", \"derive\", \"hashmap\", \"schemars\", \"serde\", \"std\", \"yoke\"]","target":1825474209729987087,"profile":15319846033271432293,"path":8152876143008024478,"deps":[[11416707103264493240,"yoke",false,2517306822553687459],[12771427830955461916,"zerofrom",false,14996317217188502111],[13916398663282415334,"zerovec_derive",false,4317042880743047711]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerovec-fd438d04957bc54b/dep-lib-zerovec","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zmij-21501fc4e230aede/build-script-build-script-build b/server/target/debug/.fingerprint/zmij-21501fc4e230aede/build-script-build-script-build new file mode 100644 index 0000000..7cb029d --- /dev/null +++ b/server/target/debug/.fingerprint/zmij-21501fc4e230aede/build-script-build-script-build @@ -0,0 +1 @@ +2d114f48b8c391ce \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zmij-21501fc4e230aede/build-script-build-script-build.json b/server/target/debug/.fingerprint/zmij-21501fc4e230aede/build-script-build-script-build.json new file mode 100644 index 0000000..2a1517c --- /dev/null +++ b/server/target/debug/.fingerprint/zmij-21501fc4e230aede/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"no-panic\"]","target":5408242616063297496,"profile":2225463790103693989,"path":4777441287222515320,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zmij-21501fc4e230aede/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zmij-21501fc4e230aede/dep-build-script-build-script-build b/server/target/debug/.fingerprint/zmij-21501fc4e230aede/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/zmij-21501fc4e230aede/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/zmij-21501fc4e230aede/invoked.timestamp b/server/target/debug/.fingerprint/zmij-21501fc4e230aede/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/zmij-21501fc4e230aede/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zmij-503b4b33217e4370/dep-lib-zmij b/server/target/debug/.fingerprint/zmij-503b4b33217e4370/dep-lib-zmij new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/zmij-503b4b33217e4370/dep-lib-zmij differ diff --git a/server/target/debug/.fingerprint/zmij-503b4b33217e4370/invoked.timestamp b/server/target/debug/.fingerprint/zmij-503b4b33217e4370/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/zmij-503b4b33217e4370/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zmij-503b4b33217e4370/lib-zmij b/server/target/debug/.fingerprint/zmij-503b4b33217e4370/lib-zmij new file mode 100644 index 0000000..14fd79e --- /dev/null +++ b/server/target/debug/.fingerprint/zmij-503b4b33217e4370/lib-zmij @@ -0,0 +1 @@ +2765ee64e3e46cc8 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zmij-503b4b33217e4370/lib-zmij.json b/server/target/debug/.fingerprint/zmij-503b4b33217e4370/lib-zmij.json new file mode 100644 index 0000000..349d254 --- /dev/null +++ b/server/target/debug/.fingerprint/zmij-503b4b33217e4370/lib-zmij.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[]","declared_features":"[\"no-panic\"]","target":16603507647234574737,"profile":2241668132362809309,"path":16337335727508369031,"deps":[[12347024475581975995,"build_script_build",false,5535779030723396082]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zmij-503b4b33217e4370/dep-lib-zmij","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zmij-d90832289578f4e0/run-build-script-build-script-build b/server/target/debug/.fingerprint/zmij-d90832289578f4e0/run-build-script-build-script-build new file mode 100644 index 0000000..3d6becc --- /dev/null +++ b/server/target/debug/.fingerprint/zmij-d90832289578f4e0/run-build-script-build-script-build @@ -0,0 +1 @@ +f20153d9b209d34c \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zmij-d90832289578f4e0/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/zmij-d90832289578f4e0/run-build-script-build-script-build.json new file mode 100644 index 0000000..58597b7 --- /dev/null +++ b/server/target/debug/.fingerprint/zmij-d90832289578f4e0/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[12347024475581975995,"build_script_build",false,14884893439690740013]],"local":[{"RerunIfChanged":{"output":"debug/build/zmij-d90832289578f4e0/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-49edc042adcd0703/dep-lib-zstd b/server/target/debug/.fingerprint/zstd-49edc042adcd0703/dep-lib-zstd new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/zstd-49edc042adcd0703/dep-lib-zstd differ diff --git a/server/target/debug/.fingerprint/zstd-49edc042adcd0703/invoked.timestamp b/server/target/debug/.fingerprint/zstd-49edc042adcd0703/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-49edc042adcd0703/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-49edc042adcd0703/lib-zstd b/server/target/debug/.fingerprint/zstd-49edc042adcd0703/lib-zstd new file mode 100644 index 0000000..6d61fb7 --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-49edc042adcd0703/lib-zstd @@ -0,0 +1 @@ +936c3192c0c57199 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-49edc042adcd0703/lib-zstd.json b/server/target/debug/.fingerprint/zstd-49edc042adcd0703/lib-zstd.json new file mode 100644 index 0000000..9f12d84 --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-49edc042adcd0703/lib-zstd.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"arrays\", \"default\", \"legacy\", \"zdict_builder\"]","declared_features":"[\"arrays\", \"bindgen\", \"debug\", \"default\", \"doc-cfg\", \"experimental\", \"fat-lto\", \"legacy\", \"no_asm\", \"pkg-config\", \"thin\", \"thin-lto\", \"wasm\", \"zdict_builder\", \"zstdmt\"]","target":13967053409313941148,"profile":2241668132362809309,"path":3457298999852048743,"deps":[[15788444815745660356,"zstd_safe",false,2892338233734774199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zstd-49edc042adcd0703/dep-lib-zstd","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-safe-25bc999f72fa4231/build-script-build-script-build b/server/target/debug/.fingerprint/zstd-safe-25bc999f72fa4231/build-script-build-script-build new file mode 100644 index 0000000..7fc7be9 --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-safe-25bc999f72fa4231/build-script-build-script-build @@ -0,0 +1 @@ +fcd91193d7d1ebe3 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-safe-25bc999f72fa4231/build-script-build-script-build.json b/server/target/debug/.fingerprint/zstd-safe-25bc999f72fa4231/build-script-build-script-build.json new file mode 100644 index 0000000..f8fc145 --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-safe-25bc999f72fa4231/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"arrays\", \"legacy\", \"std\", \"zdict_builder\"]","declared_features":"[\"arrays\", \"bindgen\", \"debug\", \"default\", \"doc-cfg\", \"experimental\", \"fat-lto\", \"legacy\", \"no_asm\", \"pkg-config\", \"seekable\", \"std\", \"thin\", \"thin-lto\", \"zdict_builder\", \"zstdmt\"]","target":17883862002600103897,"profile":9415750120209362233,"path":17897545559130159046,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zstd-safe-25bc999f72fa4231/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-safe-25bc999f72fa4231/dep-build-script-build-script-build b/server/target/debug/.fingerprint/zstd-safe-25bc999f72fa4231/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/zstd-safe-25bc999f72fa4231/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/zstd-safe-25bc999f72fa4231/invoked.timestamp b/server/target/debug/.fingerprint/zstd-safe-25bc999f72fa4231/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-safe-25bc999f72fa4231/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-safe-94a4f75bee32fb27/dep-lib-zstd_safe b/server/target/debug/.fingerprint/zstd-safe-94a4f75bee32fb27/dep-lib-zstd_safe new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/zstd-safe-94a4f75bee32fb27/dep-lib-zstd_safe differ diff --git a/server/target/debug/.fingerprint/zstd-safe-94a4f75bee32fb27/invoked.timestamp b/server/target/debug/.fingerprint/zstd-safe-94a4f75bee32fb27/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-safe-94a4f75bee32fb27/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-safe-94a4f75bee32fb27/lib-zstd_safe b/server/target/debug/.fingerprint/zstd-safe-94a4f75bee32fb27/lib-zstd_safe new file mode 100644 index 0000000..a5af109 --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-safe-94a4f75bee32fb27/lib-zstd_safe @@ -0,0 +1 @@ +b7bd0aa04ca62328 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-safe-94a4f75bee32fb27/lib-zstd_safe.json b/server/target/debug/.fingerprint/zstd-safe-94a4f75bee32fb27/lib-zstd_safe.json new file mode 100644 index 0000000..9f894fc --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-safe-94a4f75bee32fb27/lib-zstd_safe.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"arrays\", \"legacy\", \"std\", \"zdict_builder\"]","declared_features":"[\"arrays\", \"bindgen\", \"debug\", \"default\", \"doc-cfg\", \"experimental\", \"fat-lto\", \"legacy\", \"no_asm\", \"pkg-config\", \"seekable\", \"std\", \"thin\", \"thin-lto\", \"zdict_builder\", \"zstdmt\"]","target":13834647262792939399,"profile":11535200890256339260,"path":13927273783270203620,"deps":[[14036207514847816158,"zstd_sys",false,4561049291300421895],[15788444815745660356,"build_script_build",false,1129805866454459163]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zstd-safe-94a4f75bee32fb27/dep-lib-zstd_safe","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-safe-ac8c8c8b50677faa/run-build-script-build-script-build b/server/target/debug/.fingerprint/zstd-safe-ac8c8c8b50677faa/run-build-script-build-script-build new file mode 100644 index 0000000..f5b3567 --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-safe-ac8c8c8b50677faa/run-build-script-build-script-build @@ -0,0 +1 @@ +1ba32b1773e0ad0f \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-safe-ac8c8c8b50677faa/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/zstd-safe-ac8c8c8b50677faa/run-build-script-build-script-build.json new file mode 100644 index 0000000..e5337b4 --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-safe-ac8c8c8b50677faa/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[15788444815745660356,"build_script_build",false,16423451189952240124],[14036207514847816158,"build_script_build",false,9488042027304122601]],"local":[{"Precalculated":"7.2.4"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-sys-28dfee1622a2e7c2/build-script-build-script-build b/server/target/debug/.fingerprint/zstd-sys-28dfee1622a2e7c2/build-script-build-script-build new file mode 100644 index 0000000..d0676bb --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-sys-28dfee1622a2e7c2/build-script-build-script-build @@ -0,0 +1 @@ +0fb09d5ac57bac69 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-sys-28dfee1622a2e7c2/build-script-build-script-build.json b/server/target/debug/.fingerprint/zstd-sys-28dfee1622a2e7c2/build-script-build-script-build.json new file mode 100644 index 0000000..f874686 --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-sys-28dfee1622a2e7c2/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"legacy\", \"std\", \"zdict_builder\"]","declared_features":"[\"bindgen\", \"debug\", \"default\", \"experimental\", \"fat-lto\", \"legacy\", \"no_asm\", \"no_wasm_shim\", \"non-cargo\", \"pkg-config\", \"seekable\", \"std\", \"thin\", \"thin-lto\", \"zdict_builder\", \"zstdmt\"]","target":17883862002600103897,"profile":9415750120209362233,"path":9510722809862542801,"deps":[[1771139597942101974,"cc",false,4763208516251551304],[3214373357989284387,"pkg_config",false,2846272213620112480]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zstd-sys-28dfee1622a2e7c2/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-sys-28dfee1622a2e7c2/dep-build-script-build-script-build b/server/target/debug/.fingerprint/zstd-sys-28dfee1622a2e7c2/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/zstd-sys-28dfee1622a2e7c2/dep-build-script-build-script-build differ diff --git a/server/target/debug/.fingerprint/zstd-sys-28dfee1622a2e7c2/invoked.timestamp b/server/target/debug/.fingerprint/zstd-sys-28dfee1622a2e7c2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-sys-28dfee1622a2e7c2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-sys-6e13c138ec74bb9d/run-build-script-build-script-build b/server/target/debug/.fingerprint/zstd-sys-6e13c138ec74bb9d/run-build-script-build-script-build new file mode 100644 index 0000000..e38fa31 --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-sys-6e13c138ec74bb9d/run-build-script-build-script-build @@ -0,0 +1 @@ +e978703bf44bac83 \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-sys-6e13c138ec74bb9d/run-build-script-build-script-build.json b/server/target/debug/.fingerprint/zstd-sys-6e13c138ec74bb9d/run-build-script-build-script-build.json new file mode 100644 index 0000000..dc58416 --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-sys-6e13c138ec74bb9d/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[14036207514847816158,"build_script_build",false,7614597157535723535]],"local":[{"RerunIfEnvChanged":{"var":"ZSTD_SYS_USE_PKG_CONFIG","val":null}},{"RerunIfEnvChanged":{"var":"CC_FORCE_DISABLE","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CC_ENABLE_DEBUG_OUTPUT","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_ENABLE_DEBUG_OUTPUT","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_ENABLE_DEBUG_OUTPUT","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_ENABLE_DEBUG_OUTPUT","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"AR_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"AR_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_AR","val":null}},{"RerunIfEnvChanged":{"var":"AR","val":null}},{"RerunIfEnvChanged":{"var":"ARFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_ARFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"ARFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"ARFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"AR_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"AR_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_AR","val":null}},{"RerunIfEnvChanged":{"var":"AR","val":null}},{"RerunIfEnvChanged":{"var":"ARFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_ARFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"ARFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"ARFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"AR_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"AR_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_AR","val":null}},{"RerunIfEnvChanged":{"var":"AR","val":null}},{"RerunIfEnvChanged":{"var":"ARFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_ARFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"ARFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"ARFLAGS_x86_64-unknown-linux-gnu","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-sys-c613c42443c831d6/dep-lib-zstd_sys b/server/target/debug/.fingerprint/zstd-sys-c613c42443c831d6/dep-lib-zstd_sys new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/server/target/debug/.fingerprint/zstd-sys-c613c42443c831d6/dep-lib-zstd_sys differ diff --git a/server/target/debug/.fingerprint/zstd-sys-c613c42443c831d6/invoked.timestamp b/server/target/debug/.fingerprint/zstd-sys-c613c42443c831d6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-sys-c613c42443c831d6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-sys-c613c42443c831d6/lib-zstd_sys b/server/target/debug/.fingerprint/zstd-sys-c613c42443c831d6/lib-zstd_sys new file mode 100644 index 0000000..90aaac9 --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-sys-c613c42443c831d6/lib-zstd_sys @@ -0,0 +1 @@ +0741023b2a1a4c3f \ No newline at end of file diff --git a/server/target/debug/.fingerprint/zstd-sys-c613c42443c831d6/lib-zstd_sys.json b/server/target/debug/.fingerprint/zstd-sys-c613c42443c831d6/lib-zstd_sys.json new file mode 100644 index 0000000..28e575c --- /dev/null +++ b/server/target/debug/.fingerprint/zstd-sys-c613c42443c831d6/lib-zstd_sys.json @@ -0,0 +1 @@ +{"rustc":5391851738765093524,"features":"[\"legacy\", \"std\", \"zdict_builder\"]","declared_features":"[\"bindgen\", \"debug\", \"default\", \"experimental\", \"fat-lto\", \"legacy\", \"no_asm\", \"no_wasm_shim\", \"non-cargo\", \"pkg-config\", \"seekable\", \"std\", \"thin\", \"thin-lto\", \"zdict_builder\", \"zstdmt\"]","target":3822121216239517979,"profile":11535200890256339260,"path":17097135437799401395,"deps":[[14036207514847816158,"build_script_build",false,9488042027304122601]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zstd-sys-c613c42443c831d6/dep-lib-zstd_sys","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/server/target/debug/build/cookie-25232d268108699b/build-script-build b/server/target/debug/build/cookie-25232d268108699b/build-script-build new file mode 100755 index 0000000..a01be55 Binary files /dev/null and b/server/target/debug/build/cookie-25232d268108699b/build-script-build differ diff --git a/server/target/debug/build/cookie-25232d268108699b/build_script_build-25232d268108699b b/server/target/debug/build/cookie-25232d268108699b/build_script_build-25232d268108699b new file mode 100755 index 0000000..a01be55 Binary files /dev/null and b/server/target/debug/build/cookie-25232d268108699b/build_script_build-25232d268108699b differ diff --git a/server/target/debug/build/cookie-25232d268108699b/build_script_build-25232d268108699b.d b/server/target/debug/build/cookie-25232d268108699b/build_script_build-25232d268108699b.d new file mode 100644 index 0000000..664a689 --- /dev/null +++ b/server/target/debug/build/cookie-25232d268108699b/build_script_build-25232d268108699b.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/cookie-25232d268108699b/build_script_build-25232d268108699b.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/build.rs + +/home/z/my-project/projects/server/target/debug/build/cookie-25232d268108699b/build_script_build-25232d268108699b: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/build.rs: diff --git a/server/target/debug/build/cookie-79857ad2728541f8/invoked.timestamp b/server/target/debug/build/cookie-79857ad2728541f8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/cookie-79857ad2728541f8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/cookie-79857ad2728541f8/output b/server/target/debug/build/cookie-79857ad2728541f8/output new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/cookie-79857ad2728541f8/root-output b/server/target/debug/build/cookie-79857ad2728541f8/root-output new file mode 100644 index 0000000..c483707 --- /dev/null +++ b/server/target/debug/build/cookie-79857ad2728541f8/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/cookie-79857ad2728541f8/out \ No newline at end of file diff --git a/server/target/debug/build/cookie-79857ad2728541f8/stderr b/server/target/debug/build/cookie-79857ad2728541f8/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/crc32fast-9843fb73970f43a5/build-script-build b/server/target/debug/build/crc32fast-9843fb73970f43a5/build-script-build new file mode 100755 index 0000000..b8063a0 Binary files /dev/null and b/server/target/debug/build/crc32fast-9843fb73970f43a5/build-script-build differ diff --git a/server/target/debug/build/crc32fast-9843fb73970f43a5/build_script_build-9843fb73970f43a5 b/server/target/debug/build/crc32fast-9843fb73970f43a5/build_script_build-9843fb73970f43a5 new file mode 100755 index 0000000..b8063a0 Binary files /dev/null and b/server/target/debug/build/crc32fast-9843fb73970f43a5/build_script_build-9843fb73970f43a5 differ diff --git a/server/target/debug/build/crc32fast-9843fb73970f43a5/build_script_build-9843fb73970f43a5.d b/server/target/debug/build/crc32fast-9843fb73970f43a5/build_script_build-9843fb73970f43a5.d new file mode 100644 index 0000000..d4ab09e --- /dev/null +++ b/server/target/debug/build/crc32fast-9843fb73970f43a5/build_script_build-9843fb73970f43a5.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/crc32fast-9843fb73970f43a5/build_script_build-9843fb73970f43a5.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/build.rs + +/home/z/my-project/projects/server/target/debug/build/crc32fast-9843fb73970f43a5/build_script_build-9843fb73970f43a5: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/build.rs: diff --git a/server/target/debug/build/crc32fast-ea1238a5d404b4ce/invoked.timestamp b/server/target/debug/build/crc32fast-ea1238a5d404b4ce/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/crc32fast-ea1238a5d404b4ce/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/crc32fast-ea1238a5d404b4ce/output b/server/target/debug/build/crc32fast-ea1238a5d404b4ce/output new file mode 100644 index 0000000..a21ae73 --- /dev/null +++ b/server/target/debug/build/crc32fast-ea1238a5d404b4ce/output @@ -0,0 +1,2 @@ +cargo:rustc-cfg=stable_arm_crc32_intrinsics +cargo:rustc-check-cfg=cfg(stable_arm_crc32_intrinsics) diff --git a/server/target/debug/build/crc32fast-ea1238a5d404b4ce/root-output b/server/target/debug/build/crc32fast-ea1238a5d404b4ce/root-output new file mode 100644 index 0000000..b662ee6 --- /dev/null +++ b/server/target/debug/build/crc32fast-ea1238a5d404b4ce/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/crc32fast-ea1238a5d404b4ce/out \ No newline at end of file diff --git a/server/target/debug/build/crc32fast-ea1238a5d404b4ce/stderr b/server/target/debug/build/crc32fast-ea1238a5d404b4ce/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/crossbeam-utils-2dd7e9a10f471ce2/build-script-build b/server/target/debug/build/crossbeam-utils-2dd7e9a10f471ce2/build-script-build new file mode 100755 index 0000000..4b04f11 Binary files /dev/null and b/server/target/debug/build/crossbeam-utils-2dd7e9a10f471ce2/build-script-build differ diff --git a/server/target/debug/build/crossbeam-utils-2dd7e9a10f471ce2/build_script_build-2dd7e9a10f471ce2 b/server/target/debug/build/crossbeam-utils-2dd7e9a10f471ce2/build_script_build-2dd7e9a10f471ce2 new file mode 100755 index 0000000..4b04f11 Binary files /dev/null and b/server/target/debug/build/crossbeam-utils-2dd7e9a10f471ce2/build_script_build-2dd7e9a10f471ce2 differ diff --git a/server/target/debug/build/crossbeam-utils-2dd7e9a10f471ce2/build_script_build-2dd7e9a10f471ce2.d b/server/target/debug/build/crossbeam-utils-2dd7e9a10f471ce2/build_script_build-2dd7e9a10f471ce2.d new file mode 100644 index 0000000..3524c4b --- /dev/null +++ b/server/target/debug/build/crossbeam-utils-2dd7e9a10f471ce2/build_script_build-2dd7e9a10f471ce2.d @@ -0,0 +1,9 @@ +/home/z/my-project/projects/server/target/debug/build/crossbeam-utils-2dd7e9a10f471ce2/build_script_build-2dd7e9a10f471ce2.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/no_atomic.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build-common.rs + +/home/z/my-project/projects/server/target/debug/build/crossbeam-utils-2dd7e9a10f471ce2/build_script_build-2dd7e9a10f471ce2: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/no_atomic.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build-common.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/no_atomic.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build-common.rs: + +# env-dep:CARGO_PKG_NAME=crossbeam-utils diff --git a/server/target/debug/build/crossbeam-utils-d51a068df42f71a6/invoked.timestamp b/server/target/debug/build/crossbeam-utils-d51a068df42f71a6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/crossbeam-utils-d51a068df42f71a6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/crossbeam-utils-d51a068df42f71a6/output b/server/target/debug/build/crossbeam-utils-d51a068df42f71a6/output new file mode 100644 index 0000000..d0bad9f --- /dev/null +++ b/server/target/debug/build/crossbeam-utils-d51a068df42f71a6/output @@ -0,0 +1,2 @@ +cargo:rerun-if-changed=no_atomic.rs +cargo:rustc-check-cfg=cfg(crossbeam_no_atomic,crossbeam_sanitize_thread) diff --git a/server/target/debug/build/crossbeam-utils-d51a068df42f71a6/root-output b/server/target/debug/build/crossbeam-utils-d51a068df42f71a6/root-output new file mode 100644 index 0000000..8064885 --- /dev/null +++ b/server/target/debug/build/crossbeam-utils-d51a068df42f71a6/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/crossbeam-utils-d51a068df42f71a6/out \ No newline at end of file diff --git a/server/target/debug/build/crossbeam-utils-d51a068df42f71a6/stderr b/server/target/debug/build/crossbeam-utils-d51a068df42f71a6/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/generic-array-52fd0c1ecc4a7da5/build-script-build b/server/target/debug/build/generic-array-52fd0c1ecc4a7da5/build-script-build new file mode 100755 index 0000000..0bec817 Binary files /dev/null and b/server/target/debug/build/generic-array-52fd0c1ecc4a7da5/build-script-build differ diff --git a/server/target/debug/build/generic-array-52fd0c1ecc4a7da5/build_script_build-52fd0c1ecc4a7da5 b/server/target/debug/build/generic-array-52fd0c1ecc4a7da5/build_script_build-52fd0c1ecc4a7da5 new file mode 100755 index 0000000..0bec817 Binary files /dev/null and b/server/target/debug/build/generic-array-52fd0c1ecc4a7da5/build_script_build-52fd0c1ecc4a7da5 differ diff --git a/server/target/debug/build/generic-array-52fd0c1ecc4a7da5/build_script_build-52fd0c1ecc4a7da5.d b/server/target/debug/build/generic-array-52fd0c1ecc4a7da5/build_script_build-52fd0c1ecc4a7da5.d new file mode 100644 index 0000000..84feba6 --- /dev/null +++ b/server/target/debug/build/generic-array-52fd0c1ecc4a7da5/build_script_build-52fd0c1ecc4a7da5.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/generic-array-52fd0c1ecc4a7da5/build_script_build-52fd0c1ecc4a7da5.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/build.rs + +/home/z/my-project/projects/server/target/debug/build/generic-array-52fd0c1ecc4a7da5/build_script_build-52fd0c1ecc4a7da5: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/build.rs: diff --git a/server/target/debug/build/generic-array-a8049fa7660e1d0c/invoked.timestamp b/server/target/debug/build/generic-array-a8049fa7660e1d0c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/generic-array-a8049fa7660e1d0c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/generic-array-a8049fa7660e1d0c/output b/server/target/debug/build/generic-array-a8049fa7660e1d0c/output new file mode 100644 index 0000000..a67c3a8 --- /dev/null +++ b/server/target/debug/build/generic-array-a8049fa7660e1d0c/output @@ -0,0 +1 @@ +cargo:rustc-cfg=relaxed_coherence diff --git a/server/target/debug/build/generic-array-a8049fa7660e1d0c/root-output b/server/target/debug/build/generic-array-a8049fa7660e1d0c/root-output new file mode 100644 index 0000000..c279172 --- /dev/null +++ b/server/target/debug/build/generic-array-a8049fa7660e1d0c/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/generic-array-a8049fa7660e1d0c/out \ No newline at end of file diff --git a/server/target/debug/build/generic-array-a8049fa7660e1d0c/stderr b/server/target/debug/build/generic-array-a8049fa7660e1d0c/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/getrandom-54f6a379b19d6708/invoked.timestamp b/server/target/debug/build/getrandom-54f6a379b19d6708/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/getrandom-54f6a379b19d6708/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/getrandom-54f6a379b19d6708/output b/server/target/debug/build/getrandom-54f6a379b19d6708/output new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/server/target/debug/build/getrandom-54f6a379b19d6708/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build.rs diff --git a/server/target/debug/build/getrandom-54f6a379b19d6708/root-output b/server/target/debug/build/getrandom-54f6a379b19d6708/root-output new file mode 100644 index 0000000..735d693 --- /dev/null +++ b/server/target/debug/build/getrandom-54f6a379b19d6708/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/getrandom-54f6a379b19d6708/out \ No newline at end of file diff --git a/server/target/debug/build/getrandom-54f6a379b19d6708/stderr b/server/target/debug/build/getrandom-54f6a379b19d6708/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/getrandom-941c4026d36b67fd/build-script-build b/server/target/debug/build/getrandom-941c4026d36b67fd/build-script-build new file mode 100755 index 0000000..786ef5a Binary files /dev/null and b/server/target/debug/build/getrandom-941c4026d36b67fd/build-script-build differ diff --git a/server/target/debug/build/getrandom-941c4026d36b67fd/build_script_build-941c4026d36b67fd b/server/target/debug/build/getrandom-941c4026d36b67fd/build_script_build-941c4026d36b67fd new file mode 100755 index 0000000..786ef5a Binary files /dev/null and b/server/target/debug/build/getrandom-941c4026d36b67fd/build_script_build-941c4026d36b67fd differ diff --git a/server/target/debug/build/getrandom-941c4026d36b67fd/build_script_build-941c4026d36b67fd.d b/server/target/debug/build/getrandom-941c4026d36b67fd/build_script_build-941c4026d36b67fd.d new file mode 100644 index 0000000..8820b29 --- /dev/null +++ b/server/target/debug/build/getrandom-941c4026d36b67fd/build_script_build-941c4026d36b67fd.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/getrandom-941c4026d36b67fd/build_script_build-941c4026d36b67fd.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/build.rs + +/home/z/my-project/projects/server/target/debug/build/getrandom-941c4026d36b67fd/build_script_build-941c4026d36b67fd: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/build.rs: diff --git a/server/target/debug/build/getrandom-9c973929d9bde002/build-script-build b/server/target/debug/build/getrandom-9c973929d9bde002/build-script-build new file mode 100755 index 0000000..32fcc6f Binary files /dev/null and b/server/target/debug/build/getrandom-9c973929d9bde002/build-script-build differ diff --git a/server/target/debug/build/getrandom-9c973929d9bde002/build_script_build-9c973929d9bde002 b/server/target/debug/build/getrandom-9c973929d9bde002/build_script_build-9c973929d9bde002 new file mode 100755 index 0000000..32fcc6f Binary files /dev/null and b/server/target/debug/build/getrandom-9c973929d9bde002/build_script_build-9c973929d9bde002 differ diff --git a/server/target/debug/build/getrandom-9c973929d9bde002/build_script_build-9c973929d9bde002.d b/server/target/debug/build/getrandom-9c973929d9bde002/build_script_build-9c973929d9bde002.d new file mode 100644 index 0000000..f4dfb8f --- /dev/null +++ b/server/target/debug/build/getrandom-9c973929d9bde002/build_script_build-9c973929d9bde002.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/getrandom-9c973929d9bde002/build_script_build-9c973929d9bde002.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/build.rs + +/home/z/my-project/projects/server/target/debug/build/getrandom-9c973929d9bde002/build_script_build-9c973929d9bde002: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/build.rs: diff --git a/server/target/debug/build/getrandom-c54f294d05169729/invoked.timestamp b/server/target/debug/build/getrandom-c54f294d05169729/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/getrandom-c54f294d05169729/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/getrandom-c54f294d05169729/output b/server/target/debug/build/getrandom-c54f294d05169729/output new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/server/target/debug/build/getrandom-c54f294d05169729/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build.rs diff --git a/server/target/debug/build/getrandom-c54f294d05169729/root-output b/server/target/debug/build/getrandom-c54f294d05169729/root-output new file mode 100644 index 0000000..b16355a --- /dev/null +++ b/server/target/debug/build/getrandom-c54f294d05169729/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/getrandom-c54f294d05169729/out \ No newline at end of file diff --git a/server/target/debug/build/getrandom-c54f294d05169729/stderr b/server/target/debug/build/getrandom-c54f294d05169729/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/httparse-173d9c520e2abbc3/invoked.timestamp b/server/target/debug/build/httparse-173d9c520e2abbc3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/httparse-173d9c520e2abbc3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/httparse-173d9c520e2abbc3/output b/server/target/debug/build/httparse-173d9c520e2abbc3/output new file mode 100644 index 0000000..aac2d6a --- /dev/null +++ b/server/target/debug/build/httparse-173d9c520e2abbc3/output @@ -0,0 +1,2 @@ +cargo:rustc-cfg=httparse_simd_neon_intrinsics +cargo:rustc-cfg=httparse_simd diff --git a/server/target/debug/build/httparse-173d9c520e2abbc3/root-output b/server/target/debug/build/httparse-173d9c520e2abbc3/root-output new file mode 100644 index 0000000..bac3b3f --- /dev/null +++ b/server/target/debug/build/httparse-173d9c520e2abbc3/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/httparse-173d9c520e2abbc3/out \ No newline at end of file diff --git a/server/target/debug/build/httparse-173d9c520e2abbc3/stderr b/server/target/debug/build/httparse-173d9c520e2abbc3/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/httparse-a0b58dd76fe5a3c6/build-script-build b/server/target/debug/build/httparse-a0b58dd76fe5a3c6/build-script-build new file mode 100755 index 0000000..024e57d Binary files /dev/null and b/server/target/debug/build/httparse-a0b58dd76fe5a3c6/build-script-build differ diff --git a/server/target/debug/build/httparse-a0b58dd76fe5a3c6/build_script_build-a0b58dd76fe5a3c6 b/server/target/debug/build/httparse-a0b58dd76fe5a3c6/build_script_build-a0b58dd76fe5a3c6 new file mode 100755 index 0000000..024e57d Binary files /dev/null and b/server/target/debug/build/httparse-a0b58dd76fe5a3c6/build_script_build-a0b58dd76fe5a3c6 differ diff --git a/server/target/debug/build/httparse-a0b58dd76fe5a3c6/build_script_build-a0b58dd76fe5a3c6.d b/server/target/debug/build/httparse-a0b58dd76fe5a3c6/build_script_build-a0b58dd76fe5a3c6.d new file mode 100644 index 0000000..153c0eb --- /dev/null +++ b/server/target/debug/build/httparse-a0b58dd76fe5a3c6/build_script_build-a0b58dd76fe5a3c6.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/httparse-a0b58dd76fe5a3c6/build_script_build-a0b58dd76fe5a3c6.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/build.rs + +/home/z/my-project/projects/server/target/debug/build/httparse-a0b58dd76fe5a3c6/build_script_build-a0b58dd76fe5a3c6: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/build.rs: diff --git a/server/target/debug/build/icu_normalizer_data-efa217b10c4f6914/build-script-build b/server/target/debug/build/icu_normalizer_data-efa217b10c4f6914/build-script-build new file mode 100755 index 0000000..39bb707 Binary files /dev/null and b/server/target/debug/build/icu_normalizer_data-efa217b10c4f6914/build-script-build differ diff --git a/server/target/debug/build/icu_normalizer_data-efa217b10c4f6914/build_script_build-efa217b10c4f6914 b/server/target/debug/build/icu_normalizer_data-efa217b10c4f6914/build_script_build-efa217b10c4f6914 new file mode 100755 index 0000000..39bb707 Binary files /dev/null and b/server/target/debug/build/icu_normalizer_data-efa217b10c4f6914/build_script_build-efa217b10c4f6914 differ diff --git a/server/target/debug/build/icu_normalizer_data-efa217b10c4f6914/build_script_build-efa217b10c4f6914.d b/server/target/debug/build/icu_normalizer_data-efa217b10c4f6914/build_script_build-efa217b10c4f6914.d new file mode 100644 index 0000000..835ceb3 --- /dev/null +++ b/server/target/debug/build/icu_normalizer_data-efa217b10c4f6914/build_script_build-efa217b10c4f6914.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/icu_normalizer_data-efa217b10c4f6914/build_script_build-efa217b10c4f6914.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/build.rs + +/home/z/my-project/projects/server/target/debug/build/icu_normalizer_data-efa217b10c4f6914/build_script_build-efa217b10c4f6914: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/build.rs: diff --git a/server/target/debug/build/icu_normalizer_data-fdb0024b69386ad8/invoked.timestamp b/server/target/debug/build/icu_normalizer_data-fdb0024b69386ad8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/icu_normalizer_data-fdb0024b69386ad8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/icu_normalizer_data-fdb0024b69386ad8/output b/server/target/debug/build/icu_normalizer_data-fdb0024b69386ad8/output new file mode 100644 index 0000000..30ced52 --- /dev/null +++ b/server/target/debug/build/icu_normalizer_data-fdb0024b69386ad8/output @@ -0,0 +1,2 @@ +cargo:rerun-if-env-changed=ICU4X_DATA_DIR +cargo:rustc-check-cfg=cfg(icu4c_enable_renaming) diff --git a/server/target/debug/build/icu_normalizer_data-fdb0024b69386ad8/root-output b/server/target/debug/build/icu_normalizer_data-fdb0024b69386ad8/root-output new file mode 100644 index 0000000..9bc403a --- /dev/null +++ b/server/target/debug/build/icu_normalizer_data-fdb0024b69386ad8/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/icu_normalizer_data-fdb0024b69386ad8/out \ No newline at end of file diff --git a/server/target/debug/build/icu_normalizer_data-fdb0024b69386ad8/stderr b/server/target/debug/build/icu_normalizer_data-fdb0024b69386ad8/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/icu_properties_data-87e07b46ec576592/build-script-build b/server/target/debug/build/icu_properties_data-87e07b46ec576592/build-script-build new file mode 100755 index 0000000..67ced7b Binary files /dev/null and b/server/target/debug/build/icu_properties_data-87e07b46ec576592/build-script-build differ diff --git a/server/target/debug/build/icu_properties_data-87e07b46ec576592/build_script_build-87e07b46ec576592 b/server/target/debug/build/icu_properties_data-87e07b46ec576592/build_script_build-87e07b46ec576592 new file mode 100755 index 0000000..67ced7b Binary files /dev/null and b/server/target/debug/build/icu_properties_data-87e07b46ec576592/build_script_build-87e07b46ec576592 differ diff --git a/server/target/debug/build/icu_properties_data-87e07b46ec576592/build_script_build-87e07b46ec576592.d b/server/target/debug/build/icu_properties_data-87e07b46ec576592/build_script_build-87e07b46ec576592.d new file mode 100644 index 0000000..ec4d62c --- /dev/null +++ b/server/target/debug/build/icu_properties_data-87e07b46ec576592/build_script_build-87e07b46ec576592.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/icu_properties_data-87e07b46ec576592/build_script_build-87e07b46ec576592.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/build.rs + +/home/z/my-project/projects/server/target/debug/build/icu_properties_data-87e07b46ec576592/build_script_build-87e07b46ec576592: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/build.rs: diff --git a/server/target/debug/build/icu_properties_data-e31c77d0b71db455/invoked.timestamp b/server/target/debug/build/icu_properties_data-e31c77d0b71db455/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/icu_properties_data-e31c77d0b71db455/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/icu_properties_data-e31c77d0b71db455/output b/server/target/debug/build/icu_properties_data-e31c77d0b71db455/output new file mode 100644 index 0000000..30ced52 --- /dev/null +++ b/server/target/debug/build/icu_properties_data-e31c77d0b71db455/output @@ -0,0 +1,2 @@ +cargo:rerun-if-env-changed=ICU4X_DATA_DIR +cargo:rustc-check-cfg=cfg(icu4c_enable_renaming) diff --git a/server/target/debug/build/icu_properties_data-e31c77d0b71db455/root-output b/server/target/debug/build/icu_properties_data-e31c77d0b71db455/root-output new file mode 100644 index 0000000..c2278a3 --- /dev/null +++ b/server/target/debug/build/icu_properties_data-e31c77d0b71db455/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/icu_properties_data-e31c77d0b71db455/out \ No newline at end of file diff --git a/server/target/debug/build/icu_properties_data-e31c77d0b71db455/stderr b/server/target/debug/build/icu_properties_data-e31c77d0b71db455/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/libc-e3cfd2099db6ee14/invoked.timestamp b/server/target/debug/build/libc-e3cfd2099db6ee14/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/libc-e3cfd2099db6ee14/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/libc-e3cfd2099db6ee14/output b/server/target/debug/build/libc-e3cfd2099db6ee14/output new file mode 100644 index 0000000..89a43b5 --- /dev/null +++ b/server/target/debug/build/libc-e3cfd2099db6ee14/output @@ -0,0 +1,25 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION +cargo:rustc-cfg=freebsd12 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_MUSL_V1_2_3 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_TIME_BITS +cargo:rustc-check-cfg=cfg(emscripten_old_stat_abi) +cargo:rustc-check-cfg=cfg(espidf_time32) +cargo:rustc-check-cfg=cfg(freebsd10) +cargo:rustc-check-cfg=cfg(freebsd11) +cargo:rustc-check-cfg=cfg(freebsd12) +cargo:rustc-check-cfg=cfg(freebsd13) +cargo:rustc-check-cfg=cfg(freebsd14) +cargo:rustc-check-cfg=cfg(freebsd15) +cargo:rustc-check-cfg=cfg(gnu_file_offset_bits64) +cargo:rustc-check-cfg=cfg(gnu_time_bits64) +cargo:rustc-check-cfg=cfg(libc_deny_warnings) +cargo:rustc-check-cfg=cfg(linux_time_bits64) +cargo:rustc-check-cfg=cfg(musl_v1_2_3) +cargo:rustc-check-cfg=cfg(musl32_time64) +cargo:rustc-check-cfg=cfg(vxworks_lt_25_09) +cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx","cygwin","qurt")) +cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos","nto71_iosock","nto80")) +cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) diff --git a/server/target/debug/build/libc-e3cfd2099db6ee14/root-output b/server/target/debug/build/libc-e3cfd2099db6ee14/root-output new file mode 100644 index 0000000..27cc40c --- /dev/null +++ b/server/target/debug/build/libc-e3cfd2099db6ee14/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/libc-e3cfd2099db6ee14/out \ No newline at end of file diff --git a/server/target/debug/build/libc-e3cfd2099db6ee14/stderr b/server/target/debug/build/libc-e3cfd2099db6ee14/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/libc-f7181fc07a3cbf6e/build-script-build b/server/target/debug/build/libc-f7181fc07a3cbf6e/build-script-build new file mode 100755 index 0000000..0ccd434 Binary files /dev/null and b/server/target/debug/build/libc-f7181fc07a3cbf6e/build-script-build differ diff --git a/server/target/debug/build/libc-f7181fc07a3cbf6e/build_script_build-f7181fc07a3cbf6e b/server/target/debug/build/libc-f7181fc07a3cbf6e/build_script_build-f7181fc07a3cbf6e new file mode 100755 index 0000000..0ccd434 Binary files /dev/null and b/server/target/debug/build/libc-f7181fc07a3cbf6e/build_script_build-f7181fc07a3cbf6e differ diff --git a/server/target/debug/build/libc-f7181fc07a3cbf6e/build_script_build-f7181fc07a3cbf6e.d b/server/target/debug/build/libc-f7181fc07a3cbf6e/build_script_build-f7181fc07a3cbf6e.d new file mode 100644 index 0000000..ff7cb99 --- /dev/null +++ b/server/target/debug/build/libc-f7181fc07a3cbf6e/build_script_build-f7181fc07a3cbf6e.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/libc-f7181fc07a3cbf6e/build_script_build-f7181fc07a3cbf6e.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/build.rs + +/home/z/my-project/projects/server/target/debug/build/libc-f7181fc07a3cbf6e/build_script_build-f7181fc07a3cbf6e: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/build.rs: diff --git a/server/target/debug/build/mime_guess-0224f58ecbf4d1c5/build-script-build b/server/target/debug/build/mime_guess-0224f58ecbf4d1c5/build-script-build new file mode 100755 index 0000000..0b0da82 Binary files /dev/null and b/server/target/debug/build/mime_guess-0224f58ecbf4d1c5/build-script-build differ diff --git a/server/target/debug/build/mime_guess-0224f58ecbf4d1c5/build_script_build-0224f58ecbf4d1c5 b/server/target/debug/build/mime_guess-0224f58ecbf4d1c5/build_script_build-0224f58ecbf4d1c5 new file mode 100755 index 0000000..0b0da82 Binary files /dev/null and b/server/target/debug/build/mime_guess-0224f58ecbf4d1c5/build_script_build-0224f58ecbf4d1c5 differ diff --git a/server/target/debug/build/mime_guess-0224f58ecbf4d1c5/build_script_build-0224f58ecbf4d1c5.d b/server/target/debug/build/mime_guess-0224f58ecbf4d1c5/build_script_build-0224f58ecbf4d1c5.d new file mode 100644 index 0000000..c793af8 --- /dev/null +++ b/server/target/debug/build/mime_guess-0224f58ecbf4d1c5/build_script_build-0224f58ecbf4d1c5.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/build/mime_guess-0224f58ecbf4d1c5/build_script_build-0224f58ecbf4d1c5.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/build.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/src/mime_types.rs + +/home/z/my-project/projects/server/target/debug/build/mime_guess-0224f58ecbf4d1c5/build_script_build-0224f58ecbf4d1c5: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/build.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/src/mime_types.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/build.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/src/mime_types.rs: diff --git a/server/target/debug/build/mime_guess-dab029086dacac36/invoked.timestamp b/server/target/debug/build/mime_guess-dab029086dacac36/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/mime_guess-dab029086dacac36/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/mime_guess-dab029086dacac36/out/mime_types_generated.rs b/server/target/debug/build/mime_guess-dab029086dacac36/out/mime_types_generated.rs new file mode 100644 index 0000000..9b19ce4 --- /dev/null +++ b/server/target/debug/build/mime_guess-dab029086dacac36/out/mime_types_generated.rs @@ -0,0 +1,2 @@ +static REV_MAPPINGS: &'static [(UniCase<&'static str>, TopLevelExts)] = &[(UniCase::ascii("application"), TopLevelExts { start: 0, end: 941, subs: &[(UniCase::ascii("acad"), (0, 1)),(UniCase::ascii("andrew-inset"), (1, 2)),(UniCase::ascii("annodex"), (2, 3)),(UniCase::ascii("applixware"), (3, 4)),(UniCase::ascii("atom+xml"), (4, 5)),(UniCase::ascii("atomcat+xml"), (5, 6)),(UniCase::ascii("atomsvc+xml"), (6, 7)),(UniCase::ascii("bdoc"), (7, 8)),(UniCase::ascii("ccxml+xml"), (8, 9)),(UniCase::ascii("cdmi-capability"), (9, 10)),(UniCase::ascii("cdmi-container"), (10, 11)),(UniCase::ascii("cdmi-domain"), (11, 12)),(UniCase::ascii("cdmi-object"), (12, 13)),(UniCase::ascii("cdmi-queue"), (13, 14)),(UniCase::ascii("cu-seeme"), (14, 15)),(UniCase::ascii("dash+xml"), (15, 16)),(UniCase::ascii("davmount+xml"), (16, 17)),(UniCase::ascii("directx"), (17, 18)),(UniCase::ascii("docbook+xml"), (18, 19)),(UniCase::ascii("dssc+der"), (19, 20)),(UniCase::ascii("dssc+xml"), (20, 21)),(UniCase::ascii("emma+xml"), (21, 22)),(UniCase::ascii("envoy"), (22, 23)),(UniCase::ascii("epub+zip"), (23, 24)),(UniCase::ascii("etl"), (24, 25)),(UniCase::ascii("exi"), (25, 26)),(UniCase::ascii("font-sfnt"), (26, 28)),(UniCase::ascii("font-tdpfr"), (28, 29)),(UniCase::ascii("font-woff"), (29, 30)),(UniCase::ascii("fractals"), (30, 31)),(UniCase::ascii("fsharp-script"), (31, 33)),(UniCase::ascii("futuresplash"), (33, 34)),(UniCase::ascii("geo+json"), (34, 35)),(UniCase::ascii("gml+xml"), (35, 36)),(UniCase::ascii("gpx+xml"), (36, 37)),(UniCase::ascii("gxf"), (37, 38)),(UniCase::ascii("gzip"), (38, 39)),(UniCase::ascii("hjson"), (39, 40)),(UniCase::ascii("hta"), (40, 41)),(UniCase::ascii("hyperstudio"), (41, 42)),(UniCase::ascii("inkml+xml"), (42, 44)),(UniCase::ascii("internet-property-stream"), (44, 45)),(UniCase::ascii("ipfix"), (45, 46)),(UniCase::ascii("java-archive"), (46, 49)),(UniCase::ascii("java-serialized-object"), (49, 50)),(UniCase::ascii("javascript"), (50, 51)),(UniCase::ascii("json"), (51, 52)),(UniCase::ascii("json5"), (52, 53)),(UniCase::ascii("jsonml+json"), (53, 54)),(UniCase::ascii("ld+json"), (54, 55)),(UniCase::ascii("liquidmotion"), (55, 57)),(UniCase::ascii("lost+xml"), (57, 58)),(UniCase::ascii("mac-binhex40"), (58, 59)),(UniCase::ascii("mac-compactpro"), (59, 60)),(UniCase::ascii("mads+xml"), (60, 61)),(UniCase::ascii("manifest+json"), (61, 62)),(UniCase::ascii("marc"), (62, 63)),(UniCase::ascii("marcxml+xml"), (63, 64)),(UniCase::ascii("mathematica"), (64, 67)),(UniCase::ascii("mathml+xml"), (67, 68)),(UniCase::ascii("mbox"), (68, 69)),(UniCase::ascii("mediaservercontrol+xml"), (69, 70)),(UniCase::ascii("metalink+xml"), (70, 71)),(UniCase::ascii("metalink4+xml"), (71, 72)),(UniCase::ascii("mets+xml"), (72, 73)),(UniCase::ascii("mods+xml"), (73, 74)),(UniCase::ascii("mp21"), (74, 76)),(UniCase::ascii("mp4"), (76, 77)),(UniCase::ascii("mpeg"), (77, 78)),(UniCase::ascii("ms-vsi"), (78, 79)),(UniCase::ascii("msaccess"), (79, 86)),(UniCase::ascii("msaccess.addin"), (86, 87)),(UniCase::ascii("msaccess.cab"), (87, 88)),(UniCase::ascii("msaccess.ftemplate"), (88, 89)),(UniCase::ascii("msaccess.runtime"), (89, 90)),(UniCase::ascii("msaccess.webapplication"), (90, 91)),(UniCase::ascii("msword"), (91, 95)),(UniCase::ascii("mxf"), (95, 96)),(UniCase::ascii("n-quads"), (96, 97)),(UniCase::ascii("n-triples"), (97, 98)),(UniCase::ascii("octet-stream"), (98, 169)),(UniCase::ascii("oda"), (169, 170)),(UniCase::ascii("oebps-package+xml"), (170, 171)),(UniCase::ascii("ogg"), (171, 172)),(UniCase::ascii("olescript"), (172, 173)),(UniCase::ascii("omdoc+xml"), (173, 174)),(UniCase::ascii("onenote"), (174, 180)),(UniCase::ascii("opensearchdescription+xml"), (180, 181)),(UniCase::ascii("oxps"), (181, 182)),(UniCase::ascii("patch-ops-error+xml"), (182, 183)),(UniCase::ascii("pdf"), (183, 184)),(UniCase::ascii("pgp-encrypted"), (184, 185)),(UniCase::ascii("pgp-signature"), (185, 187)),(UniCase::ascii("pics-rules"), (187, 188)),(UniCase::ascii("pkcs10"), (188, 189)),(UniCase::ascii("pkcs7-mime"), (189, 191)),(UniCase::ascii("pkcs7-signature"), (191, 192)),(UniCase::ascii("pkcs8"), (192, 193)),(UniCase::ascii("pkix-attr-cert"), (193, 194)),(UniCase::ascii("pkix-crl"), (194, 195)),(UniCase::ascii("pkix-pkipath"), (195, 196)),(UniCase::ascii("pkixcmp"), (196, 197)),(UniCase::ascii("postscript"), (197, 200)),(UniCase::ascii("PowerShell"), (200, 201)),(UniCase::ascii("prs.cww"), (201, 202)),(UniCase::ascii("pskc+xml"), (202, 203)),(UniCase::ascii("raml+yaml"), (203, 204)),(UniCase::ascii("rat-file"), (204, 205)),(UniCase::ascii("rdf+xml"), (205, 206)),(UniCase::ascii("reginfo+xml"), (206, 207)),(UniCase::ascii("relax-ng-compact-syntax"), (207, 208)),(UniCase::ascii("resource-lists+xml"), (208, 209)),(UniCase::ascii("resource-lists-diff+xml"), (209, 210)),(UniCase::ascii("rpki-ghostbusters"), (210, 211)),(UniCase::ascii("rpki-manifest"), (211, 212)),(UniCase::ascii("rpki-roa"), (212, 213)),(UniCase::ascii("rsd+xml"), (213, 214)),(UniCase::ascii("rss+xml"), (214, 215)),(UniCase::ascii("rtf"), (215, 216)),(UniCase::ascii("sbml+xml"), (216, 217)),(UniCase::ascii("scvp-cv-request"), (217, 218)),(UniCase::ascii("scvp-cv-response"), (218, 219)),(UniCase::ascii("scvp-vp-request"), (219, 220)),(UniCase::ascii("scvp-vp-response"), (220, 221)),(UniCase::ascii("sdp"), (221, 222)),(UniCase::ascii("set-payment-initiation"), (222, 223)),(UniCase::ascii("set-registration-initiation"), (223, 224)),(UniCase::ascii("shf+xml"), (224, 225)),(UniCase::ascii("smil+xml"), (225, 226)),(UniCase::ascii("sparql-query"), (226, 227)),(UniCase::ascii("sparql-results+xml"), (227, 228)),(UniCase::ascii("srgs"), (228, 229)),(UniCase::ascii("srgs+xml"), (229, 230)),(UniCase::ascii("sru+xml"), (230, 231)),(UniCase::ascii("ssdl+xml"), (231, 232)),(UniCase::ascii("ssml+xml"), (232, 233)),(UniCase::ascii("step"), (233, 235)),(UniCase::ascii("streamingmedia"), (235, 236)),(UniCase::ascii("tei+xml"), (236, 238)),(UniCase::ascii("thraud+xml"), (238, 239)),(UniCase::ascii("timestamped-data"), (239, 240)),(UniCase::ascii("trig"), (240, 241)),(UniCase::ascii("vnd.3gpp.pic-bw-large"), (241, 242)),(UniCase::ascii("vnd.3gpp.pic-bw-small"), (242, 243)),(UniCase::ascii("vnd.3gpp.pic-bw-var"), (243, 244)),(UniCase::ascii("vnd.3gpp2.tcap"), (244, 245)),(UniCase::ascii("vnd.3m.post-it-notes"), (245, 246)),(UniCase::ascii("vnd.accpac.simply.aso"), (246, 247)),(UniCase::ascii("vnd.accpac.simply.imp"), (247, 248)),(UniCase::ascii("vnd.acucobol"), (248, 249)),(UniCase::ascii("vnd.acucorp"), (249, 251)),(UniCase::ascii("vnd.adobe.air-application-installer-package+zip"), (251, 252)),(UniCase::ascii("vnd.adobe.formscentral.fcdt"), (252, 253)),(UniCase::ascii("vnd.adobe.fxp"), (253, 255)),(UniCase::ascii("vnd.adobe.xdp+xml"), (255, 256)),(UniCase::ascii("vnd.adobe.xfdf"), (256, 257)),(UniCase::ascii("vnd.ahead.space"), (257, 258)),(UniCase::ascii("vnd.airzip.filesecure.azf"), (258, 259)),(UniCase::ascii("vnd.airzip.filesecure.azs"), (259, 260)),(UniCase::ascii("vnd.amazon.ebook"), (260, 261)),(UniCase::ascii("vnd.americandynamics.acc"), (261, 262)),(UniCase::ascii("vnd.amiga.ami"), (262, 263)),(UniCase::ascii("vnd.android.package-archive"), (263, 264)),(UniCase::ascii("vnd.anser-web-certificate-issue-initiation"), (264, 265)),(UniCase::ascii("vnd.anser-web-funds-transfer-initiation"), (265, 266)),(UniCase::ascii("vnd.antix.game-component"), (266, 267)),(UniCase::ascii("vnd.apache.parquet"), (267, 268)),(UniCase::ascii("vnd.apple.installer+xml"), (268, 269)),(UniCase::ascii("vnd.apple.pkpass"), (269, 270)),(UniCase::ascii("vnd.aristanetworks.swi"), (270, 271)),(UniCase::ascii("vnd.astraea-software.iota"), (271, 272)),(UniCase::ascii("vnd.audiograph"), (272, 273)),(UniCase::ascii("vnd.blueice.multipass"), (273, 274)),(UniCase::ascii("vnd.bmi"), (274, 275)),(UniCase::ascii("vnd.businessobjects"), (275, 276)),(UniCase::ascii("vnd.chemdraw+xml"), (276, 277)),(UniCase::ascii("vnd.chipnuts.karaoke-mmd"), (277, 278)),(UniCase::ascii("vnd.cinderella"), (278, 279)),(UniCase::ascii("vnd.citationstyles.style+xml"), (279, 280)),(UniCase::ascii("vnd.claymore"), (280, 281)),(UniCase::ascii("vnd.cloanto.rp9"), (281, 282)),(UniCase::ascii("vnd.clonk.c4group"), (282, 287)),(UniCase::ascii("vnd.cluetrust.cartomobile-config"), (287, 288)),(UniCase::ascii("vnd.cluetrust.cartomobile-config-pkg"), (288, 289)),(UniCase::ascii("vnd.commonspace"), (289, 290)),(UniCase::ascii("vnd.contact.cmsg"), (290, 291)),(UniCase::ascii("vnd.cosmocaller"), (291, 292)),(UniCase::ascii("vnd.crick.clicker"), (292, 293)),(UniCase::ascii("vnd.crick.clicker.keyboard"), (293, 294)),(UniCase::ascii("vnd.crick.clicker.palette"), (294, 295)),(UniCase::ascii("vnd.crick.clicker.template"), (295, 296)),(UniCase::ascii("vnd.crick.clicker.wordbank"), (296, 297)),(UniCase::ascii("vnd.criticaltools.wbs+xml"), (297, 298)),(UniCase::ascii("vnd.cups-ppd"), (298, 299)),(UniCase::ascii("vnd.curl.car"), (299, 300)),(UniCase::ascii("vnd.curl.pcurl"), (300, 301)),(UniCase::ascii("vnd.dart"), (301, 302)),(UniCase::ascii("vnd.data-vision.rdz"), (302, 303)),(UniCase::ascii("vnd.dece.data"), (303, 307)),(UniCase::ascii("vnd.dece.ttml+xml"), (307, 309)),(UniCase::ascii("vnd.dece.unspecified"), (309, 311)),(UniCase::ascii("vnd.dece.zip"), (311, 313)),(UniCase::ascii("vnd.denovo.fcselayout-link"), (313, 314)),(UniCase::ascii("vnd.dna"), (314, 315)),(UniCase::ascii("vnd.dolby.mlp"), (315, 316)),(UniCase::ascii("vnd.dpgraph"), (316, 317)),(UniCase::ascii("vnd.dreamfactory"), (317, 318)),(UniCase::ascii("vnd.ds-keypoint"), (318, 319)),(UniCase::ascii("vnd.dvb.ait"), (319, 320)),(UniCase::ascii("vnd.dynageo"), (320, 321)),(UniCase::ascii("vnd.ecowin.chart"), (321, 322)),(UniCase::ascii("vnd.enliven"), (322, 323)),(UniCase::ascii("vnd.epson.esf"), (323, 324)),(UniCase::ascii("vnd.epson.msf"), (324, 325)),(UniCase::ascii("vnd.epson.quickanime"), (325, 326)),(UniCase::ascii("vnd.epson.salt"), (326, 327)),(UniCase::ascii("vnd.epson.ssf"), (327, 328)),(UniCase::ascii("vnd.eszigno3+xml"), (328, 330)),(UniCase::ascii("vnd.ezpix-album"), (330, 331)),(UniCase::ascii("vnd.ezpix-package"), (331, 332)),(UniCase::ascii("vnd.fdf"), (332, 333)),(UniCase::ascii("vnd.fdsn.mseed"), (333, 334)),(UniCase::ascii("vnd.fdsn.seed"), (334, 336)),(UniCase::ascii("vnd.flographit"), (336, 337)),(UniCase::ascii("vnd.fluxtime.clip"), (337, 338)),(UniCase::ascii("vnd.framemaker"), (338, 342)),(UniCase::ascii("vnd.frogans.fnc"), (342, 343)),(UniCase::ascii("vnd.frogans.ltf"), (343, 344)),(UniCase::ascii("vnd.fsc.weblaunch"), (344, 345)),(UniCase::ascii("vnd.fujitsu.oasys"), (345, 346)),(UniCase::ascii("vnd.fujitsu.oasys2"), (346, 347)),(UniCase::ascii("vnd.fujitsu.oasys3"), (347, 348)),(UniCase::ascii("vnd.fujitsu.oasysgp"), (348, 349)),(UniCase::ascii("vnd.fujitsu.oasysprs"), (349, 350)),(UniCase::ascii("vnd.fujixerox.ddd"), (350, 351)),(UniCase::ascii("vnd.fujixerox.docuworks"), (351, 352)),(UniCase::ascii("vnd.fujixerox.docuworks.binder"), (352, 353)),(UniCase::ascii("vnd.fuzzysheet"), (353, 354)),(UniCase::ascii("vnd.genomatix.tuxedo"), (354, 355)),(UniCase::ascii("vnd.geogebra.file"), (355, 356)),(UniCase::ascii("vnd.geogebra.tool"), (356, 357)),(UniCase::ascii("vnd.geometry-explorer"), (357, 359)),(UniCase::ascii("vnd.geonext"), (359, 360)),(UniCase::ascii("vnd.geoplan"), (360, 361)),(UniCase::ascii("vnd.geospace"), (361, 362)),(UniCase::ascii("vnd.gmx"), (362, 363)),(UniCase::ascii("vnd.google-apps.document"), (363, 364)),(UniCase::ascii("vnd.google-apps.presentation"), (364, 365)),(UniCase::ascii("vnd.google-apps.spreadsheet"), (365, 366)),(UniCase::ascii("vnd.google-earth.kml+xml"), (366, 367)),(UniCase::ascii("vnd.google-earth.kmz"), (367, 368)),(UniCase::ascii("vnd.grafeq"), (368, 370)),(UniCase::ascii("vnd.groove-account"), (370, 371)),(UniCase::ascii("vnd.groove-help"), (371, 372)),(UniCase::ascii("vnd.groove-identity-message"), (372, 373)),(UniCase::ascii("vnd.groove-injector"), (373, 374)),(UniCase::ascii("vnd.groove-tool-message"), (374, 375)),(UniCase::ascii("vnd.groove-tool-template"), (375, 376)),(UniCase::ascii("vnd.groove-vcard"), (376, 377)),(UniCase::ascii("vnd.hal+xml"), (377, 378)),(UniCase::ascii("vnd.handheld-entertainment+xml"), (378, 379)),(UniCase::ascii("vnd.hbci"), (379, 380)),(UniCase::ascii("vnd.hhe.lesson-player"), (380, 381)),(UniCase::ascii("vnd.hp-hpgl"), (381, 382)),(UniCase::ascii("vnd.hp-hpid"), (382, 383)),(UniCase::ascii("vnd.hp-hps"), (383, 384)),(UniCase::ascii("vnd.hp-jlyt"), (384, 385)),(UniCase::ascii("vnd.hp-pcl"), (385, 386)),(UniCase::ascii("vnd.hp-pclxl"), (386, 387)),(UniCase::ascii("vnd.hydrostatix.sof-data"), (387, 388)),(UniCase::ascii("vnd.ibm.minipay"), (388, 389)),(UniCase::ascii("vnd.ibm.modcap"), (389, 392)),(UniCase::ascii("vnd.ibm.rights-management"), (392, 393)),(UniCase::ascii("vnd.ibm.secure-container"), (393, 394)),(UniCase::ascii("vnd.iccprofile"), (394, 396)),(UniCase::ascii("vnd.igloader"), (396, 397)),(UniCase::ascii("vnd.immervision-ivp"), (397, 398)),(UniCase::ascii("vnd.immervision-ivu"), (398, 399)),(UniCase::ascii("vnd.insors.igm"), (399, 400)),(UniCase::ascii("vnd.intercon.formnet"), (400, 402)),(UniCase::ascii("vnd.intergeo"), (402, 403)),(UniCase::ascii("vnd.intu.qbo"), (403, 404)),(UniCase::ascii("vnd.intu.qfx"), (404, 405)),(UniCase::ascii("vnd.ipunplugged.rcprofile"), (405, 406)),(UniCase::ascii("vnd.irepository.package+xml"), (406, 407)),(UniCase::ascii("vnd.is-xpr"), (407, 408)),(UniCase::ascii("vnd.isac.fcs"), (408, 409)),(UniCase::ascii("vnd.jam"), (409, 410)),(UniCase::ascii("vnd.jcp.javame.midlet-rms"), (410, 411)),(UniCase::ascii("vnd.jisp"), (411, 412)),(UniCase::ascii("vnd.joost.joda-archive"), (412, 413)),(UniCase::ascii("vnd.kahootz"), (413, 415)),(UniCase::ascii("vnd.kde.karbon"), (415, 416)),(UniCase::ascii("vnd.kde.kchart"), (416, 417)),(UniCase::ascii("vnd.kde.kformula"), (417, 418)),(UniCase::ascii("vnd.kde.kivio"), (418, 419)),(UniCase::ascii("vnd.kde.kontour"), (419, 420)),(UniCase::ascii("vnd.kde.kpresenter"), (420, 422)),(UniCase::ascii("vnd.kde.kspread"), (422, 423)),(UniCase::ascii("vnd.kde.kword"), (423, 425)),(UniCase::ascii("vnd.kenameaapp"), (425, 426)),(UniCase::ascii("vnd.kidspiration"), (426, 427)),(UniCase::ascii("vnd.kinar"), (427, 429)),(UniCase::ascii("vnd.koan"), (429, 432)),(UniCase::ascii("vnd.kodak-descriptor"), (432, 433)),(UniCase::ascii("vnd.las.las+xml"), (433, 434)),(UniCase::ascii("vnd.llamagraphics.life-balance.desktop"), (434, 435)),(UniCase::ascii("vnd.llamagraphics.life-balance.exchange+xml"), (435, 436)),(UniCase::ascii("vnd.lotus-1-2-3"), (436, 437)),(UniCase::ascii("vnd.lotus-approach"), (437, 438)),(UniCase::ascii("vnd.lotus-freelance"), (438, 439)),(UniCase::ascii("vnd.lotus-notes"), (439, 440)),(UniCase::ascii("vnd.lotus-organizer"), (440, 441)),(UniCase::ascii("vnd.lotus-screencam"), (441, 442)),(UniCase::ascii("vnd.lotus-wordpro"), (442, 443)),(UniCase::ascii("vnd.macports.portpkg"), (443, 444)),(UniCase::ascii("vnd.mcd"), (444, 445)),(UniCase::ascii("vnd.medcalcdata"), (445, 446)),(UniCase::ascii("vnd.mediastation.cdkey"), (446, 447)),(UniCase::ascii("vnd.mfer"), (447, 448)),(UniCase::ascii("vnd.mfmp"), (448, 449)),(UniCase::ascii("vnd.micrografx.flo"), (449, 450)),(UniCase::ascii("vnd.micrografx.igx"), (450, 451)),(UniCase::ascii("vnd.mif"), (451, 452)),(UniCase::ascii("vnd.mobius.daf"), (452, 453)),(UniCase::ascii("vnd.mobius.dis"), (453, 454)),(UniCase::ascii("vnd.mobius.mbk"), (454, 455)),(UniCase::ascii("vnd.mobius.mqy"), (455, 456)),(UniCase::ascii("vnd.mobius.msl"), (456, 457)),(UniCase::ascii("vnd.mobius.plc"), (457, 458)),(UniCase::ascii("vnd.mobius.txf"), (458, 459)),(UniCase::ascii("vnd.mophun.application"), (459, 460)),(UniCase::ascii("vnd.mophun.certificate"), (460, 461)),(UniCase::ascii("vnd.mozilla.xul+xml"), (461, 462)),(UniCase::ascii("vnd.ms-artgalry"), (462, 463)),(UniCase::ascii("vnd.ms-excel"), (463, 473)),(UniCase::ascii("vnd.ms-excel.addin.macroEnabled.12"), (473, 474)),(UniCase::ascii("vnd.ms-excel.sheet.binary.macroEnabled.12"), (474, 475)),(UniCase::ascii("vnd.ms-excel.sheet.macroEnabled.12"), (475, 476)),(UniCase::ascii("vnd.ms-excel.template.macroEnabled.12"), (476, 477)),(UniCase::ascii("vnd.ms-fontobject"), (477, 478)),(UniCase::ascii("vnd.ms-htmlhelp"), (478, 479)),(UniCase::ascii("vnd.ms-ims"), (479, 480)),(UniCase::ascii("vnd.ms-lrm"), (480, 481)),(UniCase::ascii("vnd.ms-mediapackage"), (481, 482)),(UniCase::ascii("vnd.ms-office.calx"), (482, 483)),(UniCase::ascii("vnd.ms-officetheme"), (483, 484)),(UniCase::ascii("vnd.ms-outlook"), (484, 486)),(UniCase::ascii("vnd.ms-pki.certstore"), (486, 487)),(UniCase::ascii("vnd.ms-pki.pko"), (487, 488)),(UniCase::ascii("vnd.ms-pki.seccat"), (488, 489)),(UniCase::ascii("vnd.ms-pki.stl"), (489, 490)),(UniCase::ascii("vnd.ms-powerpoint"), (490, 495)),(UniCase::ascii("vnd.ms-powerpoint.addin.macroEnabled.12"), (495, 496)),(UniCase::ascii("vnd.ms-powerpoint.presentation.macroEnabled.12"), (496, 497)),(UniCase::ascii("vnd.ms-powerpoint.slide.macroEnabled.12"), (497, 498)),(UniCase::ascii("vnd.ms-powerpoint.slideshow.macroEnabled.12"), (498, 499)),(UniCase::ascii("vnd.ms-powerpoint.template.macroEnabled.12"), (499, 500)),(UniCase::ascii("vnd.ms-project"), (500, 502)),(UniCase::ascii("vnd.ms-visio.viewer"), (502, 503)),(UniCase::ascii("vnd.ms-word.document.macroEnabled.12"), (503, 504)),(UniCase::ascii("vnd.ms-word.template.macroEnabled.12"), (504, 505)),(UniCase::ascii("vnd.ms-works"), (505, 509)),(UniCase::ascii("vnd.ms-wpl"), (509, 510)),(UniCase::ascii("vnd.ms-xpsdocument"), (510, 511)),(UniCase::ascii("vnd.mseq"), (511, 512)),(UniCase::ascii("vnd.musician"), (512, 513)),(UniCase::ascii("vnd.muvee.style"), (513, 514)),(UniCase::ascii("vnd.mynfc"), (514, 515)),(UniCase::ascii("vnd.neurolanguage.nlu"), (515, 516)),(UniCase::ascii("vnd.nitf"), (516, 518)),(UniCase::ascii("vnd.noblenet-directory"), (518, 519)),(UniCase::ascii("vnd.noblenet-sealer"), (519, 520)),(UniCase::ascii("vnd.noblenet-web"), (520, 521)),(UniCase::ascii("vnd.nokia.n-gage.data"), (521, 522)),(UniCase::ascii("vnd.nokia.n-gage.symbian.install"), (522, 523)),(UniCase::ascii("vnd.nokia.radio-preset"), (523, 524)),(UniCase::ascii("vnd.nokia.radio-presets"), (524, 525)),(UniCase::ascii("vnd.novadigm.edm"), (525, 526)),(UniCase::ascii("vnd.novadigm.edx"), (526, 527)),(UniCase::ascii("vnd.novadigm.ext"), (527, 528)),(UniCase::ascii("vnd.oasis.opendocument.chart"), (528, 529)),(UniCase::ascii("vnd.oasis.opendocument.chart-template"), (529, 530)),(UniCase::ascii("vnd.oasis.opendocument.database"), (530, 531)),(UniCase::ascii("vnd.oasis.opendocument.formula"), (531, 532)),(UniCase::ascii("vnd.oasis.opendocument.formula-template"), (532, 533)),(UniCase::ascii("vnd.oasis.opendocument.graphics"), (533, 534)),(UniCase::ascii("vnd.oasis.opendocument.graphics-template"), (534, 535)),(UniCase::ascii("vnd.oasis.opendocument.image"), (535, 536)),(UniCase::ascii("vnd.oasis.opendocument.image-template"), (536, 537)),(UniCase::ascii("vnd.oasis.opendocument.presentation"), (537, 538)),(UniCase::ascii("vnd.oasis.opendocument.presentation-template"), (538, 539)),(UniCase::ascii("vnd.oasis.opendocument.spreadsheet"), (539, 540)),(UniCase::ascii("vnd.oasis.opendocument.spreadsheet-template"), (540, 541)),(UniCase::ascii("vnd.oasis.opendocument.text"), (541, 542)),(UniCase::ascii("vnd.oasis.opendocument.text-master"), (542, 543)),(UniCase::ascii("vnd.oasis.opendocument.text-template"), (543, 544)),(UniCase::ascii("vnd.oasis.opendocument.text-web"), (544, 545)),(UniCase::ascii("vnd.olpc-sugar"), (545, 546)),(UniCase::ascii("vnd.oma.dd2+xml"), (546, 547)),(UniCase::ascii("vnd.openofficeorg.extension"), (547, 548)),(UniCase::ascii("vnd.openxmlformats-officedocument.presentationml.presentation"), (548, 549)),(UniCase::ascii("vnd.openxmlformats-officedocument.presentationml.slide"), (549, 550)),(UniCase::ascii("vnd.openxmlformats-officedocument.presentationml.slideshow"), (550, 551)),(UniCase::ascii("vnd.openxmlformats-officedocument.presentationml.template"), (551, 552)),(UniCase::ascii("vnd.openxmlformats-officedocument.spreadsheetml.sheet"), (552, 553)),(UniCase::ascii("vnd.openxmlformats-officedocument.spreadsheetml.template"), (553, 554)),(UniCase::ascii("vnd.openxmlformats-officedocument.wordprocessingml.document"), (554, 555)),(UniCase::ascii("vnd.openxmlformats-officedocument.wordprocessingml.template"), (555, 556)),(UniCase::ascii("vnd.osgeo.mapguide.package"), (556, 557)),(UniCase::ascii("vnd.osgi.dp"), (557, 558)),(UniCase::ascii("vnd.osgi.subsystem"), (558, 559)),(UniCase::ascii("vnd.palm"), (559, 562)),(UniCase::ascii("vnd.pawaafile"), (562, 563)),(UniCase::ascii("vnd.pg.format"), (563, 564)),(UniCase::ascii("vnd.pg.osasli"), (564, 565)),(UniCase::ascii("vnd.picsel"), (565, 566)),(UniCase::ascii("vnd.pmi.widget"), (566, 567)),(UniCase::ascii("vnd.pocketlearn"), (567, 568)),(UniCase::ascii("vnd.powerbuilder6"), (568, 569)),(UniCase::ascii("vnd.previewsystems.box"), (569, 570)),(UniCase::ascii("vnd.proteus.magazine"), (570, 571)),(UniCase::ascii("vnd.publishare-delta-tree"), (571, 572)),(UniCase::ascii("vnd.pvi.ptid1"), (572, 573)),(UniCase::ascii("vnd.quark.quarkxpress"), (573, 578)),(UniCase::ascii("vnd.realvnc.bed"), (578, 579)),(UniCase::ascii("vnd.recordare.musicxml"), (579, 580)),(UniCase::ascii("vnd.recordare.musicxml+xml"), (580, 581)),(UniCase::ascii("vnd.rig.cryptonote"), (581, 582)),(UniCase::ascii("vnd.rn-realmedia"), (582, 583)),(UniCase::ascii("vnd.rn-realmedia-vbr"), (583, 584)),(UniCase::ascii("vnd.rn-rn_music_package"), (584, 585)),(UniCase::ascii("vnd.route66.link66+xml"), (585, 586)),(UniCase::ascii("vnd.sailingtracker.track"), (586, 587)),(UniCase::ascii("vnd.seemail"), (587, 588)),(UniCase::ascii("vnd.sema"), (588, 589)),(UniCase::ascii("vnd.semd"), (589, 590)),(UniCase::ascii("vnd.semf"), (590, 591)),(UniCase::ascii("vnd.shana.informed.formdata"), (591, 592)),(UniCase::ascii("vnd.shana.informed.formtemplate"), (592, 593)),(UniCase::ascii("vnd.shana.informed.interchange"), (593, 594)),(UniCase::ascii("vnd.shana.informed.package"), (594, 595)),(UniCase::ascii("vnd.simtech-mindmapper"), (595, 597)),(UniCase::ascii("vnd.smart.teacher"), (597, 598)),(UniCase::ascii("vnd.solent.sdkm+xml"), (598, 600)),(UniCase::ascii("vnd.spotfire.dxp"), (600, 601)),(UniCase::ascii("vnd.spotfire.sfs"), (601, 602)),(UniCase::ascii("vnd.stardivision.calc"), (602, 603)),(UniCase::ascii("vnd.stardivision.draw"), (603, 604)),(UniCase::ascii("vnd.stardivision.impress"), (604, 605)),(UniCase::ascii("vnd.stardivision.math"), (605, 606)),(UniCase::ascii("vnd.stardivision.writer"), (606, 608)),(UniCase::ascii("vnd.stardivision.writer-global"), (608, 609)),(UniCase::ascii("vnd.stepmania.package"), (609, 610)),(UniCase::ascii("vnd.stepmania.stepchart"), (610, 611)),(UniCase::ascii("vnd.sun.wadl+xml"), (611, 612)),(UniCase::ascii("vnd.sun.xml.calc"), (612, 613)),(UniCase::ascii("vnd.sun.xml.calc.template"), (613, 614)),(UniCase::ascii("vnd.sun.xml.draw"), (614, 615)),(UniCase::ascii("vnd.sun.xml.draw.template"), (615, 616)),(UniCase::ascii("vnd.sun.xml.impress"), (616, 617)),(UniCase::ascii("vnd.sun.xml.impress.template"), (617, 618)),(UniCase::ascii("vnd.sun.xml.math"), (618, 619)),(UniCase::ascii("vnd.sun.xml.writer"), (619, 620)),(UniCase::ascii("vnd.sun.xml.writer.global"), (620, 621)),(UniCase::ascii("vnd.sun.xml.writer.template"), (621, 622)),(UniCase::ascii("vnd.sus-calendar"), (622, 624)),(UniCase::ascii("vnd.svd"), (624, 625)),(UniCase::ascii("vnd.symbian.install"), (625, 627)),(UniCase::ascii("vnd.syncml+xml"), (627, 628)),(UniCase::ascii("vnd.syncml.dm+wbxml"), (628, 629)),(UniCase::ascii("vnd.syncml.dm+xml"), (629, 630)),(UniCase::ascii("vnd.tao.intent-module-archive"), (630, 631)),(UniCase::ascii("vnd.tcpdump.pcap"), (631, 634)),(UniCase::ascii("vnd.tmobile-livetv"), (634, 635)),(UniCase::ascii("vnd.trid.tpt"), (635, 636)),(UniCase::ascii("vnd.triscape.mxs"), (636, 637)),(UniCase::ascii("vnd.trueapp"), (637, 638)),(UniCase::ascii("vnd.ufdl"), (638, 640)),(UniCase::ascii("vnd.uiq.theme"), (640, 641)),(UniCase::ascii("vnd.umajin"), (641, 642)),(UniCase::ascii("vnd.unity"), (642, 643)),(UniCase::ascii("vnd.uoml+xml"), (643, 644)),(UniCase::ascii("vnd.vcx"), (644, 645)),(UniCase::ascii("vnd.visio"), (645, 651)),(UniCase::ascii("vnd.visionary"), (651, 652)),(UniCase::ascii("vnd.vsf"), (652, 653)),(UniCase::ascii("vnd.wap.wbxml"), (653, 654)),(UniCase::ascii("vnd.wap.wmlc"), (654, 655)),(UniCase::ascii("vnd.wap.wmlscriptc"), (655, 656)),(UniCase::ascii("vnd.webturbo"), (656, 657)),(UniCase::ascii("vnd.wolfram.player"), (657, 658)),(UniCase::ascii("vnd.wordperfect"), (658, 659)),(UniCase::ascii("vnd.wqd"), (659, 660)),(UniCase::ascii("vnd.wt.stf"), (660, 661)),(UniCase::ascii("vnd.xara"), (661, 662)),(UniCase::ascii("vnd.xfdl"), (662, 663)),(UniCase::ascii("vnd.yamaha.hv-dic"), (663, 664)),(UniCase::ascii("vnd.yamaha.hv-script"), (664, 665)),(UniCase::ascii("vnd.yamaha.hv-voice"), (665, 666)),(UniCase::ascii("vnd.yamaha.openscoreformat"), (666, 667)),(UniCase::ascii("vnd.yamaha.openscoreformat.osfpvg+xml"), (667, 668)),(UniCase::ascii("vnd.yamaha.smaf-audio"), (668, 669)),(UniCase::ascii("vnd.yamaha.smaf-phrase"), (669, 670)),(UniCase::ascii("vnd.yellowriver-custom-menu"), (670, 671)),(UniCase::ascii("vnd.zul"), (671, 673)),(UniCase::ascii("vnd.zzazz.deck+xml"), (673, 674)),(UniCase::ascii("voicexml+xml"), (674, 675)),(UniCase::ascii("vsix"), (675, 676)),(UniCase::ascii("wasm"), (676, 677)),(UniCase::ascii("widget"), (677, 678)),(UniCase::ascii("windows-library+xml"), (678, 679)),(UniCase::ascii("windows-search-connector+xml"), (679, 680)),(UniCase::ascii("winhlp"), (680, 681)),(UniCase::ascii("wlmoviemaker"), (681, 682)),(UniCase::ascii("wspolicy+xml"), (682, 683)),(UniCase::ascii("x-7z-compressed"), (683, 684)),(UniCase::ascii("x-abiword"), (684, 685)),(UniCase::ascii("x-ace-compressed"), (685, 686)),(UniCase::ascii("x-arj"), (686, 687)),(UniCase::ascii("x-authorware-bin"), (687, 690)),(UniCase::ascii("x-authorware-map"), (690, 691)),(UniCase::ascii("x-authorware-seg"), (691, 692)),(UniCase::ascii("x-bcpio"), (692, 693)),(UniCase::ascii("x-bittorrent"), (693, 694)),(UniCase::ascii("x-blorb"), (694, 696)),(UniCase::ascii("x-bridge-url"), (696, 697)),(UniCase::ascii("x-bzip"), (697, 698)),(UniCase::ascii("x-bzip2"), (698, 700)),(UniCase::ascii("x-cbr"), (700, 705)),(UniCase::ascii("x-cdf"), (705, 706)),(UniCase::ascii("x-cdlink"), (706, 707)),(UniCase::ascii("x-cfs-compressed"), (707, 708)),(UniCase::ascii("x-chat"), (708, 709)),(UniCase::ascii("x-chess-pgn"), (709, 710)),(UniCase::ascii("x-chrome-extension"), (710, 711)),(UniCase::ascii("x-cocoa"), (711, 712)),(UniCase::ascii("x-compress"), (712, 713)),(UniCase::ascii("x-compressed"), (713, 714)),(UniCase::ascii("x-cpio"), (714, 715)),(UniCase::ascii("x-csh"), (715, 716)),(UniCase::ascii("x-debian-package"), (716, 717)),(UniCase::ascii("x-dgc-compressed"), (717, 718)),(UniCase::ascii("x-director"), (718, 727)),(UniCase::ascii("x-doom"), (727, 728)),(UniCase::ascii("x-dtbncx+xml"), (728, 729)),(UniCase::ascii("x-dtbook+xml"), (729, 730)),(UniCase::ascii("x-dtbresource+xml"), (730, 731)),(UniCase::ascii("x-dvi"), (731, 732)),(UniCase::ascii("x-dxf"), (732, 733)),(UniCase::ascii("x-endace-erf"), (733, 734)),(UniCase::ascii("x-eva"), (734, 735)),(UniCase::ascii("x-font-bdf"), (735, 736)),(UniCase::ascii("x-font-ghostscript"), (736, 737)),(UniCase::ascii("x-font-linux-psf"), (737, 738)),(UniCase::ascii("x-font-pcf"), (738, 739)),(UniCase::ascii("x-font-snf"), (739, 740)),(UniCase::ascii("x-font-ttf"), (740, 741)),(UniCase::ascii("x-font-type1"), (741, 742)),(UniCase::ascii("x-freearc"), (742, 743)),(UniCase::ascii("x-gca-compressed"), (743, 744)),(UniCase::ascii("x-glulx"), (744, 745)),(UniCase::ascii("x-gnumeric"), (745, 746)),(UniCase::ascii("x-gramps-xml"), (746, 747)),(UniCase::ascii("x-gtar"), (747, 748)),(UniCase::ascii("x-gzip"), (748, 749)),(UniCase::ascii("x-hdf"), (749, 750)),(UniCase::ascii("x-httpd-php"), (750, 751)),(UniCase::ascii("x-install-instructions"), (751, 752)),(UniCase::ascii("x-internet-signup"), (752, 754)),(UniCase::ascii("x-iphone"), (754, 755)),(UniCase::ascii("x-itunes-ipa"), (755, 756)),(UniCase::ascii("x-itunes-ipg"), (756, 757)),(UniCase::ascii("x-itunes-ipsw"), (757, 758)),(UniCase::ascii("x-itunes-ite"), (758, 759)),(UniCase::ascii("x-itunes-itlp"), (759, 760)),(UniCase::ascii("x-itunes-itms"), (760, 761)),(UniCase::ascii("x-itunes-itpc"), (761, 762)),(UniCase::ascii("x-java-applet"), (762, 763)),(UniCase::ascii("x-java-archive-diff"), (763, 764)),(UniCase::ascii("x-java-jnlp-file"), (764, 765)),(UniCase::ascii("x-koan"), (765, 766)),(UniCase::ascii("x-latex"), (766, 767)),(UniCase::ascii("x-lua-bytecode"), (767, 768)),(UniCase::ascii("x-lzh-compressed"), (768, 769)),(UniCase::ascii("x-makeself"), (769, 770)),(UniCase::ascii("x-mie"), (770, 771)),(UniCase::ascii("x-miva-compiled"), (771, 772)),(UniCase::ascii("x-mmxp"), (772, 773)),(UniCase::ascii("x-mobipocket-ebook"), (773, 775)),(UniCase::ascii("x-ms-application"), (775, 776)),(UniCase::ascii("x-ms-license"), (776, 777)),(UniCase::ascii("x-ms-manifest"), (777, 778)),(UniCase::ascii("x-ms-reader"), (778, 779)),(UniCase::ascii("x-ms-shortcut"), (779, 780)),(UniCase::ascii("x-ms-vsto"), (780, 781)),(UniCase::ascii("x-ms-wmd"), (781, 782)),(UniCase::ascii("x-ms-wmz"), (782, 783)),(UniCase::ascii("x-ms-xbap"), (783, 784)),(UniCase::ascii("x-msaccess"), (784, 785)),(UniCase::ascii("x-msbinder"), (785, 786)),(UniCase::ascii("x-mscardfile"), (786, 787)),(UniCase::ascii("x-msclip"), (787, 788)),(UniCase::ascii("x-msdownload"), (788, 791)),(UniCase::ascii("x-msmediaview"), (791, 794)),(UniCase::ascii("x-msmetafile"), (794, 796)),(UniCase::ascii("x-msmoney"), (796, 797)),(UniCase::ascii("x-mspublisher"), (797, 798)),(UniCase::ascii("x-msschedule"), (798, 799)),(UniCase::ascii("x-msterminal"), (799, 800)),(UniCase::ascii("x-mswrite"), (800, 801)),(UniCase::ascii("x-netcdf"), (801, 802)),(UniCase::ascii("x-ns-proxy-autoconfig"), (802, 803)),(UniCase::ascii("x-nzb"), (803, 804)),(UniCase::ascii("x-oleobject"), (804, 805)),(UniCase::ascii("x-parquet"), (805, 806)),(UniCase::ascii("x-perfmon"), (806, 811)),(UniCase::ascii("x-perl"), (811, 813)),(UniCase::ascii("x-pkcs12"), (813, 815)),(UniCase::ascii("x-pkcs7-certificates"), (815, 817)),(UniCase::ascii("x-pkcs7-certreqresp"), (817, 818)),(UniCase::ascii("x-podcast"), (818, 819)),(UniCase::ascii("x-quicktimeplayer"), (819, 820)),(UniCase::ascii("x-rar-compressed"), (820, 821)),(UniCase::ascii("x-research-info-systems"), (821, 822)),(UniCase::ascii("x-safari-safariextz"), (822, 823)),(UniCase::ascii("x-safari-webarchive"), (823, 824)),(UniCase::ascii("x-sgimb"), (824, 825)),(UniCase::ascii("x-sh"), (825, 826)),(UniCase::ascii("x-shar"), (826, 827)),(UniCase::ascii("x-shockwave-flash"), (827, 829)),(UniCase::ascii("x-silverlight-app"), (829, 830)),(UniCase::ascii("x-smaf"), (830, 831)),(UniCase::ascii("x-sql"), (831, 832)),(UniCase::ascii("x-stuffit"), (832, 833)),(UniCase::ascii("x-stuffitx"), (833, 834)),(UniCase::ascii("x-subrip"), (834, 835)),(UniCase::ascii("x-sv4cpio"), (835, 836)),(UniCase::ascii("x-sv4crc"), (836, 837)),(UniCase::ascii("x-t3vm-image"), (837, 838)),(UniCase::ascii("x-tads"), (838, 839)),(UniCase::ascii("x-tar"), (839, 840)),(UniCase::ascii("x-tcl"), (840, 842)),(UniCase::ascii("x-tex"), (842, 843)),(UniCase::ascii("x-tex-tfm"), (843, 844)),(UniCase::ascii("x-texinfo"), (844, 846)),(UniCase::ascii("x-tgif"), (846, 847)),(UniCase::ascii("x-troff"), (847, 850)),(UniCase::ascii("x-troff-man"), (850, 851)),(UniCase::ascii("x-troff-me"), (851, 852)),(UniCase::ascii("x-troff-ms"), (852, 853)),(UniCase::ascii("x-ustar"), (853, 854)),(UniCase::ascii("x-virtualbox-hdd"), (854, 855)),(UniCase::ascii("x-virtualbox-ova"), (855, 856)),(UniCase::ascii("x-virtualbox-ovf"), (856, 857)),(UniCase::ascii("x-virtualbox-vbox"), (857, 858)),(UniCase::ascii("x-virtualbox-vbox-extpack"), (858, 859)),(UniCase::ascii("x-virtualbox-vdi"), (859, 860)),(UniCase::ascii("x-virtualbox-vhd"), (860, 861)),(UniCase::ascii("x-virtualbox-vmdk"), (861, 862)),(UniCase::ascii("x-wais-source"), (862, 863)),(UniCase::ascii("x-web-app-manifest+json"), (863, 864)),(UniCase::ascii("x-wlpg-detect"), (864, 865)),(UniCase::ascii("x-wlpg3-detect"), (865, 866)),(UniCase::ascii("x-x509-ca-cert"), (866, 870)),(UniCase::ascii("x-xfig"), (870, 871)),(UniCase::ascii("x-xliff+xml"), (871, 872)),(UniCase::ascii("x-xpinstall"), (872, 873)),(UniCase::ascii("x-xz"), (873, 874)),(UniCase::ascii("x-zmachine"), (874, 882)),(UniCase::ascii("xaml+xml"), (882, 883)),(UniCase::ascii("xcap-diff+xml"), (883, 884)),(UniCase::ascii("xenc+xml"), (884, 885)),(UniCase::ascii("xhtml+xml"), (885, 887)),(UniCase::ascii("xml"), (887, 931)),(UniCase::ascii("xop+xml"), (931, 932)),(UniCase::ascii("xproc+xml"), (932, 933)),(UniCase::ascii("xspf+xml"), (933, 934)),(UniCase::ascii("xv+xml"), (934, 938)),(UniCase::ascii("yang"), (938, 939)),(UniCase::ascii("yin+xml"), (939, 940)),(UniCase::ascii("zip"), (940, 941)),] }),(UniCase::ascii("audio"), TopLevelExts { start: 941, end: 1007, subs: &[(UniCase::ascii("aac"), (941, 943)),(UniCase::ascii("ac3"), (943, 944)),(UniCase::ascii("aiff"), (944, 948)),(UniCase::ascii("annodex"), (948, 949)),(UniCase::ascii("audible"), (949, 950)),(UniCase::ascii("basic"), (950, 952)),(UniCase::ascii("flac"), (952, 953)),(UniCase::ascii("m4a"), (953, 954)),(UniCase::ascii("m4b"), (954, 955)),(UniCase::ascii("m4p"), (955, 956)),(UniCase::ascii("mid"), (956, 959)),(UniCase::ascii("midi"), (959, 960)),(UniCase::ascii("mp4"), (960, 961)),(UniCase::ascii("mpeg"), (961, 967)),(UniCase::ascii("ogg"), (967, 971)),(UniCase::ascii("s3m"), (971, 972)),(UniCase::ascii("scpls"), (972, 973)),(UniCase::ascii("silk"), (973, 974)),(UniCase::ascii("vnd.audible.aax"), (974, 975)),(UniCase::ascii("vnd.dece.audio"), (975, 977)),(UniCase::ascii("vnd.digital-winds"), (977, 978)),(UniCase::ascii("vnd.dlna.adts"), (978, 979)),(UniCase::ascii("vnd.dra"), (979, 980)),(UniCase::ascii("vnd.dts"), (980, 981)),(UniCase::ascii("vnd.dts.hd"), (981, 982)),(UniCase::ascii("vnd.lucent.voice"), (982, 983)),(UniCase::ascii("vnd.ms-playready.media.pya"), (983, 984)),(UniCase::ascii("vnd.nuera.ecelp4800"), (984, 985)),(UniCase::ascii("vnd.nuera.ecelp7470"), (985, 986)),(UniCase::ascii("vnd.nuera.ecelp9600"), (986, 987)),(UniCase::ascii("vnd.rip"), (987, 988)),(UniCase::ascii("wav"), (988, 990)),(UniCase::ascii("webm"), (990, 991)),(UniCase::ascii("x-caf"), (991, 992)),(UniCase::ascii("x-gsm"), (992, 993)),(UniCase::ascii("x-m4r"), (993, 994)),(UniCase::ascii("x-matroska"), (994, 995)),(UniCase::ascii("x-mpegurl"), (995, 997)),(UniCase::ascii("x-ms-wax"), (997, 998)),(UniCase::ascii("x-ms-wma"), (998, 999)),(UniCase::ascii("x-pn-realaudio"), (999, 1001)),(UniCase::ascii("x-pn-realaudio-plugin"), (1001, 1002)),(UniCase::ascii("x-sd2"), (1002, 1003)),(UniCase::ascii("x-smd"), (1003, 1006)),(UniCase::ascii("xm"), (1006, 1007)),] }),(UniCase::ascii("chemical"), TopLevelExts { start: 1007, end: 1013, subs: &[(UniCase::ascii("x-cdx"), (1007, 1008)),(UniCase::ascii("x-cif"), (1008, 1009)),(UniCase::ascii("x-cmdf"), (1009, 1010)),(UniCase::ascii("x-cml"), (1010, 1011)),(UniCase::ascii("x-csml"), (1011, 1012)),(UniCase::ascii("x-xyz"), (1012, 1013)),] }),(UniCase::ascii("drawing"), TopLevelExts { start: 1013, end: 1014, subs: &[(UniCase::ascii("x-dwf"), (1013, 1014)),] }),(UniCase::ascii("font"), TopLevelExts { start: 1014, end: 1017, subs: &[(UniCase::ascii("collection"), (1014, 1015)),(UniCase::ascii("ttf"), (1015, 1016)),(UniCase::ascii("woff2"), (1016, 1017)),] }),(UniCase::ascii("image"), TopLevelExts { start: 1017, end: 1119, subs: &[(UniCase::ascii("apng"), (1017, 1018)),(UniCase::ascii("avif"), (1018, 1019)),(UniCase::ascii("avif-sequence"), (1019, 1020)),(UniCase::ascii("bmp"), (1020, 1022)),(UniCase::ascii("cgm"), (1022, 1023)),(UniCase::ascii("cis-cod"), (1023, 1024)),(UniCase::ascii("g3fax"), (1024, 1025)),(UniCase::ascii("gif"), (1025, 1026)),(UniCase::ascii("heic"), (1026, 1027)),(UniCase::ascii("heic-sequence"), (1027, 1028)),(UniCase::ascii("heif"), (1028, 1029)),(UniCase::ascii("heif-sequence"), (1029, 1030)),(UniCase::ascii("ief"), (1030, 1031)),(UniCase::ascii("jp2"), (1031, 1033)),(UniCase::ascii("jpeg"), (1033, 1037)),(UniCase::ascii("jpm"), (1037, 1038)),(UniCase::ascii("jpx"), (1038, 1040)),(UniCase::ascii("jxl"), (1040, 1041)),(UniCase::ascii("ktx"), (1041, 1042)),(UniCase::ascii("pict"), (1042, 1045)),(UniCase::ascii("png"), (1045, 1047)),(UniCase::ascii("prs.btif"), (1047, 1048)),(UniCase::ascii("sgi"), (1048, 1049)),(UniCase::ascii("svg+xml"), (1049, 1051)),(UniCase::ascii("tiff"), (1051, 1053)),(UniCase::ascii("vnd.dece.graphic"), (1053, 1057)),(UniCase::ascii("vnd.djvu"), (1057, 1059)),(UniCase::ascii("vnd.fastbidsheet"), (1059, 1060)),(UniCase::ascii("vnd.fpx"), (1060, 1061)),(UniCase::ascii("vnd.fst"), (1061, 1062)),(UniCase::ascii("vnd.fujixerox.edmics-mmr"), (1062, 1063)),(UniCase::ascii("vnd.fujixerox.edmics-rlc"), (1063, 1064)),(UniCase::ascii("vnd.ms-modi"), (1064, 1065)),(UniCase::ascii("vnd.ms-photo"), (1065, 1066)),(UniCase::ascii("vnd.net-fpx"), (1066, 1067)),(UniCase::ascii("vnd.radiance"), (1067, 1068)),(UniCase::ascii("vnd.rn-realflash"), (1068, 1069)),(UniCase::ascii("vnd.wap.wbmp"), (1069, 1070)),(UniCase::ascii("vnd.xiff"), (1070, 1071)),(UniCase::ascii("webp"), (1071, 1072)),(UniCase::ascii("x-3ds"), (1072, 1073)),(UniCase::ascii("x-adobe-dng"), (1073, 1074)),(UniCase::ascii("x-canon-cr2"), (1074, 1075)),(UniCase::ascii("x-canon-cr3"), (1075, 1076)),(UniCase::ascii("x-canon-crw"), (1076, 1077)),(UniCase::ascii("x-cmu-raster"), (1077, 1078)),(UniCase::ascii("x-cmx"), (1078, 1079)),(UniCase::ascii("x-epson-erf"), (1079, 1080)),(UniCase::ascii("x-freehand"), (1080, 1085)),(UniCase::ascii("x-fuji-raf"), (1085, 1086)),(UniCase::ascii("x-icon"), (1086, 1087)),(UniCase::ascii("x-jg"), (1087, 1088)),(UniCase::ascii("x-jng"), (1088, 1089)),(UniCase::ascii("x-kodak-dcr"), (1089, 1090)),(UniCase::ascii("x-kodak-k25"), (1090, 1091)),(UniCase::ascii("x-kodak-kdc"), (1091, 1092)),(UniCase::ascii("x-macpaint"), (1092, 1095)),(UniCase::ascii("x-minolta-mrw"), (1095, 1096)),(UniCase::ascii("x-mrsid-image"), (1096, 1097)),(UniCase::ascii("x-nikon-nef"), (1097, 1098)),(UniCase::ascii("x-nikon-nrw"), (1098, 1099)),(UniCase::ascii("x-olympus-orf"), (1099, 1100)),(UniCase::ascii("x-panasonic-rw"), (1100, 1101)),(UniCase::ascii("x-panasonic-rw2"), (1101, 1103)),(UniCase::ascii("x-pentax-pef"), (1103, 1104)),(UniCase::ascii("x-portable-anymap"), (1104, 1105)),(UniCase::ascii("x-portable-bitmap"), (1105, 1106)),(UniCase::ascii("x-portable-graymap"), (1106, 1107)),(UniCase::ascii("x-portable-pixmap"), (1107, 1108)),(UniCase::ascii("x-quicktime"), (1108, 1110)),(UniCase::ascii("x-rgb"), (1110, 1111)),(UniCase::ascii("x-sigma-x3f"), (1111, 1112)),(UniCase::ascii("x-sony-arw"), (1112, 1113)),(UniCase::ascii("x-sony-sr2"), (1113, 1114)),(UniCase::ascii("x-sony-srf"), (1114, 1115)),(UniCase::ascii("x-tga"), (1115, 1116)),(UniCase::ascii("x-xbitmap"), (1116, 1117)),(UniCase::ascii("x-xpixmap"), (1117, 1118)),(UniCase::ascii("x-xwindowdump"), (1118, 1119)),] }),(UniCase::ascii("message"), TopLevelExts { start: 1119, end: 1129, subs: &[(UniCase::ascii("disposition-notification"), (1119, 1120)),(UniCase::ascii("global"), (1120, 1121)),(UniCase::ascii("global-delivery-status"), (1121, 1122)),(UniCase::ascii("global-disposition-notification"), (1122, 1123)),(UniCase::ascii("global-headers"), (1123, 1124)),(UniCase::ascii("rfc822"), (1124, 1129)),] }),(UniCase::ascii("model"), TopLevelExts { start: 1129, end: 1147, subs: &[(UniCase::ascii("gltf+json"), (1129, 1130)),(UniCase::ascii("gltf-binary"), (1130, 1131)),(UniCase::ascii("iges"), (1131, 1133)),(UniCase::ascii("mesh"), (1133, 1136)),(UniCase::ascii("vnd.collada+xml"), (1136, 1137)),(UniCase::ascii("vnd.gdl"), (1137, 1138)),(UniCase::ascii("vnd.gtw"), (1138, 1139)),(UniCase::ascii("vnd.vtu"), (1139, 1140)),(UniCase::ascii("vrml"), (1140, 1141)),(UniCase::ascii("x3d+binary"), (1141, 1143)),(UniCase::ascii("x3d+vrml"), (1143, 1145)),(UniCase::ascii("x3d+xml"), (1145, 1147)),] }),(UniCase::ascii("text"), TopLevelExts { start: 1147, end: 1330, subs: &[(UniCase::ascii("cache-manifest"), (1147, 1148)),(UniCase::ascii("calendar"), (1148, 1150)),(UniCase::ascii("coffeescript"), (1150, 1152)),(UniCase::ascii("css"), (1152, 1153)),(UniCase::ascii("csv"), (1153, 1154)),(UniCase::ascii("dlm"), (1154, 1155)),(UniCase::ascii("gemini"), (1155, 1157)),(UniCase::ascii("h323"), (1157, 1158)),(UniCase::ascii("html"), (1158, 1162)),(UniCase::ascii("iuls"), (1162, 1163)),(UniCase::ascii("jade"), (1163, 1164)),(UniCase::ascii("javascript"), (1164, 1169)),(UniCase::ascii("less"), (1169, 1170)),(UniCase::ascii("markdown"), (1170, 1172)),(UniCase::ascii("mathml"), (1172, 1173)),(UniCase::ascii("n3"), (1173, 1174)),(UniCase::ascii("plain"), (1174, 1242)),(UniCase::ascii("prs.lines.tag"), (1242, 1243)),(UniCase::ascii("richtext"), (1243, 1244)),(UniCase::ascii("scriptlet"), (1244, 1246)),(UniCase::ascii("sgml"), (1246, 1248)),(UniCase::ascii("shex"), (1248, 1249)),(UniCase::ascii("slim"), (1249, 1251)),(UniCase::ascii("stylus"), (1251, 1253)),(UniCase::ascii("tab-separated-values"), (1253, 1254)),(UniCase::ascii("turtle"), (1254, 1255)),(UniCase::ascii("uri-list"), (1255, 1258)),(UniCase::ascii("vbscript"), (1258, 1259)),(UniCase::ascii("vcard"), (1259, 1260)),(UniCase::ascii("vnd.curl"), (1260, 1261)),(UniCase::ascii("vnd.curl.dcurl"), (1261, 1262)),(UniCase::ascii("vnd.curl.mcurl"), (1262, 1263)),(UniCase::ascii("vnd.curl.scurl"), (1263, 1264)),(UniCase::ascii("vnd.dvb.subtitle"), (1264, 1265)),(UniCase::ascii("vnd.fly"), (1265, 1266)),(UniCase::ascii("vnd.fmi.flexstor"), (1266, 1267)),(UniCase::ascii("vnd.graphviz"), (1267, 1268)),(UniCase::ascii("vnd.in3d.3dml"), (1268, 1269)),(UniCase::ascii("vnd.in3d.spot"), (1269, 1270)),(UniCase::ascii("vnd.sun.j2me.app-descriptor"), (1270, 1271)),(UniCase::ascii("vnd.wap.wml"), (1271, 1272)),(UniCase::ascii("vnd.wap.wmlscript"), (1272, 1273)),(UniCase::ascii("vtt"), (1273, 1274)),(UniCase::ascii("webviewhtml"), (1274, 1275)),(UniCase::ascii("x-c"), (1275, 1276)),(UniCase::ascii("x-component"), (1276, 1277)),(UniCase::ascii("x-fortran"), (1277, 1281)),(UniCase::ascii("x-gherkin"), (1281, 1282)),(UniCase::ascii("x-handlebars-template"), (1282, 1283)),(UniCase::ascii("x-hdml"), (1283, 1284)),(UniCase::ascii("x-html-insertion"), (1284, 1286)),(UniCase::ascii("x-lua"), (1286, 1287)),(UniCase::ascii("x-markdown"), (1287, 1289)),(UniCase::ascii("x-ms-contact"), (1289, 1290)),(UniCase::ascii("x-ms-group"), (1290, 1291)),(UniCase::ascii("x-ms-iqy"), (1291, 1292)),(UniCase::ascii("x-ms-rqy"), (1292, 1293)),(UniCase::ascii("x-nfo"), (1293, 1294)),(UniCase::ascii("x-opml"), (1294, 1295)),(UniCase::ascii("x-pascal"), (1295, 1297)),(UniCase::ascii("x-processing"), (1297, 1298)),(UniCase::ascii("x-rust"), (1298, 1299)),(UniCase::ascii("x-sass"), (1299, 1300)),(UniCase::ascii("x-scss"), (1300, 1301)),(UniCase::ascii("x-setext"), (1301, 1302)),(UniCase::ascii("x-sfv"), (1302, 1303)),(UniCase::ascii("x-suse-ymp"), (1303, 1304)),(UniCase::ascii("x-toml"), (1304, 1305)),(UniCase::ascii("x-uuencode"), (1305, 1306)),(UniCase::ascii("x-vcard"), (1306, 1307)),(UniCase::ascii("x-yaml"), (1307, 1309)),(UniCase::ascii("xml"), (1309, 1330)),] }),(UniCase::ascii("video"), TopLevelExts { start: 1330, end: 1411, subs: &[(UniCase::ascii("3gpp"), (1330, 1332)),(UniCase::ascii("3gpp2"), (1332, 1334)),(UniCase::ascii("annodex"), (1334, 1335)),(UniCase::ascii("divx"), (1335, 1336)),(UniCase::ascii("h261"), (1336, 1337)),(UniCase::ascii("h263"), (1337, 1338)),(UniCase::ascii("h264"), (1338, 1339)),(UniCase::ascii("jpeg"), (1339, 1340)),(UniCase::ascii("jpm"), (1340, 1341)),(UniCase::ascii("mj2"), (1341, 1343)),(UniCase::ascii("mp4"), (1343, 1346)),(UniCase::ascii("mpeg"), (1346, 1357)),(UniCase::ascii("ogg"), (1357, 1358)),(UniCase::ascii("quicktime"), (1358, 1361)),(UniCase::ascii("vnd.dece.hd"), (1361, 1363)),(UniCase::ascii("vnd.dece.mobile"), (1363, 1365)),(UniCase::ascii("vnd.dece.pd"), (1365, 1367)),(UniCase::ascii("vnd.dece.sd"), (1367, 1369)),(UniCase::ascii("vnd.dece.video"), (1369, 1371)),(UniCase::ascii("vnd.dlna.mpeg-tts"), (1371, 1376)),(UniCase::ascii("vnd.dvb.file"), (1376, 1377)),(UniCase::ascii("vnd.fvt"), (1377, 1378)),(UniCase::ascii("vnd.mpegurl"), (1378, 1380)),(UniCase::ascii("vnd.ms-playready.media.pyv"), (1380, 1381)),(UniCase::ascii("vnd.uvvu.mp4"), (1381, 1383)),(UniCase::ascii("vnd.vivo"), (1383, 1384)),(UniCase::ascii("webm"), (1384, 1385)),(UniCase::ascii("x-dv"), (1385, 1387)),(UniCase::ascii("x-f4v"), (1387, 1388)),(UniCase::ascii("x-fli"), (1388, 1389)),(UniCase::ascii("x-flv"), (1389, 1390)),(UniCase::ascii("x-ivf"), (1390, 1391)),(UniCase::ascii("x-la-asf"), (1391, 1393)),(UniCase::ascii("x-m4v"), (1393, 1394)),(UniCase::ascii("x-matroska"), (1394, 1397)),(UniCase::ascii("x-mng"), (1397, 1398)),(UniCase::ascii("x-ms-asf"), (1398, 1402)),(UniCase::ascii("x-ms-vob"), (1402, 1403)),(UniCase::ascii("x-ms-wm"), (1403, 1404)),(UniCase::ascii("x-ms-wmp"), (1404, 1405)),(UniCase::ascii("x-ms-wmv"), (1405, 1406)),(UniCase::ascii("x-ms-wmx"), (1406, 1407)),(UniCase::ascii("x-ms-wvx"), (1407, 1408)),(UniCase::ascii("x-msvideo"), (1408, 1409)),(UniCase::ascii("x-sgi-movie"), (1409, 1410)),(UniCase::ascii("x-smv"), (1410, 1411)),] }),(UniCase::ascii("x-conference"), TopLevelExts { start: 1411, end: 1412, subs: &[(UniCase::ascii("x-cooltalk"), (1411, 1412)),] }),(UniCase::ascii("x-world"), TopLevelExts { start: 1412, end: 1417, subs: &[(UniCase::ascii("x-vrml"), (1412, 1417)),] }),]; +const EXTS: &'static [&'static str] = &["dwg", "ez", "anx", "aw", "atom", "atomcat", "atomsvc", "bdoc", "ccxml", "cdmia", "cdmic", "cdmid", "cdmio", "cdmiq", "cu", "mpd", "davmount", "x", "dbk", "dssc", "xdssc", "emma", "evy", "epub", "etl", "exi", "otf", "ttf", "pfr", "woff", "fif", "fsscript", "fsx", "spl", "geojson", "gml", "gpx", "gxf", "gz", "hjson", "hta", "stk", "ink", "inkml", "acx", "ipfix", "ear", "jar", "war", "ser", "mjs", "json", "json5", "jsonml", "jsonld", "jck", "jcz", "lostxml", "hqx", "cpt", "mads", "webmanifest", "mrc", "mrcx", "ma", "mb", "nb", "mathml", "mbox", "mscml", "metalink", "meta4", "mets", "mods", "m21", "mp21", "mp4s", "amc", "vsi", "accdb", "accde", "accdt", "ade", "adp", "mda", "mde", "accda", "accdc", "accft", "accdr", "accdw", "doc", "dot", "wbk", "wiz", "mxf", "nq", "nt", "aaf", "aca", "afm", "asd", "asi", "bin", "bpk", "buffer", "cab", "cur", "dat", "deb", "deploy", "dist", "distz", "dmg", "dms", "dsp", "dump", "dwp", "elc", "emz", "exe", "fla", "hhk", "hhp", "hxd", "hxh", "hxi", "hxq", "hxr", "hxs", "hxw", "img", "inf", "iso", "java", "jpb", "lpk", "lrf", "lzh", "mar", "mdp", "mix", "msi", "msm", "mso", "msp", "ocx", "pcx", "pcz", "pfb", "pfm", "pkg", "prm", "prx", "psd", "psm", "psp", "qxd", "rvt", "sea", "smi", "snp", "so", "thn", "toc", "u32", "xmp", "xsn", "xtp", "oda", "opf", "ogx", "axs", "omdoc", "one", "onea", "onepkg", "onetmp", "onetoc", "onetoc2", "osdx", "oxps", "xer", "pdf", "pgp", "asc", "sig", "prf", "p10", "p7c", "p7m", "p7s", "p8", "ac", "crl", "pkipath", "pki", "ai", "eps", "ps", "psc1", "cww", "pskcxml", "raml", "rat", "rdf", "rif", "rnc", "rl", "rld", "gbr", "mft", "roa", "rsd", "rss", "rtf", "sbml", "scq", "scs", "spq", "spp", "sdp", "setpay", "setreg", "shf", "smil", "rq", "srx", "gram", "grxml", "sru", "ssdl", "ssml", "step", "stp", "ssm", "tei", "teicorpus", "tfi", "tsd", "trig", "plb", "psb", "pvb", "tcap", "pwn", "aso", "imp", "acu", "acutc", "atc", "air", "fcdt", "fxp", "fxpl", "xdp", "xfdf", "ahead", "azf", "azs", "azw", "acc", "ami", "apk", "cii", "fti", "atx", "parquet", "mpkg", "pkpass", "swi", "iota", "aep", "mpm", "bmi", "rep", "cdxml", "mmd", "cdy", "csl", "cla", "rp9", "c4d", "c4f", "c4g", "c4p", "c4u", "c11amc", "c11amz", "csp", "cdbcmsg", "cmc", "clkx", "clkk", "clkp", "clkt", "clkw", "wbs", "ppd", "car", "pcurl", "dart", "rdz", "uvd", "uvf", "uvvd", "uvvf", "uvt", "uvvt", "uvvx", "uvx", "uvvz", "uvz", "fe_launch", "dna", "mlp", "dpg", "dfac", "kpxx", "ait", "geo", "mag", "nml", "esf", "msf", "qam", "slt", "ssf", "es3", "et3", "ez2", "ez3", "fdf", "mseed", "dataless", "seed", "gph", "ftc", "book", "fm", "frame", "maker", "fnc", "ltf", "fsc", "oas", "oa2", "oa3", "fg5", "bh2", "ddd", "xdw", "xbd", "fzs", "txd", "ggb", "ggt", "gex", "gre", "gxt", "g2w", "g3w", "gmx", "gdoc", "gslides", "gsheet", "kml", "kmz", "gqf", "gqs", "gac", "ghf", "gim", "grv", "gtm", "tpl", "vcg", "hal", "zmm", "hbci", "les", "hpgl", "hpid", "hps", "jlt", "pcl", "pclxl", "sfd-hdstx", "mpy", "afp", "list3820", "listafp", "irm", "sc", "icc", "icm", "igl", "ivp", "ivu", "igm", "xpw", "xpx", "i2g", "qbo", "qfx", "rcprofile", "irp", "xpr", "fcs", "jam", "rms", "jisp", "joda", "ktr", "ktz", "karbon", "chrt", "kfo", "flw", "kon", "kpr", "kpt", "ksp", "kwd", "kwt", "htke", "kia", "kne", "knp", "skd", "skm", "skt", "sse", "lasxml", "lbd", "lbe", "123", "apr", "pre", "nsf", "org", "scm", "lwp", "portpkg", "mcd", "mc1", "cdkey", "mwf", "mfm", "flo", "igx", "mif", "daf", "dis", "mbk", "mqy", "msl", "plc", "txf", "mpn", "mpc", "xul", "cil", "slk", "xla", "xlc", "xld", "xlk", "xll", "xlm", "xls", "xlt", "xlw", "xlam", "xlsb", "xlsm", "xltm", "eot", "chm", "ims", "lrm", "mpf", "calx", "thmx", "msg", "pst", "sst", "pko", "cat", "stl", "pot", "ppa", "pps", "ppt", "pwz", "ppam", "pptm", "sldm", "ppsm", "potm", "mpp", "mpt", "vdx", "docm", "dotm", "wcm", "wdb", "wks", "wps", "wpl", "xps", "mseq", "mus", "msty", "taglet", "nlu", "nitf", "ntf", "nnd", "nns", "nnw", "ngdat", "n-gage", "rpst", "rpss", "edm", "edx", "ext", "odc", "otc", "odb", "odf", "odft", "odg", "otg", "odi", "oti", "odp", "otp", "ods", "ots", "odt", "odm", "ott", "oth", "xo", "dd2", "oxt", "pptx", "sldx", "ppsx", "potx", "xlsx", "xltx", "docx", "dotx", "mgp", "dp", "esa", "oprc", "pdb", "pqa", "paw", "str", "ei6", "efif", "wg", "plf", "pbd", "box", "mgz", "qps", "ptid", "qwd", "qwt", "qxb", "qxl", "qxt", "bed", "mxl", "musicxml", "cryptonote", "rm", "rmvb", "rmp", "link66", "st", "see", "sema", "semd", "semf", "ifm", "itp", "iif", "ipk", "twd", "twds", "teacher", "sdkd", "sdkm", "dxp", "sfs", "sdc", "sda", "sdd", "smf", "sdw", "vor", "sgl", "smzip", "sm", "wadl", "sxc", "stc", "sxd", "std", "sxi", "sti", "sxm", "sxw", "sxg", "stw", "sus", "susp", "svd", "sis", "sisx", "xsm", "bdm", "xdm", "tao", "cap", "dmp", "pcap", "tmo", "tpt", "mxs", "tra", "ufd", "ufdl", "utz", "umj", "unityweb", "uoml", "vcx", "vsd", "vss", "vst", "vsw", "vsx", "vtx", "vis", "vsf", "wbxml", "wmlc", "wmlsc", "wtb", "nbp", "wpd", "wqd", "stf", "xar", "xfdl", "hvd", "hvs", "hvp", "osf", "osfpvg", "saf", "spf", "cmp", "zir", "zirz", "zaz", "vxml", "vsix", "wasm", "wgt", "library-ms", "searchconnector-ms", "hlp", "wlmp", "wspolicy", "7z", "abw", "ace", "arj", "aab", "vox", "x32", "aam", "aas", "bcpio", "torrent", "blb", "blorb", "adobebridge", "bz", "boz", "bz2", "cb7", "cba", "cbr", "cbt", "cbz", "cdf", "vcd", "cfs", "chat", "pgn", "crx", "cco", "z", "tgz", "cpio", "csh", "udeb", "dgc", "cct", "cst", "cxt", "dcr", "dir", "dxr", "fgd", "swa", "w3d", "wad", "ncx", "dtb", "res", "dvi", "dxf", "erf", "eva", "bdf", "gsf", "psf", "pcf", "snf", "ttf", "pfa", "arc", "gca", "ulx", "gnumeric", "gramps", "gtar", "gz", "hdf", "php", "install", "ins", "isp", "iii", "ipa", "ipg", "ipsw", "ite", "itlp", "itms", "itpc", "class", "jardiff", "jnlp", "skp", "latex", "luac", "lha", "run", "mie", "mvc", "mxp", "mobi", "prc", "application", "slupkg-ms", "manifest", "lit", "lnk", "vsto", "wmd", "wmz", "xbap", "mdb", "obd", "crd", "clp", "bat", "com", "dll", "m13", "m14", "mvb", "emf", "wmf", "mny", "pub", "scd", "trm", "wri", "nc", "pac", "nzb", "hhc", "parquet", "pma", "pmc", "pml", "pmr", "pmw", "pl", "pm", "p12", "pfx", "p7b", "spc", "p7r", "pcast", "qtl", "rar", "ris", "safariextz", "webarchive", "sgimb", "sh", "shar", "mfp", "swf", "xap", "mmf", "sql", "sit", "sitx", "srt", "sv4cpio", "sv4crc", "t3", "gam", "tar", "tcl", "tk", "tex", "tfm", "texi", "texinfo", "obj", "roff", "t", "tr", "man", "me", "ms", "ustar", "hdd", "ova", "ovf", "vbox", "vbox-extpack", "vdi", "vhd", "vmdk", "src", "webapp", "wlpginstall", "wlpginstall3", "cer", "crt", "der", "pem", "fig", "xlf", "xpi", "xz", "z1", "z2", "z3", "z4", "z5", "z6", "z7", "z8", "xaml", "xdf", "xenc", "xht", "xhtml", "asa", "asax", "ascx", "ashx", "asmx", "aspx", "config", "coverage", "datasource", "dgml", "filters", "generictest", "hxa", "hxc", "hxe", "hxf", "hxk", "hxv", "loadtest", "master", "mtx", "orderedtest", "psess", "rdlc", "resx", "rng", "ruleset", "settings", "sitemap", "skin", "snippet", "svc", "testrunconfig", "testsettings", "trx", "vcproj", "vcxproj", "vscontent", "vsmdi", "webtest", "wiq", "xmta", "xsc", "xss", "xop", "xpl", "xspf", "mxml", "xhvml", "xvm", "xvml", "yang", "yin", "zip", "aac", "adts", "ac3", "aif", "aifc", "aiff", "cdda", "axa", "aa", "au", "snd", "flac", "m4a", "m4b", "m4p", "mid", "midi", "rmi", "kar", "mp4a", "m2a", "m3a", "mp2", "mp2a", "mp3", "mpga", "oga", "ogg", "opus", "spx", "s3m", "pls", "sil", "aax", "uva", "uvva", "eol", "adt", "dra", "dts", "dtshd", "lvp", "pya", "ecelp4800", "ecelp7470", "ecelp9600", "rip", "wav", "wave", "weba", "caf", "gsm", "m4r", "mka", "m3u", "m3u8", "wax", "wma", "ra", "ram", "rpm", "sd2", "smd", "smx", "smz", "xm", "cdx", "cif", "cmdf", "cml", "csml", "xyz", "dwf", "ttc", "ttf", "woff2", "apng", "avif", "avifs", "bmp", "dib", "cgm", "cod", "g3", "gif", "heic", "heics", "heif", "heifs", "ief", "jp2", "jpg2", "jfif", "jpe", "jpeg", "jpg", "jpm", "jpf", "jpx", "jxl", "ktx", "pct", "pic", "pict", "png", "pnz", "btif", "sgi", "svg", "svgz", "tif", "tiff", "uvg", "uvi", "uvvg", "uvvi", "djv", "djvu", "fbs", "fpx", "fst", "mmr", "rlc", "mdi", "wdp", "npx", "hdr", "rf", "wbmp", "xif", "webp", "3ds", "dng", "cr2", "cr3", "crw", "ras", "cmx", "erf", "fh", "fh4", "fh5", "fh7", "fhc", "raf", "ico", "art", "jng", "dcr", "k25", "kdc", "mac", "pnt", "pntg", "mrw", "sid", "nef", "nrw", "orf", "raw", "rw2", "rwl", "pef", "pnm", "pbm", "pgm", "ppm", "qti", "qtif", "rgb", "x3f", "arw", "sr2", "srf", "tga", "xbm", "xpm", "xwd", "disposition-notification", "u8msg", "u8dsn", "u8mdn", "u8hdr", "eml", "mht", "mhtml", "mime", "nws", "gltf", "glb", "iges", "igs", "mesh", "msh", "silo", "dae", "gdl", "gtw", "vtu", "vrml", "x3db", "x3dbz", "x3dv", "x3dvz", "x3d", "x3dz", "appcache", "ics", "ifb", "coffee", "litcoffee", "css", "csv", "dlm", "gemini", "gmi", "323", "htm", "html", "hxt", "shtml", "uls", "jade", "ecma", "es", "js", "jsm", "jsx", "less", "markdown", "md", "mml", "n3", "asm", "bas", "c", "cc", "cd", "cfg", "cmd", "cnf", "conf", "cpp", "cs", "csdproj", "csproj", "cxx", "dbproj", "def", "dsw", "h", "hh", "hpp", "hxx", "i", "idl", "in", "inc", "ini", "inl", "ipproj", "jsxbin", "list", "log", "lst", "mak", "map", "mk", "odh", "odl", "pkgdef", "pkgundef", "py", "rc", "rc2", "rct", "reg", "rgs", "s", "scr", "sln", "sol", "sor", "srf", "text", "tlh", "tli", "txt", "user", "vb", "vbdproj", "vbproj", "vcs", "vddproj", "vdp", "vdproj", "vspscc", "vsscc", "vssscc", "xdr", "xoml", "dsc", "rtx", "sct", "wsc", "sgm", "sgml", "shex", "slim", "slm", "styl", "stylus", "tsv", "ttl", "uri", "uris", "urls", "vbs", "vcard", "curl", "dcurl", "mcurl", "scurl", "sub", "fly", "flx", "gv", "3dml", "spot", "jad", "wml", "wmls", "vtt", "htt", "dic", "htc", "f", "f77", "f90", "for", "feature", "hbs", "hdml", "qht", "qhtm", "lua", "md", "mkd", "contact", "group", "iqy", "rqy", "nfo", "opml", "p", "pas", "pde", "rs", "sass", "scss", "etx", "sfv", "ymp", "toml", "uu", "vcf", "yaml", "yml", "addin", "disco", "dll.config", "dtd", "dtsconfig", "exe.config", "mno", "ssisdeploymentmanifest", "vml", "vsct", "vsixlangpack", "vsixmanifest", "vssettings", "vstemplate", "wsdl", "xml", "xrm-ms", "xsd", "xsf", "xsl", "xslt", "3gp", "3gpp", "3g2", "3gp2", "axv", "divx", "h261", "h263", "h264", "jpgv", "jpgm", "mj2", "mjp2", "mp4", "mp4v", "mpg4", "m1v", "m2v", "mod", "mp2", "mp2v", "mpa", "mpe", "mpeg", "mpg", "mpv2", "vbk", "ogv", "mov", "mqv", "qt", "uvh", "uvvh", "uvm", "uvvm", "uvp", "uvvp", "uvs", "uvvs", "uvv", "uvvv", "m2t", "m2ts", "mts", "ts", "tts", "dvb", "fvt", "m4u", "mxu", "pyv", "uvu", "uvvu", "viv", "webm", "dif", "dv", "f4v", "fli", "flv", "ivf", "lsf", "lsx", "m4v", "mk3d", "mks", "mkv", "mng", "asf", "asr", "asx", "nsc", "vob", "wm", "wmp", "wmv", "wmx", "wvx", "avi", "movie", "smv", "ice", "flr", "wrl", "wrz", "xaf", "xof"]; diff --git a/server/target/debug/build/mime_guess-dab029086dacac36/output b/server/target/debug/build/mime_guess-dab029086dacac36/output new file mode 100644 index 0000000..8c1a5fe --- /dev/null +++ b/server/target/debug/build/mime_guess-dab029086dacac36/output @@ -0,0 +1 @@ +cargo:rustc-env=MIME_TYPES_GENERATED_PATH=/home/z/my-project/projects/server/target/debug/build/mime_guess-dab029086dacac36/out/mime_types_generated.rs diff --git a/server/target/debug/build/mime_guess-dab029086dacac36/root-output b/server/target/debug/build/mime_guess-dab029086dacac36/root-output new file mode 100644 index 0000000..bc6b652 --- /dev/null +++ b/server/target/debug/build/mime_guess-dab029086dacac36/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/mime_guess-dab029086dacac36/out \ No newline at end of file diff --git a/server/target/debug/build/mime_guess-dab029086dacac36/stderr b/server/target/debug/build/mime_guess-dab029086dacac36/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/num-traits-244900f1b7582dbe/invoked.timestamp b/server/target/debug/build/num-traits-244900f1b7582dbe/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/num-traits-244900f1b7582dbe/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/num-traits-244900f1b7582dbe/output b/server/target/debug/build/num-traits-244900f1b7582dbe/output new file mode 100644 index 0000000..5acddfe --- /dev/null +++ b/server/target/debug/build/num-traits-244900f1b7582dbe/output @@ -0,0 +1,3 @@ +cargo:rustc-check-cfg=cfg(has_total_cmp) +cargo:rustc-cfg=has_total_cmp +cargo:rerun-if-changed=build.rs diff --git a/server/target/debug/build/num-traits-244900f1b7582dbe/root-output b/server/target/debug/build/num-traits-244900f1b7582dbe/root-output new file mode 100644 index 0000000..5e07ca5 --- /dev/null +++ b/server/target/debug/build/num-traits-244900f1b7582dbe/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/num-traits-244900f1b7582dbe/out \ No newline at end of file diff --git a/server/target/debug/build/num-traits-244900f1b7582dbe/stderr b/server/target/debug/build/num-traits-244900f1b7582dbe/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/num-traits-375ea6ec4b734af3/build-script-build b/server/target/debug/build/num-traits-375ea6ec4b734af3/build-script-build new file mode 100755 index 0000000..78955aa Binary files /dev/null and b/server/target/debug/build/num-traits-375ea6ec4b734af3/build-script-build differ diff --git a/server/target/debug/build/num-traits-375ea6ec4b734af3/build_script_build-375ea6ec4b734af3 b/server/target/debug/build/num-traits-375ea6ec4b734af3/build_script_build-375ea6ec4b734af3 new file mode 100755 index 0000000..78955aa Binary files /dev/null and b/server/target/debug/build/num-traits-375ea6ec4b734af3/build_script_build-375ea6ec4b734af3 differ diff --git a/server/target/debug/build/num-traits-375ea6ec4b734af3/build_script_build-375ea6ec4b734af3.d b/server/target/debug/build/num-traits-375ea6ec4b734af3/build_script_build-375ea6ec4b734af3.d new file mode 100644 index 0000000..8a6c492 --- /dev/null +++ b/server/target/debug/build/num-traits-375ea6ec4b734af3/build_script_build-375ea6ec4b734af3.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/num-traits-375ea6ec4b734af3/build_script_build-375ea6ec4b734af3.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/build.rs + +/home/z/my-project/projects/server/target/debug/build/num-traits-375ea6ec4b734af3/build_script_build-375ea6ec4b734af3: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/build.rs: diff --git a/server/target/debug/build/parking_lot_core-14c069bde3267cf0/invoked.timestamp b/server/target/debug/build/parking_lot_core-14c069bde3267cf0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/parking_lot_core-14c069bde3267cf0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/parking_lot_core-14c069bde3267cf0/output b/server/target/debug/build/parking_lot_core-14c069bde3267cf0/output new file mode 100644 index 0000000..e4a87f2 --- /dev/null +++ b/server/target/debug/build/parking_lot_core-14c069bde3267cf0/output @@ -0,0 +1,2 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(tsan_enabled) diff --git a/server/target/debug/build/parking_lot_core-14c069bde3267cf0/root-output b/server/target/debug/build/parking_lot_core-14c069bde3267cf0/root-output new file mode 100644 index 0000000..671c1aa --- /dev/null +++ b/server/target/debug/build/parking_lot_core-14c069bde3267cf0/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/parking_lot_core-14c069bde3267cf0/out \ No newline at end of file diff --git a/server/target/debug/build/parking_lot_core-14c069bde3267cf0/stderr b/server/target/debug/build/parking_lot_core-14c069bde3267cf0/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/parking_lot_core-6dc20afcb03675f8/build-script-build b/server/target/debug/build/parking_lot_core-6dc20afcb03675f8/build-script-build new file mode 100755 index 0000000..5f5f1ab Binary files /dev/null and b/server/target/debug/build/parking_lot_core-6dc20afcb03675f8/build-script-build differ diff --git a/server/target/debug/build/parking_lot_core-6dc20afcb03675f8/build_script_build-6dc20afcb03675f8 b/server/target/debug/build/parking_lot_core-6dc20afcb03675f8/build_script_build-6dc20afcb03675f8 new file mode 100755 index 0000000..5f5f1ab Binary files /dev/null and b/server/target/debug/build/parking_lot_core-6dc20afcb03675f8/build_script_build-6dc20afcb03675f8 differ diff --git a/server/target/debug/build/parking_lot_core-6dc20afcb03675f8/build_script_build-6dc20afcb03675f8.d b/server/target/debug/build/parking_lot_core-6dc20afcb03675f8/build_script_build-6dc20afcb03675f8.d new file mode 100644 index 0000000..cc8b333 --- /dev/null +++ b/server/target/debug/build/parking_lot_core-6dc20afcb03675f8/build_script_build-6dc20afcb03675f8.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/parking_lot_core-6dc20afcb03675f8/build_script_build-6dc20afcb03675f8.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs + +/home/z/my-project/projects/server/target/debug/build/parking_lot_core-6dc20afcb03675f8/build_script_build-6dc20afcb03675f8: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs: diff --git a/server/target/debug/build/proc-macro2-cdc80bb011340cc8/invoked.timestamp b/server/target/debug/build/proc-macro2-cdc80bb011340cc8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/proc-macro2-cdc80bb011340cc8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/proc-macro2-cdc80bb011340cc8/output b/server/target/debug/build/proc-macro2-cdc80bb011340cc8/output new file mode 100644 index 0000000..d3d235a --- /dev/null +++ b/server/target/debug/build/proc-macro2-cdc80bb011340cc8/output @@ -0,0 +1,23 @@ +cargo:rustc-check-cfg=cfg(fuzzing) +cargo:rustc-check-cfg=cfg(no_is_available) +cargo:rustc-check-cfg=cfg(no_literal_byte_character) +cargo:rustc-check-cfg=cfg(no_literal_c_string) +cargo:rustc-check-cfg=cfg(no_source_text) +cargo:rustc-check-cfg=cfg(proc_macro_span) +cargo:rustc-check-cfg=cfg(proc_macro_span_file) +cargo:rustc-check-cfg=cfg(proc_macro_span_location) +cargo:rustc-check-cfg=cfg(procmacro2_backtrace) +cargo:rustc-check-cfg=cfg(procmacro2_build_probe) +cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) +cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) +cargo:rustc-check-cfg=cfg(randomize_layout) +cargo:rustc-check-cfg=cfg(span_locations) +cargo:rustc-check-cfg=cfg(super_unstable) +cargo:rustc-check-cfg=cfg(wrap_proc_macro) +cargo:rerun-if-changed=src/probe/proc_macro_span.rs +cargo:rustc-cfg=wrap_proc_macro +cargo:rerun-if-changed=src/probe/proc_macro_span_location.rs +cargo:rustc-cfg=proc_macro_span_location +cargo:rerun-if-changed=src/probe/proc_macro_span_file.rs +cargo:rustc-cfg=proc_macro_span_file +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP diff --git a/server/target/debug/build/proc-macro2-cdc80bb011340cc8/root-output b/server/target/debug/build/proc-macro2-cdc80bb011340cc8/root-output new file mode 100644 index 0000000..19ee85f --- /dev/null +++ b/server/target/debug/build/proc-macro2-cdc80bb011340cc8/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/proc-macro2-cdc80bb011340cc8/out \ No newline at end of file diff --git a/server/target/debug/build/proc-macro2-cdc80bb011340cc8/stderr b/server/target/debug/build/proc-macro2-cdc80bb011340cc8/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/proc-macro2-e61b3caad72a3067/build-script-build b/server/target/debug/build/proc-macro2-e61b3caad72a3067/build-script-build new file mode 100755 index 0000000..f75e5bd Binary files /dev/null and b/server/target/debug/build/proc-macro2-e61b3caad72a3067/build-script-build differ diff --git a/server/target/debug/build/proc-macro2-e61b3caad72a3067/build_script_build-e61b3caad72a3067 b/server/target/debug/build/proc-macro2-e61b3caad72a3067/build_script_build-e61b3caad72a3067 new file mode 100755 index 0000000..f75e5bd Binary files /dev/null and b/server/target/debug/build/proc-macro2-e61b3caad72a3067/build_script_build-e61b3caad72a3067 differ diff --git a/server/target/debug/build/proc-macro2-e61b3caad72a3067/build_script_build-e61b3caad72a3067.d b/server/target/debug/build/proc-macro2-e61b3caad72a3067/build_script_build-e61b3caad72a3067.d new file mode 100644 index 0000000..927586e --- /dev/null +++ b/server/target/debug/build/proc-macro2-e61b3caad72a3067/build_script_build-e61b3caad72a3067.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/proc-macro2-e61b3caad72a3067/build_script_build-e61b3caad72a3067.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs + +/home/z/my-project/projects/server/target/debug/build/proc-macro2-e61b3caad72a3067/build_script_build-e61b3caad72a3067: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs: diff --git a/server/target/debug/build/quote-76885401fd60bb49/build-script-build b/server/target/debug/build/quote-76885401fd60bb49/build-script-build new file mode 100755 index 0000000..ce18a94 Binary files /dev/null and b/server/target/debug/build/quote-76885401fd60bb49/build-script-build differ diff --git a/server/target/debug/build/quote-76885401fd60bb49/build_script_build-76885401fd60bb49 b/server/target/debug/build/quote-76885401fd60bb49/build_script_build-76885401fd60bb49 new file mode 100755 index 0000000..ce18a94 Binary files /dev/null and b/server/target/debug/build/quote-76885401fd60bb49/build_script_build-76885401fd60bb49 differ diff --git a/server/target/debug/build/quote-76885401fd60bb49/build_script_build-76885401fd60bb49.d b/server/target/debug/build/quote-76885401fd60bb49/build_script_build-76885401fd60bb49.d new file mode 100644 index 0000000..1fccf2e --- /dev/null +++ b/server/target/debug/build/quote-76885401fd60bb49/build_script_build-76885401fd60bb49.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/quote-76885401fd60bb49/build_script_build-76885401fd60bb49.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/build.rs + +/home/z/my-project/projects/server/target/debug/build/quote-76885401fd60bb49/build_script_build-76885401fd60bb49: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/build.rs: diff --git a/server/target/debug/build/quote-d4c1d5b91a3b7899/invoked.timestamp b/server/target/debug/build/quote-d4c1d5b91a3b7899/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/quote-d4c1d5b91a3b7899/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/quote-d4c1d5b91a3b7899/output b/server/target/debug/build/quote-d4c1d5b91a3b7899/output new file mode 100644 index 0000000..6d81eca --- /dev/null +++ b/server/target/debug/build/quote-d4c1d5b91a3b7899/output @@ -0,0 +1,2 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) diff --git a/server/target/debug/build/quote-d4c1d5b91a3b7899/root-output b/server/target/debug/build/quote-d4c1d5b91a3b7899/root-output new file mode 100644 index 0000000..7b7e03e --- /dev/null +++ b/server/target/debug/build/quote-d4c1d5b91a3b7899/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/quote-d4c1d5b91a3b7899/out \ No newline at end of file diff --git a/server/target/debug/build/quote-d4c1d5b91a3b7899/stderr b/server/target/debug/build/quote-d4c1d5b91a3b7899/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/serde-0c0d3ac83fe3437f/build-script-build b/server/target/debug/build/serde-0c0d3ac83fe3437f/build-script-build new file mode 100755 index 0000000..d13ea54 Binary files /dev/null and b/server/target/debug/build/serde-0c0d3ac83fe3437f/build-script-build differ diff --git a/server/target/debug/build/serde-0c0d3ac83fe3437f/build_script_build-0c0d3ac83fe3437f b/server/target/debug/build/serde-0c0d3ac83fe3437f/build_script_build-0c0d3ac83fe3437f new file mode 100755 index 0000000..d13ea54 Binary files /dev/null and b/server/target/debug/build/serde-0c0d3ac83fe3437f/build_script_build-0c0d3ac83fe3437f differ diff --git a/server/target/debug/build/serde-0c0d3ac83fe3437f/build_script_build-0c0d3ac83fe3437f.d b/server/target/debug/build/serde-0c0d3ac83fe3437f/build_script_build-0c0d3ac83fe3437f.d new file mode 100644 index 0000000..d486295 --- /dev/null +++ b/server/target/debug/build/serde-0c0d3ac83fe3437f/build_script_build-0c0d3ac83fe3437f.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/serde-0c0d3ac83fe3437f/build_script_build-0c0d3ac83fe3437f.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/build.rs + +/home/z/my-project/projects/server/target/debug/build/serde-0c0d3ac83fe3437f/build_script_build-0c0d3ac83fe3437f: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/build.rs: diff --git a/server/target/debug/build/serde-6aeb262f7e7c722f/invoked.timestamp b/server/target/debug/build/serde-6aeb262f7e7c722f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/serde-6aeb262f7e7c722f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/serde-6aeb262f7e7c722f/out/private.rs b/server/target/debug/build/serde-6aeb262f7e7c722f/out/private.rs new file mode 100644 index 0000000..ed2927e --- /dev/null +++ b/server/target/debug/build/serde-6aeb262f7e7c722f/out/private.rs @@ -0,0 +1,6 @@ +#[doc(hidden)] +pub mod __private228 { + #[doc(hidden)] + pub use crate::private::*; +} +use serde_core::__private228 as serde_core_private; diff --git a/server/target/debug/build/serde-6aeb262f7e7c722f/output b/server/target/debug/build/serde-6aeb262f7e7c722f/output new file mode 100644 index 0000000..854cb53 --- /dev/null +++ b/server/target/debug/build/serde-6aeb262f7e7c722f/output @@ -0,0 +1,13 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-cfg=if_docsrs_then_no_serde_core +cargo:rustc-check-cfg=cfg(feature, values("result")) +cargo:rustc-check-cfg=cfg(if_docsrs_then_no_serde_core) +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/server/target/debug/build/serde-6aeb262f7e7c722f/root-output b/server/target/debug/build/serde-6aeb262f7e7c722f/root-output new file mode 100644 index 0000000..b32015a --- /dev/null +++ b/server/target/debug/build/serde-6aeb262f7e7c722f/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/serde-6aeb262f7e7c722f/out \ No newline at end of file diff --git a/server/target/debug/build/serde-6aeb262f7e7c722f/stderr b/server/target/debug/build/serde-6aeb262f7e7c722f/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/serde-b83883f49ee5ce96/build-script-build b/server/target/debug/build/serde-b83883f49ee5ce96/build-script-build new file mode 100755 index 0000000..22f1aa3 Binary files /dev/null and b/server/target/debug/build/serde-b83883f49ee5ce96/build-script-build differ diff --git a/server/target/debug/build/serde-b83883f49ee5ce96/build_script_build-b83883f49ee5ce96 b/server/target/debug/build/serde-b83883f49ee5ce96/build_script_build-b83883f49ee5ce96 new file mode 100755 index 0000000..22f1aa3 Binary files /dev/null and b/server/target/debug/build/serde-b83883f49ee5ce96/build_script_build-b83883f49ee5ce96 differ diff --git a/server/target/debug/build/serde-b83883f49ee5ce96/build_script_build-b83883f49ee5ce96.d b/server/target/debug/build/serde-b83883f49ee5ce96/build_script_build-b83883f49ee5ce96.d new file mode 100644 index 0000000..cea09e5 --- /dev/null +++ b/server/target/debug/build/serde-b83883f49ee5ce96/build_script_build-b83883f49ee5ce96.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/serde-b83883f49ee5ce96/build_script_build-b83883f49ee5ce96.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/build.rs + +/home/z/my-project/projects/server/target/debug/build/serde-b83883f49ee5ce96/build_script_build-b83883f49ee5ce96: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/build.rs: diff --git a/server/target/debug/build/serde-dd2c010b396bfb3d/invoked.timestamp b/server/target/debug/build/serde-dd2c010b396bfb3d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/serde-dd2c010b396bfb3d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/serde-dd2c010b396bfb3d/out/private.rs b/server/target/debug/build/serde-dd2c010b396bfb3d/out/private.rs new file mode 100644 index 0000000..ed2927e --- /dev/null +++ b/server/target/debug/build/serde-dd2c010b396bfb3d/out/private.rs @@ -0,0 +1,6 @@ +#[doc(hidden)] +pub mod __private228 { + #[doc(hidden)] + pub use crate::private::*; +} +use serde_core::__private228 as serde_core_private; diff --git a/server/target/debug/build/serde-dd2c010b396bfb3d/output b/server/target/debug/build/serde-dd2c010b396bfb3d/output new file mode 100644 index 0000000..854cb53 --- /dev/null +++ b/server/target/debug/build/serde-dd2c010b396bfb3d/output @@ -0,0 +1,13 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-cfg=if_docsrs_then_no_serde_core +cargo:rustc-check-cfg=cfg(feature, values("result")) +cargo:rustc-check-cfg=cfg(if_docsrs_then_no_serde_core) +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/server/target/debug/build/serde-dd2c010b396bfb3d/root-output b/server/target/debug/build/serde-dd2c010b396bfb3d/root-output new file mode 100644 index 0000000..1bda759 --- /dev/null +++ b/server/target/debug/build/serde-dd2c010b396bfb3d/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/serde-dd2c010b396bfb3d/out \ No newline at end of file diff --git a/server/target/debug/build/serde-dd2c010b396bfb3d/stderr b/server/target/debug/build/serde-dd2c010b396bfb3d/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/serde_core-842ae9a69327bc0f/build-script-build b/server/target/debug/build/serde_core-842ae9a69327bc0f/build-script-build new file mode 100755 index 0000000..c047dac Binary files /dev/null and b/server/target/debug/build/serde_core-842ae9a69327bc0f/build-script-build differ diff --git a/server/target/debug/build/serde_core-842ae9a69327bc0f/build_script_build-842ae9a69327bc0f b/server/target/debug/build/serde_core-842ae9a69327bc0f/build_script_build-842ae9a69327bc0f new file mode 100755 index 0000000..c047dac Binary files /dev/null and b/server/target/debug/build/serde_core-842ae9a69327bc0f/build_script_build-842ae9a69327bc0f differ diff --git a/server/target/debug/build/serde_core-842ae9a69327bc0f/build_script_build-842ae9a69327bc0f.d b/server/target/debug/build/serde_core-842ae9a69327bc0f/build_script_build-842ae9a69327bc0f.d new file mode 100644 index 0000000..49e7d15 --- /dev/null +++ b/server/target/debug/build/serde_core-842ae9a69327bc0f/build_script_build-842ae9a69327bc0f.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/serde_core-842ae9a69327bc0f/build_script_build-842ae9a69327bc0f.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/build.rs + +/home/z/my-project/projects/server/target/debug/build/serde_core-842ae9a69327bc0f/build_script_build-842ae9a69327bc0f: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/build.rs: diff --git a/server/target/debug/build/serde_core-a2b0d5857c986c99/invoked.timestamp b/server/target/debug/build/serde_core-a2b0d5857c986c99/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/serde_core-a2b0d5857c986c99/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/serde_core-a2b0d5857c986c99/out/private.rs b/server/target/debug/build/serde_core-a2b0d5857c986c99/out/private.rs new file mode 100644 index 0000000..08f232b --- /dev/null +++ b/server/target/debug/build/serde_core-a2b0d5857c986c99/out/private.rs @@ -0,0 +1,5 @@ +#[doc(hidden)] +pub mod __private228 { + #[doc(hidden)] + pub use crate::private::*; +} diff --git a/server/target/debug/build/serde_core-a2b0d5857c986c99/output b/server/target/debug/build/serde_core-a2b0d5857c986c99/output new file mode 100644 index 0000000..98a6653 --- /dev/null +++ b/server/target/debug/build/serde_core-a2b0d5857c986c99/output @@ -0,0 +1,11 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(if_docsrs_then_no_serde_core) +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/server/target/debug/build/serde_core-a2b0d5857c986c99/root-output b/server/target/debug/build/serde_core-a2b0d5857c986c99/root-output new file mode 100644 index 0000000..90d44d0 --- /dev/null +++ b/server/target/debug/build/serde_core-a2b0d5857c986c99/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/serde_core-a2b0d5857c986c99/out \ No newline at end of file diff --git a/server/target/debug/build/serde_core-a2b0d5857c986c99/stderr b/server/target/debug/build/serde_core-a2b0d5857c986c99/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/serde_json-6361a6d06e4c740b/build-script-build b/server/target/debug/build/serde_json-6361a6d06e4c740b/build-script-build new file mode 100755 index 0000000..e396ca8 Binary files /dev/null and b/server/target/debug/build/serde_json-6361a6d06e4c740b/build-script-build differ diff --git a/server/target/debug/build/serde_json-6361a6d06e4c740b/build_script_build-6361a6d06e4c740b b/server/target/debug/build/serde_json-6361a6d06e4c740b/build_script_build-6361a6d06e4c740b new file mode 100755 index 0000000..e396ca8 Binary files /dev/null and b/server/target/debug/build/serde_json-6361a6d06e4c740b/build_script_build-6361a6d06e4c740b differ diff --git a/server/target/debug/build/serde_json-6361a6d06e4c740b/build_script_build-6361a6d06e4c740b.d b/server/target/debug/build/serde_json-6361a6d06e4c740b/build_script_build-6361a6d06e4c740b.d new file mode 100644 index 0000000..dfcd546 --- /dev/null +++ b/server/target/debug/build/serde_json-6361a6d06e4c740b/build_script_build-6361a6d06e4c740b.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/serde_json-6361a6d06e4c740b/build_script_build-6361a6d06e4c740b.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/build.rs + +/home/z/my-project/projects/server/target/debug/build/serde_json-6361a6d06e4c740b/build_script_build-6361a6d06e4c740b: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/build.rs: diff --git a/server/target/debug/build/serde_json-9a7e2db8c27659cc/invoked.timestamp b/server/target/debug/build/serde_json-9a7e2db8c27659cc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/serde_json-9a7e2db8c27659cc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/serde_json-9a7e2db8c27659cc/output b/server/target/debug/build/serde_json-9a7e2db8c27659cc/output new file mode 100644 index 0000000..3201077 --- /dev/null +++ b/server/target/debug/build/serde_json-9a7e2db8c27659cc/output @@ -0,0 +1,3 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(fast_arithmetic, values("32", "64")) +cargo:rustc-cfg=fast_arithmetic="64" diff --git a/server/target/debug/build/serde_json-9a7e2db8c27659cc/root-output b/server/target/debug/build/serde_json-9a7e2db8c27659cc/root-output new file mode 100644 index 0000000..cbf2ff1 --- /dev/null +++ b/server/target/debug/build/serde_json-9a7e2db8c27659cc/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/serde_json-9a7e2db8c27659cc/out \ No newline at end of file diff --git a/server/target/debug/build/serde_json-9a7e2db8c27659cc/stderr b/server/target/debug/build/serde_json-9a7e2db8c27659cc/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/typenum-28d8c72df459a6c5/build-script-build b/server/target/debug/build/typenum-28d8c72df459a6c5/build-script-build new file mode 100755 index 0000000..4628607 Binary files /dev/null and b/server/target/debug/build/typenum-28d8c72df459a6c5/build-script-build differ diff --git a/server/target/debug/build/typenum-28d8c72df459a6c5/build_script_build-28d8c72df459a6c5 b/server/target/debug/build/typenum-28d8c72df459a6c5/build_script_build-28d8c72df459a6c5 new file mode 100755 index 0000000..4628607 Binary files /dev/null and b/server/target/debug/build/typenum-28d8c72df459a6c5/build_script_build-28d8c72df459a6c5 differ diff --git a/server/target/debug/build/typenum-28d8c72df459a6c5/build_script_build-28d8c72df459a6c5.d b/server/target/debug/build/typenum-28d8c72df459a6c5/build_script_build-28d8c72df459a6c5.d new file mode 100644 index 0000000..741bf29 --- /dev/null +++ b/server/target/debug/build/typenum-28d8c72df459a6c5/build_script_build-28d8c72df459a6c5.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/typenum-28d8c72df459a6c5/build_script_build-28d8c72df459a6c5.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/build.rs + +/home/z/my-project/projects/server/target/debug/build/typenum-28d8c72df459a6c5/build_script_build-28d8c72df459a6c5: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/build.rs: diff --git a/server/target/debug/build/typenum-fd2774ff4866da18/invoked.timestamp b/server/target/debug/build/typenum-fd2774ff4866da18/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/typenum-fd2774ff4866da18/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/typenum-fd2774ff4866da18/out/tests.rs b/server/target/debug/build/typenum-fd2774ff4866da18/out/tests.rs new file mode 100644 index 0000000..eadb2d6 --- /dev/null +++ b/server/target/debug/build/typenum-fd2774ff4866da18/out/tests.rs @@ -0,0 +1,20563 @@ + +use typenum::*; +use core::ops::*; +use core::cmp::Ordering; + +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_0() { + type A = UTerm; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Sub_0() { + type A = UTerm; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_0() { + type A = UTerm; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U0CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_1() { + type A = UTerm; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_1() { + type A = UTerm; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_1() { + type A = UTerm; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_1() { + type A = UTerm; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_1() { + type A = UTerm; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U0GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Div_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Rem_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_PartialDiv_1() { + type A = UTerm; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_1() { + type A = UTerm; + type B = UInt; + + #[allow(non_camel_case_types)] + type U0CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_2() { + type A = UTerm; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_2() { + type A = UTerm; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_2() { + type A = UTerm; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_2() { + type A = UTerm; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_2() { + type A = UTerm; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Div_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Rem_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_PartialDiv_2() { + type A = UTerm; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PartialDivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_2() { + type A = UTerm; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U0CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_3() { + type A = UTerm; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_3() { + type A = UTerm; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_3() { + type A = UTerm; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_3() { + type A = UTerm; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_3() { + type A = UTerm; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Div_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Rem_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_PartialDiv_3() { + type A = UTerm; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PartialDivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_3() { + type A = UTerm; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U0CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Div_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Rem_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_PartialDiv_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PartialDivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_4() { + type A = UTerm; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U0CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitAnd_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitOr_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_BitXor_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shl_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Shr_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Add_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Mul_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Pow_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Min_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Max_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Gcd_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Div_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Rem_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_PartialDiv_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U0PartialDivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_0_Cmp_5() { + type A = UTerm; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U0CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_0() { + type A = UInt; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_0() { + type A = UInt; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_0() { + type A = UInt; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Sub_0() { + type A = UInt; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_0() { + type A = UInt; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U1CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_1() { + type A = UInt; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_1() { + type A = UInt; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_1() { + type A = UInt; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_1() { + type A = UInt; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Sub_1() { + type A = UInt; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1SubU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Div_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Rem_1() { + type A = UInt; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_PartialDiv_1() { + type A = UInt; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_1() { + type A = UInt; + type B = UInt; + + #[allow(non_camel_case_types)] + type U1CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_2() { + type A = UInt; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_2() { + type A = UInt; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_2() { + type A = UInt; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_2() { + type A = UInt; + type B = UInt, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_2() { + type A = UInt; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_2() { + type A = UInt; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_2() { + type A = UInt; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_2() { + type A = UInt; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_2() { + type A = UInt; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_2() { + type A = UInt; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_2() { + type A = UInt; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Div_2() { + type A = UInt; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Rem_2() { + type A = UInt; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_2() { + type A = UInt; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_3() { + type A = UInt; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_3() { + type A = UInt; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_3() { + type A = UInt; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U1BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_3() { + type A = UInt; + type B = UInt, B1>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_3() { + type A = UInt; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_3() { + type A = UInt; + type B = UInt, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_3() { + type A = UInt; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_3() { + type A = UInt; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_3() { + type A = UInt; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_3() { + type A = UInt; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_3() { + type A = UInt; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Div_3() { + type A = UInt; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Rem_3() { + type A = UInt; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_3() { + type A = UInt; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U1CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Div_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Rem_4() { + type A = UInt; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_4() { + type A = UInt; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitAnd_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitOr_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_BitXor_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shl_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U32 = UInt, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U1ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Shr_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Add_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U1AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Mul_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Pow_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Min_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Max_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Gcd_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Div_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U1DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Rem_5() { + type A = UInt; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U1RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_1_Cmp_5() { + type A = UInt; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U1CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_0() { + type A = UInt, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_0() { + type A = UInt, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_0() { + type A = UInt, B0>; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_0() { + type A = UInt, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Sub_0() { + type A = UInt, B0>; + type B = UTerm; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_0() { + type A = UInt, B0>; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U2CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_1() { + type A = UInt, B0>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_1() { + type A = UInt, B0>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_1() { + type A = UInt, B0>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_1() { + type A = UInt, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_1() { + type A = UInt, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_1() { + type A = UInt, B0>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_1() { + type A = UInt, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_1() { + type A = UInt, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_1() { + type A = UInt, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_1() { + type A = UInt, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_1() { + type A = UInt, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Sub_1() { + type A = UInt, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2SubU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Div_1() { + type A = UInt, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Rem_1() { + type A = UInt, B0>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_PartialDiv_1() { + type A = UInt, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_1() { + type A = UInt, B0>; + type B = UInt; + + #[allow(non_camel_case_types)] + type U2CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Sub_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2SubU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Div_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Rem_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_PartialDiv_2() { + type A = UInt, B0>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2PartialDivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_2() { + type A = UInt, B0>; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U2AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U2MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Div_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Rem_3() { + type A = UInt, B0>; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_3() { + type A = UInt, B0>; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U2CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U2BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U2BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U32 = UInt, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U2AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Div_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Rem_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_4() { + type A = UInt, B0>; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitAnd_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitOr_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U2BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_BitXor_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U2BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shl_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U64 = UInt, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Shr_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Add_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U2AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Mul_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U10 = UInt, B0>, B1>, B0>; + + #[allow(non_camel_case_types)] + type U2MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Pow_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U32 = UInt, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U2PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Min_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Max_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U2MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Gcd_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U2GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Div_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U2DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Rem_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U2RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_2_Cmp_5() { + type A = UInt, B0>; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U2CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_0() { + type A = UInt, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_0() { + type A = UInt, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_0() { + type A = UInt, B1>; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_0() { + type A = UInt, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Sub_0() { + type A = UInt, B1>; + type B = UTerm; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_0() { + type A = UInt, B1>; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U3CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_1() { + type A = UInt, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_1() { + type A = UInt, B1>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U3BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_1() { + type A = UInt, B1>; + type B = UInt; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U3ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_1() { + type A = UInt, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_1() { + type A = UInt, B1>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_1() { + type A = UInt, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_1() { + type A = UInt, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Sub_1() { + type A = UInt, B1>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U3SubU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Div_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Rem_1() { + type A = UInt, B1>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_PartialDiv_1() { + type A = UInt, B1>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_1() { + type A = UInt, B1>; + type B = UInt; + + #[allow(non_camel_case_types)] + type U3CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U3BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U12 = UInt, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U3MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U9 = UInt, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U3MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Sub_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3SubU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Div_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Rem_2() { + type A = UInt, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_2() { + type A = UInt, B1>; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U3CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U24 = UInt, B1>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U3AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U9 = UInt, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U27 = UInt, B1>, B0>, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Sub_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3SubU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Div_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Rem_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_PartialDiv_3() { + type A = UInt, B1>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3PartialDivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_3() { + type A = UInt, B1>; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U48 = UInt, B1>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U12 = UInt, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U81 = UInt, B0>, B1>, B0>, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Div_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Rem_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_4() { + type A = UInt, B1>; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitAnd_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitOr_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_BitXor_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U3BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shl_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U96 = UInt, B1>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Shr_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Add_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U3AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Mul_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U15 = UInt, B1>, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Pow_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U243 = UInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>; + + #[allow(non_camel_case_types)] + type U3PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Min_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Max_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Gcd_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U3GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Div_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U3DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Rem_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U3RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_3_Cmp_5() { + type A = UInt, B1>; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U3CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Sub_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_0() { + type A = UInt, B0>, B0>; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U4CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Sub_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U4SubU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Div_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Rem_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_PartialDiv_1() { + type A = UInt, B0>, B0>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_1() { + type A = UInt, B0>, B0>; + type B = UInt; + + #[allow(non_camel_case_types)] + type U4CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U4BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U4BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U4AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Sub_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4SubU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Div_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Rem_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_PartialDiv_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4PartialDivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_2() { + type A = UInt, B0>, B0>; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U4CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U4BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U4BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U32 = UInt, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U4AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U12 = UInt, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U64 = UInt, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U4MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Sub_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4SubU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Div_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Rem_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_3() { + type A = UInt, B0>, B0>; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U4CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U64 = UInt, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U16 = UInt, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U256 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Sub_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4SubU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Div_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Rem_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_PartialDiv_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4PartialDivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_4() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitAnd_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitOr_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_BitXor_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shl_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U128 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Shr_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Add_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U9 = UInt, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Mul_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U20 = UInt, B0>, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Pow_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U1024 = UInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Min_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Max_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Gcd_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U4GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Div_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U4DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Rem_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U4RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_4_Cmp_5() { + type A = UInt, B0>, B0>; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U4CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5BitAndU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitXorU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5ShlU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5ShrU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5AddU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5MulU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5PowU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5MinU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5GcdU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5SubU0 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_0() { + type A = UInt, B0>, B1>; + type B = UTerm; + + #[allow(non_camel_case_types)] + type U5CmpU0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5BitAndU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5BitXorU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U10 = UInt, B0>, B1>, B0>; + + #[allow(non_camel_case_types)] + type U5ShlU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5ShrU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U5AddU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MulU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PowU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5MinU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5GcdU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5SubU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Div_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5DivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Rem_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5RemU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_PartialDiv_1() { + type A = UInt, B0>, B1>; + type B = UInt; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PartialDivU1 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_1() { + type A = UInt, B0>, B1>; + type B = UInt; + + #[allow(non_camel_case_types)] + type U5CmpU1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5BitAndU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U5BitXorU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U20 = UInt, B0>, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5ShlU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5ShrU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U5AddU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U10 = UInt, B0>, B1>, B0>; + + #[allow(non_camel_case_types)] + type U5MulU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U25 = UInt, B1>, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PowU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5MinU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5GcdU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U5SubU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Div_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5DivU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Rem_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5RemU2 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_2() { + type A = UInt, B0>, B1>; + type B = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5CmpU2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5BitAndU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U7 = UInt, B1>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U6 = UInt, B1>, B0>; + + #[allow(non_camel_case_types)] + type U5BitXorU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U40 = UInt, B0>, B1>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5ShlU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5ShrU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U8 = UInt, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5AddU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U15 = UInt, B1>, B1>, B1>; + + #[allow(non_camel_case_types)] + type U5MulU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U125 = UInt, B1>, B1>, B1>, B1>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PowU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U3 = UInt, B1>; + + #[allow(non_camel_case_types)] + type U5MinU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5GcdU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5SubU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Div_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5DivU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Rem_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + type U2 = UInt, B0>; + + #[allow(non_camel_case_types)] + type U5RemU3 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_3() { + type A = UInt, B0>, B1>; + type B = UInt, B1>; + + #[allow(non_camel_case_types)] + type U5CmpU3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5BitAndU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5BitXorU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U80 = UInt, B0>, B1>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5ShlU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5ShrU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U9 = UInt, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5AddU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U20 = UInt, B0>, B1>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5MulU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U625 = UInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PowU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U4 = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5MinU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5GcdU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5SubU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Div_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5DivU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Rem_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5RemU4 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_4() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5CmpU4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitAnd_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitAndU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitOr_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5BitOrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_BitXor_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5BitXorU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shl_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U160 = UInt, B0>, B1>, B0>, B0>, B0>, B0>, B0>; + + #[allow(non_camel_case_types)] + type U5ShlU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Shr_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5ShrU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Add_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U10 = UInt, B0>, B1>, B0>; + + #[allow(non_camel_case_types)] + type U5AddU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Mul_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U25 = UInt, B1>, B0>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MulU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Pow_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U3125 = UInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5PowU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Min_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MinU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Max_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5MaxU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Gcd_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U5 = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5GcdU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Sub_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5SubU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Div_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5DivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Rem_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U0 = UTerm; + + #[allow(non_camel_case_types)] + type U5RemU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_PartialDiv_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + type U1 = UInt; + + #[allow(non_camel_case_types)] + type U5PartialDivU5 = <>::Output as Same>::Output; + + assert_eq!(::to_u64(), ::to_u64()); +} +#[test] +#[allow(non_snake_case)] +fn test_5_Cmp_5() { + type A = UInt, B0>, B1>; + type B = UInt, B0>, B1>; + + #[allow(non_camel_case_types)] + type U5CmpU5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5SubN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P25 = PInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5DivN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5RemN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_PartialDiv_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5PartialDivN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_N5() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P20 = PInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5DivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_N4() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type P15 = PInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N5MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_N3() { + type A = NInt, B0>, B1>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N5CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N5AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N5SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N5DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_N2() { + type A = NInt, B0>, B1>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_PartialDiv_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_N1() { + type A = NInt, B0>, B1>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type N5CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5Min_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp__0() { + type A = NInt, B0>, B1>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type N5Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_PartialDiv_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_P1() { + type A = NInt, B0>, B1>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type N5CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N5AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N5SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N5MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + type P25 = PInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_P2() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N5CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N15 = NInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N5MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N5RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + type N125 = NInt, B1>, B1>, B1>, B1>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_P3() { + type A = NInt, B0>, B1>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N5CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N20 = NInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N5GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5DivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P625 = PInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_P4() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N5CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Add_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5AddP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Sub_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N5SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Mul_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N25 = NInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Min_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Max_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Gcd_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Div_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5DivP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Rem_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N5RemP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_PartialDiv_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N5PartialDivP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Pow_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type N3125 = NInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Cmp_P5() { + type A = NInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N5CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P20 = PInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_N5() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4SubN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4DivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4PartialDivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_N4() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N4AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type P12 = PInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N4MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_N3() { + type A = NInt, B0>, B0>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N4CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N4AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4PartialDivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_N2() { + type A = NInt, B0>, B0>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N4SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_N1() { + type A = NInt, B0>, B0>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type N4CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4Min_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp__0() { + type A = NInt, B0>, B0>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type N4Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N4AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_P1() { + type A = NInt, B0>, B0>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type N4CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N4SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N4PartialDivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_P2() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N4CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N4SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N12 = NInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N4MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + type N64 = NInt, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_P3() { + type A = NInt, B0>, B0>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N4CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4AddP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type N16 = NInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4DivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4RemP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_PartialDiv_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N4PartialDivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P256 = PInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_P4() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Add_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Sub_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Mul_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N20 = NInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Min_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Max_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Gcd_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N4GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Div_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N4DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Rem_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Pow_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N1024 = NInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N4PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Cmp_P5() { + type A = NInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N4CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N3SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type P15 = PInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_N5() { + type A = NInt, B1>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type P12 = PInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_N4() { + type A = NInt, B1>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N3AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3SubN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3RemN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_PartialDiv_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3PartialDivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_N3() { + type A = NInt, B1>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N3MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N3MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_N2() { + type A = NInt, B1>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N3CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_N1() { + type A = NInt, B1>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_N1() { + type A = NInt, B1>>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N3SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_N1() { + type A = NInt, B1>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_N1() { + type A = NInt, B1>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_N1() { + type A = NInt, B1>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_N1() { + type A = NInt, B1>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_N1() { + type A = NInt, B1>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_N1() { + type A = NInt, B1>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_PartialDiv_N1() { + type A = NInt, B1>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_N1() { + type A = NInt, B1>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type N3CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add__0() { + type A = NInt, B1>>; + type B = Z0; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub__0() { + type A = NInt, B1>>; + type B = Z0; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul__0() { + type A = NInt, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min__0() { + type A = NInt, B1>>; + type B = Z0; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3Min_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max__0() { + type A = NInt, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd__0() { + type A = NInt, B1>>; + type B = Z0; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow__0() { + type A = NInt, B1>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp__0() { + type A = NInt, B1>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type N3Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N3AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_P1() { + type A = NInt, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_P1() { + type A = NInt, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_P1() { + type A = NInt, B1>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_PartialDiv_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow_P1() { + type A = NInt, B1>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_P1() { + type A = NInt, B1>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type N3CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N3MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N3MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_P2() { + type A = NInt, B1>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N3CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3AddP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N3SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3RemP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_PartialDiv_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N3PartialDivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + type N27 = NInt, B1>, B0>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_P3() { + type A = NInt, B1>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N3CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type N12 = NInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + type P81 = PInt, B0>, B1>, B0>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_P4() { + type A = NInt, B1>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Add_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N3AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Sub_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N3SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Mul_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type N15 = NInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Min_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Max_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Gcd_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N3GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Div_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N3DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Rem_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N3RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Pow_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + type N243 = NInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N3PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Cmp_P5() { + type A = NInt, B1>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N3CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N2AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N2SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_N5() { + type A = NInt, B0>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_N4() { + type A = NInt, B0>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N2MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_N3() { + type A = NInt, B0>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N2CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2SubN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2RemN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_PartialDiv_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2PartialDivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_N2() { + type A = NInt, B0>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_N1() { + type A = NInt, B0>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N2AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_N1() { + type A = NInt, B0>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N2SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_N1() { + type A = NInt, B0>>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_N1() { + type A = NInt, B0>>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_N1() { + type A = NInt, B0>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N2MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_N1() { + type A = NInt, B0>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_N1() { + type A = NInt, B0>>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_N1() { + type A = NInt, B0>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_PartialDiv_N1() { + type A = NInt, B0>>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_N1() { + type A = NInt, B0>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type N2CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add__0() { + type A = NInt, B0>>; + type B = Z0; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub__0() { + type A = NInt, B0>>; + type B = Z0; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul__0() { + type A = NInt, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min__0() { + type A = NInt, B0>>; + type B = Z0; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2Min_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max__0() { + type A = NInt, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd__0() { + type A = NInt, B0>>; + type B = Z0; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow__0() { + type A = NInt, B0>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp__0() { + type A = NInt, B0>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type N2Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N2AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N2SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_P1() { + type A = NInt, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_P1() { + type A = NInt, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_P1() { + type A = NInt, B0>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_PartialDiv_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow_P1() { + type A = NInt, B0>>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_P1() { + type A = NInt, B0>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type N2CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2AddP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N2DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2RemP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_PartialDiv_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N2PartialDivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_P2() { + type A = NInt, B0>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N2MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_P3() { + type A = NInt, B0>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N2CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N2GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_P4() { + type A = NInt, B0>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Add_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N2AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Sub_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type N7 = NInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type N2SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Mul_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N2MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Min_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Max_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Gcd_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N2GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Div_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N2DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Rem_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N2RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Pow_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + type N32 = NInt, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N2PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Cmp_P5() { + type A = NInt, B0>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N2CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N1AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_N5() { + type A = NInt>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N1SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1PowN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_N4() { + type A = NInt>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_N3() { + type A = NInt>; + type B = NInt, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_N3() { + type A = NInt>; + type B = NInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N1SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_N3() { + type A = NInt>; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N1MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_N3() { + type A = NInt>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N1MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_N3() { + type A = NInt>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_N3() { + type A = NInt>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_N3() { + type A = NInt>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_N3() { + type A = NInt>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_N3() { + type A = NInt>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_N3() { + type A = NInt>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N1CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_N2() { + type A = NInt>; + type B = NInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N1AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_N2() { + type A = NInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_N2() { + type A = NInt>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N1MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_N2() { + type A = NInt>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N1MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_N2() { + type A = NInt>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_N2() { + type A = NInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_N2() { + type A = NInt>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_N2() { + type A = NInt>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_N2() { + type A = NInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1PowN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_N2() { + type A = NInt>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N1CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_N1() { + type A = NInt>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N1AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_N1() { + type A = NInt>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1SubN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_N1() { + type A = NInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_N1() { + type A = NInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_N1() { + type A = NInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_N1() { + type A = NInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_N1() { + type A = NInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_N1() { + type A = NInt>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_PartialDiv_N1() { + type A = NInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_N1() { + type A = NInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_N1() { + type A = NInt>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type N1CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add__0() { + type A = NInt>; + type B = Z0; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub__0() { + type A = NInt>; + type B = Z0; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul__0() { + type A = NInt>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min__0() { + type A = NInt>; + type B = Z0; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1Min_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max__0() { + type A = NInt>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd__0() { + type A = NInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow__0() { + type A = NInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp__0() { + type A = NInt>; + type B = Z0; + + #[allow(non_camel_case_types)] + type N1Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_P1() { + type A = NInt>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1AddP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_P1() { + type A = NInt>; + type B = PInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N1SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_P1() { + type A = NInt>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_P1() { + type A = NInt>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_P1() { + type A = NInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_P1() { + type A = NInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_P1() { + type A = NInt>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_P1() { + type A = NInt>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_PartialDiv_P1() { + type A = NInt>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_P1() { + type A = NInt>; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_P1() { + type A = NInt>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type N1CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_P2() { + type A = NInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_P2() { + type A = NInt>; + type B = PInt, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N1SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_P2() { + type A = NInt>; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type N1MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_P2() { + type A = NInt>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_P2() { + type A = NInt>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N1MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_P2() { + type A = NInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_P2() { + type A = NInt>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_P2() { + type A = NInt>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_P2() { + type A = NInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_P2() { + type A = NInt>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N1CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_P3() { + type A = NInt>; + type B = PInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type N1AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_P3() { + type A = NInt>; + type B = PInt, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_P3() { + type A = NInt>; + type B = PInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type N1MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_P3() { + type A = NInt>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_P3() { + type A = NInt>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N1MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_P3() { + type A = NInt>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_P3() { + type A = NInt>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_P3() { + type A = NInt>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_P3() { + type A = NInt>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_P3() { + type A = NInt>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N1CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type N1AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_P4() { + type A = NInt>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Add_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type N1AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Sub_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type N1SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Mul_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Min_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Max_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Gcd_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type N1GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Div_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type N1DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Rem_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Pow_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type N1PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Cmp_P5() { + type A = NInt>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type N1CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0AddN5 = <>::Output as Same>::Output; + + assert_eq!(<_0AddN5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0SubN5 = <>::Output as Same>::Output; + + assert_eq!(<_0SubN5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulN5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0MinN5 = <>::Output as Same>::Output; + + assert_eq!(<_0MinN5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MaxN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MaxN5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0GcdN5 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdN5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivN5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemN5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivN5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_N5() { + type A = Z0; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0CmpN5 = >::Output; + assert_eq!(<_0CmpN5 as Ord>::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0AddN4 = <>::Output as Same>::Output; + + assert_eq!(<_0AddN4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0SubN4 = <>::Output as Same>::Output; + + assert_eq!(<_0SubN4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulN4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0MinN4 = <>::Output as Same>::Output; + + assert_eq!(<_0MinN4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MaxN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MaxN4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0GcdN4 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdN4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivN4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemN4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivN4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_N4() { + type A = Z0; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0CmpN4 = >::Output; + assert_eq!(<_0CmpN4 as Ord>::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_N3() { + type A = Z0; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type _0AddN3 = <>::Output as Same>::Output; + + assert_eq!(<_0AddN3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_N3() { + type A = Z0; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0SubN3 = <>::Output as Same>::Output; + + assert_eq!(<_0SubN3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_N3() { + type A = Z0; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulN3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_N3() { + type A = Z0; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type _0MinN3 = <>::Output as Same>::Output; + + assert_eq!(<_0MinN3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_N3() { + type A = Z0; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MaxN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MaxN3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_N3() { + type A = Z0; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0GcdN3 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdN3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_N3() { + type A = Z0; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivN3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_N3() { + type A = Z0; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemN3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_N3() { + type A = Z0; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivN3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_N3() { + type A = Z0; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type _0CmpN3 = >::Output; + assert_eq!(<_0CmpN3 as Ord>::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_N2() { + type A = Z0; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type _0AddN2 = <>::Output as Same>::Output; + + assert_eq!(<_0AddN2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_N2() { + type A = Z0; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0SubN2 = <>::Output as Same>::Output; + + assert_eq!(<_0SubN2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_N2() { + type A = Z0; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulN2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_N2() { + type A = Z0; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type _0MinN2 = <>::Output as Same>::Output; + + assert_eq!(<_0MinN2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_N2() { + type A = Z0; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MaxN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MaxN2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_N2() { + type A = Z0; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0GcdN2 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdN2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_N2() { + type A = Z0; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivN2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_N2() { + type A = Z0; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemN2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_N2() { + type A = Z0; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivN2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_N2() { + type A = Z0; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type _0CmpN2 = >::Output; + assert_eq!(<_0CmpN2 as Ord>::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_N1() { + type A = Z0; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type _0AddN1 = <>::Output as Same>::Output; + + assert_eq!(<_0AddN1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_N1() { + type A = Z0; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0SubN1 = <>::Output as Same>::Output; + + assert_eq!(<_0SubN1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_N1() { + type A = Z0; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulN1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_N1() { + type A = Z0; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type _0MinN1 = <>::Output as Same>::Output; + + assert_eq!(<_0MinN1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_N1() { + type A = Z0; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MaxN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MaxN1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_N1() { + type A = Z0; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0GcdN1 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdN1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_N1() { + type A = Z0; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivN1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_N1() { + type A = Z0; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemN1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_N1() { + type A = Z0; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivN1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_N1() { + type A = Z0; + type B = NInt>; + + #[allow(non_camel_case_types)] + type _0CmpN1 = >::Output; + assert_eq!(<_0CmpN1 as Ord>::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Add_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Add_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Sub_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Sub_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Mul_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Min_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Max_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Max_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd__0() { + type A = Z0; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0Gcd_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0Gcd_0 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow__0() { + type A = Z0; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0Pow_0 = <>::Output as Same>::Output; + + assert_eq!(<_0Pow_0 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp__0() { + type A = Z0; + type B = Z0; + + #[allow(non_camel_case_types)] + type _0Cmp_0 = >::Output; + assert_eq!(<_0Cmp_0 as Ord>::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_P1() { + type A = Z0; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0AddP1 = <>::Output as Same>::Output; + + assert_eq!(<_0AddP1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_P1() { + type A = Z0; + type B = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type _0SubP1 = <>::Output as Same>::Output; + + assert_eq!(<_0SubP1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MinP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MinP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_P1() { + type A = Z0; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0MaxP1 = <>::Output as Same>::Output; + + assert_eq!(<_0MaxP1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_P1() { + type A = Z0; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type _0GcdP1 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdP1 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow_P1() { + type A = Z0; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PowP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PowP1 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_P1() { + type A = Z0; + type B = PInt>; + + #[allow(non_camel_case_types)] + type _0CmpP1 = >::Output; + assert_eq!(<_0CmpP1 as Ord>::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_P2() { + type A = Z0; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0AddP2 = <>::Output as Same>::Output; + + assert_eq!(<_0AddP2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_P2() { + type A = Z0; + type B = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type _0SubP2 = <>::Output as Same>::Output; + + assert_eq!(<_0SubP2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MinP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MinP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_P2() { + type A = Z0; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0MaxP2 = <>::Output as Same>::Output; + + assert_eq!(<_0MaxP2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_P2() { + type A = Z0; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0GcdP2 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdP2 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow_P2() { + type A = Z0; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PowP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PowP2 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_P2() { + type A = Z0; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type _0CmpP2 = >::Output; + assert_eq!(<_0CmpP2 as Ord>::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_P3() { + type A = Z0; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0AddP3 = <>::Output as Same>::Output; + + assert_eq!(<_0AddP3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_P3() { + type A = Z0; + type B = PInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type _0SubP3 = <>::Output as Same>::Output; + + assert_eq!(<_0SubP3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MinP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MinP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_P3() { + type A = Z0; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0MaxP3 = <>::Output as Same>::Output; + + assert_eq!(<_0MaxP3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_P3() { + type A = Z0; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0GcdP3 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdP3 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow_P3() { + type A = Z0; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PowP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PowP3 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_P3() { + type A = Z0; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type _0CmpP3 = >::Output; + assert_eq!(<_0CmpP3 as Ord>::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0AddP4 = <>::Output as Same>::Output; + + assert_eq!(<_0AddP4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0SubP4 = <>::Output as Same>::Output; + + assert_eq!(<_0SubP4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MinP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MinP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0MaxP4 = <>::Output as Same>::Output; + + assert_eq!(<_0MaxP4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0GcdP4 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdP4 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PowP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PowP4 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_P4() { + type A = Z0; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type _0CmpP4 = >::Output; + assert_eq!(<_0CmpP4 as Ord>::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Add_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0AddP5 = <>::Output as Same>::Output; + + assert_eq!(<_0AddP5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Sub_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0SubP5 = <>::Output as Same>::Output; + + assert_eq!(<_0SubP5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Mul_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MulP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MulP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Min_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0MinP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0MinP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Max_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0MaxP5 = <>::Output as Same>::Output; + + assert_eq!(<_0MaxP5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Gcd_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0GcdP5 = <>::Output as Same>::Output; + + assert_eq!(<_0GcdP5 as Integer>::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Div_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0DivP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Rem_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0RemP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0RemP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_PartialDiv_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PartialDivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PartialDivP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Pow_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type _0PowP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(<_0PowP5 as Integer>::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Cmp_P5() { + type A = Z0; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type _0CmpP5 = >::Output; + assert_eq!(<_0CmpP5 as Ord>::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P1SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_N5() { + type A = PInt>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P1AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_N4() { + type A = PInt>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_N3() { + type A = PInt>; + type B = NInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P1AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_N3() { + type A = PInt>; + type B = NInt, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_N3() { + type A = PInt>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P1MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_N3() { + type A = PInt>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P1MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_N3() { + type A = PInt>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_N3() { + type A = PInt>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_N3() { + type A = PInt>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_N3() { + type A = PInt>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_N3() { + type A = PInt>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_N3() { + type A = PInt>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P1CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_N2() { + type A = PInt>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_N2() { + type A = PInt>; + type B = NInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P1SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_N2() { + type A = PInt>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P1MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_N2() { + type A = PInt>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P1MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_N2() { + type A = PInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_N2() { + type A = PInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_N2() { + type A = PInt>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_N2() { + type A = PInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_N2() { + type A = PInt>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_N2() { + type A = PInt>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P1CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_N1() { + type A = PInt>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1AddN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_N1() { + type A = PInt>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P1SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_N1() { + type A = PInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_N1() { + type A = PInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_N1() { + type A = PInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_N1() { + type A = PInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_N1() { + type A = PInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_N1() { + type A = PInt>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_PartialDiv_N1() { + type A = PInt>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_N1() { + type A = PInt>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_N1() { + type A = PInt>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type P1CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add__0() { + type A = PInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub__0() { + type A = PInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul__0() { + type A = PInt>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min__0() { + type A = PInt>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max__0() { + type A = PInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1Max_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd__0() { + type A = PInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow__0() { + type A = PInt>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp__0() { + type A = PInt>; + type B = Z0; + + #[allow(non_camel_case_types)] + type P1Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_P1() { + type A = PInt>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P1AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_P1() { + type A = PInt>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1SubP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_P1() { + type A = PInt>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_PartialDiv_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_P1() { + type A = PInt>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_P1() { + type A = PInt>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type P1CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P1AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_P2() { + type A = PInt>; + type B = PInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P1SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P1MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P1MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_P2() { + type A = PInt>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_P2() { + type A = PInt>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_P2() { + type A = PInt>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P1CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_P3() { + type A = PInt>; + type B = PInt, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P1SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P1MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P1MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_P3() { + type A = PInt>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_P3() { + type A = PInt>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_P3() { + type A = PInt>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P1CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P1SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_P4() { + type A = PInt>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Add_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P1AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Sub_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P1SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Mul_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Min_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Max_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Gcd_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Div_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P1DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Rem_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Pow_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P1PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Cmp_P5() { + type A = PInt>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P1CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P2AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P2SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_N5() { + type A = PInt, B0>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_N4() { + type A = PInt, B0>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P2AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P2MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_N3() { + type A = PInt, B0>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P2CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2AddN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P2DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2RemN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_PartialDiv_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P2PartialDivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_N2() { + type A = PInt, B0>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_N1() { + type A = PInt, B0>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_N1() { + type A = PInt, B0>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P2SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_N1() { + type A = PInt, B0>>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_N1() { + type A = PInt, B0>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P2MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_N1() { + type A = PInt, B0>>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_N1() { + type A = PInt, B0>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_N1() { + type A = PInt, B0>>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_N1() { + type A = PInt, B0>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_PartialDiv_N1() { + type A = PInt, B0>>; + type B = NInt>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_N1() { + type A = PInt, B0>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type P2CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add__0() { + type A = PInt, B0>>; + type B = Z0; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub__0() { + type A = PInt, B0>>; + type B = Z0; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul__0() { + type A = PInt, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min__0() { + type A = PInt, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max__0() { + type A = PInt, B0>>; + type B = Z0; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2Max_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd__0() { + type A = PInt, B0>>; + type B = Z0; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow__0() { + type A = PInt, B0>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp__0() { + type A = PInt, B0>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type P2Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P2AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_P1() { + type A = PInt, B0>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_PartialDiv_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow_P1() { + type A = PInt, B0>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_P1() { + type A = PInt, B0>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type P2CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2SubP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2RemP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_PartialDiv_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2PartialDivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_P2() { + type A = PInt, B0>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P2SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P2MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_P3() { + type A = PInt, B0>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P2CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P2SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_P4() { + type A = PInt, B0>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Add_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P2AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Sub_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P2SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Mul_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P2MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Min_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Max_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Gcd_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P2GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Div_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P2DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Rem_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P2RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Pow_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + type P32 = PInt, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P2PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Cmp_P5() { + type A = PInt, B0>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P2CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P3AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type N15 = NInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_N5() { + type A = PInt, B1>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type N12 = NInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3DivN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_N4() { + type A = PInt, B1>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3AddN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P3SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type N9 = NInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3RemN3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_PartialDiv_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3PartialDivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_N3() { + type A = PInt, B1>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P3CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type N6 = NInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P3MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P3MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_N2() { + type A = PInt, B1>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P3CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_N1() { + type A = PInt, B1>>; + type B = NInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P3AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_N1() { + type A = PInt, B1>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_N1() { + type A = PInt, B1>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_N1() { + type A = PInt, B1>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_N1() { + type A = PInt, B1>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_N1() { + type A = PInt, B1>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_N1() { + type A = PInt, B1>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P3DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_N1() { + type A = PInt, B1>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_PartialDiv_N1() { + type A = PInt, B1>>; + type B = NInt>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P3PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_N1() { + type A = PInt, B1>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type P3CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add__0() { + type A = PInt, B1>>; + type B = Z0; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub__0() { + type A = PInt, B1>>; + type B = Z0; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul__0() { + type A = PInt, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min__0() { + type A = PInt, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max__0() { + type A = PInt, B1>>; + type B = Z0; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3Max_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd__0() { + type A = PInt, B1>>; + type B = Z0; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow__0() { + type A = PInt, B1>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp__0() { + type A = PInt, B1>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type P3Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P3SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_P1() { + type A = PInt, B1>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_PartialDiv_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow_P1() { + type A = PInt, B1>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_P1() { + type A = PInt, B1>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type P3CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P3MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P3MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_P2() { + type A = PInt, B1>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P3CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P3AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3SubP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3RemP3 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_PartialDiv_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3PartialDivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + type P27 = PInt, B1>, B0>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_P3() { + type A = PInt, B1>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P3SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P12 = PInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3DivP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + type P81 = PInt, B0>, B1>, B0>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_P4() { + type A = PInt, B1>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Add_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P3AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Sub_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P3SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Mul_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P15 = PInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Min_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Max_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Gcd_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P3GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Div_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P3DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Rem_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P3RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Pow_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + type P243 = PInt, B1>, B1>, B1>, B0>, B0>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P3PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Cmp_P5() { + type A = PInt, B1>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P3CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4AddN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N20 = NInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4DivN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4RemN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_N5() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4AddN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N16 = NInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4DivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemN4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4PartialDivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_N4() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P4SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type N12 = NInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P4MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_N3() { + type A = PInt, B0>, B0>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P4CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P4SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type N8 = NInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P4MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P4DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemN2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P4PartialDivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_N2() { + type A = PInt, B0>, B0>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P4CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P4AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_N1() { + type A = PInt, B0>, B0>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type P4CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4Max_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp__0() { + type A = PInt, B0>, B0>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type P4Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P4SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_P1() { + type A = PInt, B0>, B0>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type P4CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P4AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemP2 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4PartialDivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_P2() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P4CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P4AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P12 = PInt, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P4MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + type P64 = PInt, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_P3() { + type A = PInt, B0>, B0>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P4CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4SubP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P16 = PInt, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4DivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4RemP4 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_PartialDiv_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4PartialDivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + type P256 = PInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_P4() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Add_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Sub_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P4SubP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Mul_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P20 = PInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Min_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Max_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Gcd_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P4GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Div_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P4DivP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Rem_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4RemP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Pow_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + type P1024 = PInt, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P4PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Cmp_P5() { + type A = PInt, B0>, B0>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P4CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Less); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5AddN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5SubN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N25 = NInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MinN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5GcdN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P5DivN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5RemN5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_PartialDiv_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P5PartialDivN5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_N5() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5CmpN5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5AddN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5SubN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N20 = NInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5MulN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5MinN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P5DivN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5RemN4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_N4() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5CmpN4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5AddN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5SubN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type N15 = NInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P5MinN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P5DivN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5RemN3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_N3() { + type A = PInt, B0>, B1>>; + type B = NInt, B1>>; + + #[allow(non_camel_case_types)] + type P5CmpN3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P5AddN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P5SubN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type N10 = NInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5MulN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P5MinN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P5DivN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5RemN2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_N2() { + type A = PInt, B0>, B1>>; + type B = NInt, B0>>; + + #[allow(non_camel_case_types)] + type P5CmpN2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5AddN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5SubN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type P5MinN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5DivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5RemN1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_PartialDiv_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PartialDivN1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_N1() { + type A = PInt, B0>, B1>>; + type B = NInt>; + + #[allow(non_camel_case_types)] + type P5CmpN1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5Add_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5Sub_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5Mul_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5Min_0 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5Max_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5Gcd_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5Pow_0 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp__0() { + type A = PInt, B0>, B1>>; + type B = Z0; + + #[allow(non_camel_case_types)] + type P5Cmp_0 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P6 = PInt, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5AddP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5SubP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5MinP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5DivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5RemP1 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_PartialDiv_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PartialDivP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PowP1 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_P1() { + type A = PInt, B0>, B1>>; + type B = PInt>; + + #[allow(non_camel_case_types)] + type P5CmpP1 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P7 = PInt, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P5AddP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P5SubP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5MulP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5MinP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5DivP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5RemP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + type P25 = PInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PowP2 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_P2() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5CmpP2 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P8 = PInt, B0>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5AddP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5SubP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P15 = PInt, B1>, B1>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P5MinP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5DivP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type P5RemP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + type P125 = PInt, B1>, B1>, B1>, B1>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PowP3 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_P3() { + type A = PInt, B0>, B1>>; + type B = PInt, B1>>; + + #[allow(non_camel_case_types)] + type P5CmpP3 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P9 = PInt, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5AddP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5SubP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P20 = PInt, B0>, B1>, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5MulP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5MinP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5GcdP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5DivP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5RemP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + type P625 = PInt, B0>, B0>, B1>, B1>, B1>, B0>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PowP4 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_P4() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type P5CmpP4 = >::Output; + assert_eq!(::to_ordering(), Ordering::Greater); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Add_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P10 = PInt, B0>, B1>, B0>>; + + #[allow(non_camel_case_types)] + type P5AddP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Sub_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5SubP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Mul_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P25 = PInt, B1>, B0>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MulP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Min_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MinP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Max_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5MaxP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Gcd_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5GcdP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Div_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5DivP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Rem_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type P5RemP5 = <>::Output as Same<_0>>::Output; + + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_PartialDiv_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type P5PartialDivP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Pow_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + type P3125 = PInt, B1>, B0>, B0>, B0>, B0>, B1>, B1>, B0>, B1>, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5PowP5 = <>::Output as Same>::Output; + + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Cmp_P5() { + type A = PInt, B0>, B1>>; + type B = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type P5CmpP5 = >::Output; + assert_eq!(::to_ordering(), Ordering::Equal); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Neg() { + type A = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type NegN5 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N5_Abs() { + type A = NInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type AbsN5 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Neg() { + type A = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type NegN4 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N4_Abs() { + type A = NInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type AbsN4 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Neg() { + type A = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type NegN3 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N3_Abs() { + type A = NInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type AbsN3 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Neg() { + type A = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type NegN2 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N2_Abs() { + type A = NInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type AbsN2 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Neg() { + type A = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type NegN1 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_N1_Abs() { + type A = NInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type AbsN1 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Neg() { + type A = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type Neg_0 = <::Output as Same<_0>>::Output; + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test__0_Abs() { + type A = Z0; + type _0 = Z0; + + #[allow(non_camel_case_types)] + type Abs_0 = <::Output as Same<_0>>::Output; + assert_eq!(::to_i64(), <_0 as Integer>::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Neg() { + type A = PInt>; + type N1 = NInt>; + + #[allow(non_camel_case_types)] + type NegP1 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P1_Abs() { + type A = PInt>; + type P1 = PInt>; + + #[allow(non_camel_case_types)] + type AbsP1 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Neg() { + type A = PInt, B0>>; + type N2 = NInt, B0>>; + + #[allow(non_camel_case_types)] + type NegP2 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P2_Abs() { + type A = PInt, B0>>; + type P2 = PInt, B0>>; + + #[allow(non_camel_case_types)] + type AbsP2 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Neg() { + type A = PInt, B1>>; + type N3 = NInt, B1>>; + + #[allow(non_camel_case_types)] + type NegP3 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P3_Abs() { + type A = PInt, B1>>; + type P3 = PInt, B1>>; + + #[allow(non_camel_case_types)] + type AbsP3 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Neg() { + type A = PInt, B0>, B0>>; + type N4 = NInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type NegP4 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P4_Abs() { + type A = PInt, B0>, B0>>; + type P4 = PInt, B0>, B0>>; + + #[allow(non_camel_case_types)] + type AbsP4 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Neg() { + type A = PInt, B0>, B1>>; + type N5 = NInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type NegP5 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} +#[test] +#[allow(non_snake_case)] +fn test_P5_Abs() { + type A = PInt, B0>, B1>>; + type P5 = PInt, B0>, B1>>; + + #[allow(non_camel_case_types)] + type AbsP5 = <::Output as Same>::Output; + assert_eq!(::to_i64(), ::to_i64()); +} \ No newline at end of file diff --git a/server/target/debug/build/typenum-fd2774ff4866da18/output b/server/target/debug/build/typenum-fd2774ff4866da18/output new file mode 100644 index 0000000..17b919d --- /dev/null +++ b/server/target/debug/build/typenum-fd2774ff4866da18/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=tests diff --git a/server/target/debug/build/typenum-fd2774ff4866da18/root-output b/server/target/debug/build/typenum-fd2774ff4866da18/root-output new file mode 100644 index 0000000..056fa0b --- /dev/null +++ b/server/target/debug/build/typenum-fd2774ff4866da18/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/typenum-fd2774ff4866da18/out \ No newline at end of file diff --git a/server/target/debug/build/typenum-fd2774ff4866da18/stderr b/server/target/debug/build/typenum-fd2774ff4866da18/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/v_htmlescape-26c216c7210c5da7/build-script-build b/server/target/debug/build/v_htmlescape-26c216c7210c5da7/build-script-build new file mode 100755 index 0000000..2ab20fe Binary files /dev/null and b/server/target/debug/build/v_htmlescape-26c216c7210c5da7/build-script-build differ diff --git a/server/target/debug/build/v_htmlescape-26c216c7210c5da7/build_script_build-26c216c7210c5da7 b/server/target/debug/build/v_htmlescape-26c216c7210c5da7/build_script_build-26c216c7210c5da7 new file mode 100755 index 0000000..2ab20fe Binary files /dev/null and b/server/target/debug/build/v_htmlescape-26c216c7210c5da7/build_script_build-26c216c7210c5da7 differ diff --git a/server/target/debug/build/v_htmlescape-26c216c7210c5da7/build_script_build-26c216c7210c5da7.d b/server/target/debug/build/v_htmlescape-26c216c7210c5da7/build_script_build-26c216c7210c5da7.d new file mode 100644 index 0000000..69bc375 --- /dev/null +++ b/server/target/debug/build/v_htmlescape-26c216c7210c5da7/build_script_build-26c216c7210c5da7.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/v_htmlescape-26c216c7210c5da7/build_script_build-26c216c7210c5da7.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/v_htmlescape-0.15.8/build.rs + +/home/z/my-project/projects/server/target/debug/build/v_htmlescape-26c216c7210c5da7/build_script_build-26c216c7210c5da7: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/v_htmlescape-0.15.8/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/v_htmlescape-0.15.8/build.rs: diff --git a/server/target/debug/build/v_htmlescape-59780b0c286eef8d/invoked.timestamp b/server/target/debug/build/v_htmlescape-59780b0c286eef8d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/v_htmlescape-59780b0c286eef8d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/v_htmlescape-59780b0c286eef8d/output b/server/target/debug/build/v_htmlescape-59780b0c286eef8d/output new file mode 100644 index 0000000..c959d3a --- /dev/null +++ b/server/target/debug/build/v_htmlescape-59780b0c286eef8d/output @@ -0,0 +1,2 @@ +cargo:rustc-cfg=v_escape_sse +cargo:rustc-cfg=v_escape_avx diff --git a/server/target/debug/build/v_htmlescape-59780b0c286eef8d/root-output b/server/target/debug/build/v_htmlescape-59780b0c286eef8d/root-output new file mode 100644 index 0000000..766a500 --- /dev/null +++ b/server/target/debug/build/v_htmlescape-59780b0c286eef8d/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/v_htmlescape-59780b0c286eef8d/out \ No newline at end of file diff --git a/server/target/debug/build/v_htmlescape-59780b0c286eef8d/stderr b/server/target/debug/build/v_htmlescape-59780b0c286eef8d/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/zerocopy-15ba195706a2ef69/invoked.timestamp b/server/target/debug/build/zerocopy-15ba195706a2ef69/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/zerocopy-15ba195706a2ef69/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/zerocopy-15ba195706a2ef69/output b/server/target/debug/build/zerocopy-15ba195706a2ef69/output new file mode 100644 index 0000000..f8c7dd7 --- /dev/null +++ b/server/target/debug/build/zerocopy-15ba195706a2ef69/output @@ -0,0 +1,24 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-changed=Cargo.toml +cargo:rustc-check-cfg=cfg(no_zerocopy_simd_x86_avx12_1_89_0) +cargo:rustc-check-cfg=cfg(rust, values("1.89.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_core_error_1_81_0) +cargo:rustc-check-cfg=cfg(rust, values("1.81.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_diagnostic_on_unimplemented_1_78_0) +cargo:rustc-check-cfg=cfg(rust, values("1.78.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_generic_bounds_in_const_fn_1_61_0) +cargo:rustc-check-cfg=cfg(rust, values("1.61.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_target_has_atomics_1_60_0) +cargo:rustc-check-cfg=cfg(rust, values("1.60.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_aarch64_simd_1_59_0) +cargo:rustc-check-cfg=cfg(rust, values("1.59.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_aarch64_simd_be_1_87_0) +cargo:rustc-check-cfg=cfg(rust, values("1.87.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_panic_in_const_and_vec_try_reserve_1_57_0) +cargo:rustc-check-cfg=cfg(rust, values("1.57.0")) +cargo:rustc-check-cfg=cfg(doc_cfg) +cargo:rustc-check-cfg=cfg(kani) +cargo:rustc-check-cfg=cfg(__ZEROCOPY_INTERNAL_USE_ONLY_NIGHTLY_FEATURES_IN_TESTS) +cargo:rustc-check-cfg=cfg(__ZEROCOPY_INTERNAL_USE_ONLY_DEV_MODE) +cargo:rustc-check-cfg=cfg(coverage_nightly) +cargo:rustc-check-cfg=cfg(zerocopy_inline_always) diff --git a/server/target/debug/build/zerocopy-15ba195706a2ef69/root-output b/server/target/debug/build/zerocopy-15ba195706a2ef69/root-output new file mode 100644 index 0000000..fb101e6 --- /dev/null +++ b/server/target/debug/build/zerocopy-15ba195706a2ef69/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/zerocopy-15ba195706a2ef69/out \ No newline at end of file diff --git a/server/target/debug/build/zerocopy-15ba195706a2ef69/stderr b/server/target/debug/build/zerocopy-15ba195706a2ef69/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/zerocopy-1bccde087d058d8e/build-script-build b/server/target/debug/build/zerocopy-1bccde087d058d8e/build-script-build new file mode 100755 index 0000000..eeefc41 Binary files /dev/null and b/server/target/debug/build/zerocopy-1bccde087d058d8e/build-script-build differ diff --git a/server/target/debug/build/zerocopy-1bccde087d058d8e/build_script_build-1bccde087d058d8e b/server/target/debug/build/zerocopy-1bccde087d058d8e/build_script_build-1bccde087d058d8e new file mode 100755 index 0000000..eeefc41 Binary files /dev/null and b/server/target/debug/build/zerocopy-1bccde087d058d8e/build_script_build-1bccde087d058d8e differ diff --git a/server/target/debug/build/zerocopy-1bccde087d058d8e/build_script_build-1bccde087d058d8e.d b/server/target/debug/build/zerocopy-1bccde087d058d8e/build_script_build-1bccde087d058d8e.d new file mode 100644 index 0000000..c5344ce --- /dev/null +++ b/server/target/debug/build/zerocopy-1bccde087d058d8e/build_script_build-1bccde087d058d8e.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/zerocopy-1bccde087d058d8e/build_script_build-1bccde087d058d8e.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/build.rs + +/home/z/my-project/projects/server/target/debug/build/zerocopy-1bccde087d058d8e/build_script_build-1bccde087d058d8e: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/build.rs: diff --git a/server/target/debug/build/zmij-21501fc4e230aede/build-script-build b/server/target/debug/build/zmij-21501fc4e230aede/build-script-build new file mode 100755 index 0000000..a806c37 Binary files /dev/null and b/server/target/debug/build/zmij-21501fc4e230aede/build-script-build differ diff --git a/server/target/debug/build/zmij-21501fc4e230aede/build_script_build-21501fc4e230aede b/server/target/debug/build/zmij-21501fc4e230aede/build_script_build-21501fc4e230aede new file mode 100755 index 0000000..a806c37 Binary files /dev/null and b/server/target/debug/build/zmij-21501fc4e230aede/build_script_build-21501fc4e230aede differ diff --git a/server/target/debug/build/zmij-21501fc4e230aede/build_script_build-21501fc4e230aede.d b/server/target/debug/build/zmij-21501fc4e230aede/build_script_build-21501fc4e230aede.d new file mode 100644 index 0000000..6d6068a --- /dev/null +++ b/server/target/debug/build/zmij-21501fc4e230aede/build_script_build-21501fc4e230aede.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/zmij-21501fc4e230aede/build_script_build-21501fc4e230aede.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/build.rs + +/home/z/my-project/projects/server/target/debug/build/zmij-21501fc4e230aede/build_script_build-21501fc4e230aede: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/build.rs: diff --git a/server/target/debug/build/zmij-d90832289578f4e0/invoked.timestamp b/server/target/debug/build/zmij-d90832289578f4e0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/zmij-d90832289578f4e0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/zmij-d90832289578f4e0/output b/server/target/debug/build/zmij-d90832289578f4e0/output new file mode 100644 index 0000000..c99f958 --- /dev/null +++ b/server/target/debug/build/zmij-d90832289578f4e0/output @@ -0,0 +1,3 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(exhaustive) +cargo:rustc-check-cfg=cfg(zmij_no_select_unpredictable) diff --git a/server/target/debug/build/zmij-d90832289578f4e0/root-output b/server/target/debug/build/zmij-d90832289578f4e0/root-output new file mode 100644 index 0000000..7b36c28 --- /dev/null +++ b/server/target/debug/build/zmij-d90832289578f4e0/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/zmij-d90832289578f4e0/out \ No newline at end of file diff --git a/server/target/debug/build/zmij-d90832289578f4e0/stderr b/server/target/debug/build/zmij-d90832289578f4e0/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/zstd-safe-25bc999f72fa4231/build-script-build b/server/target/debug/build/zstd-safe-25bc999f72fa4231/build-script-build new file mode 100755 index 0000000..d18decd Binary files /dev/null and b/server/target/debug/build/zstd-safe-25bc999f72fa4231/build-script-build differ diff --git a/server/target/debug/build/zstd-safe-25bc999f72fa4231/build_script_build-25bc999f72fa4231 b/server/target/debug/build/zstd-safe-25bc999f72fa4231/build_script_build-25bc999f72fa4231 new file mode 100755 index 0000000..d18decd Binary files /dev/null and b/server/target/debug/build/zstd-safe-25bc999f72fa4231/build_script_build-25bc999f72fa4231 differ diff --git a/server/target/debug/build/zstd-safe-25bc999f72fa4231/build_script_build-25bc999f72fa4231.d b/server/target/debug/build/zstd-safe-25bc999f72fa4231/build_script_build-25bc999f72fa4231.d new file mode 100644 index 0000000..25fb603 --- /dev/null +++ b/server/target/debug/build/zstd-safe-25bc999f72fa4231/build_script_build-25bc999f72fa4231.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/zstd-safe-25bc999f72fa4231/build_script_build-25bc999f72fa4231.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-safe-7.2.4/build.rs + +/home/z/my-project/projects/server/target/debug/build/zstd-safe-25bc999f72fa4231/build_script_build-25bc999f72fa4231: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-safe-7.2.4/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-safe-7.2.4/build.rs: diff --git a/server/target/debug/build/zstd-safe-ac8c8c8b50677faa/invoked.timestamp b/server/target/debug/build/zstd-safe-ac8c8c8b50677faa/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/zstd-safe-ac8c8c8b50677faa/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/zstd-safe-ac8c8c8b50677faa/output b/server/target/debug/build/zstd-safe-ac8c8c8b50677faa/output new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/zstd-safe-ac8c8c8b50677faa/root-output b/server/target/debug/build/zstd-safe-ac8c8c8b50677faa/root-output new file mode 100644 index 0000000..0d14c00 --- /dev/null +++ b/server/target/debug/build/zstd-safe-ac8c8c8b50677faa/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/zstd-safe-ac8c8c8b50677faa/out \ No newline at end of file diff --git a/server/target/debug/build/zstd-safe-ac8c8c8b50677faa/stderr b/server/target/debug/build/zstd-safe-ac8c8c8b50677faa/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/build/zstd-sys-28dfee1622a2e7c2/build-script-build b/server/target/debug/build/zstd-sys-28dfee1622a2e7c2/build-script-build new file mode 100755 index 0000000..d34a090 Binary files /dev/null and b/server/target/debug/build/zstd-sys-28dfee1622a2e7c2/build-script-build differ diff --git a/server/target/debug/build/zstd-sys-28dfee1622a2e7c2/build_script_build-28dfee1622a2e7c2 b/server/target/debug/build/zstd-sys-28dfee1622a2e7c2/build_script_build-28dfee1622a2e7c2 new file mode 100755 index 0000000..d34a090 Binary files /dev/null and b/server/target/debug/build/zstd-sys-28dfee1622a2e7c2/build_script_build-28dfee1622a2e7c2 differ diff --git a/server/target/debug/build/zstd-sys-28dfee1622a2e7c2/build_script_build-28dfee1622a2e7c2.d b/server/target/debug/build/zstd-sys-28dfee1622a2e7c2/build_script_build-28dfee1622a2e7c2.d new file mode 100644 index 0000000..1ada845 --- /dev/null +++ b/server/target/debug/build/zstd-sys-28dfee1622a2e7c2/build_script_build-28dfee1622a2e7c2.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/build/zstd-sys-28dfee1622a2e7c2/build_script_build-28dfee1622a2e7c2.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-sys-2.0.16+zstd.1.5.7/build.rs + +/home/z/my-project/projects/server/target/debug/build/zstd-sys-28dfee1622a2e7c2/build_script_build-28dfee1622a2e7c2: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-sys-2.0.16+zstd.1.5.7/build.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-sys-2.0.16+zstd.1.5.7/build.rs: diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/invoked.timestamp b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v01.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v01.o new file mode 100644 index 0000000..6e6956e Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v01.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v02.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v02.o new file mode 100644 index 0000000..6c5df75 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v02.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v03.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v03.o new file mode 100644 index 0000000..ca4dcc7 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v03.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v04.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v04.o new file mode 100644 index 0000000..ab079bd Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v04.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v05.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v05.o new file mode 100644 index 0000000..3b09656 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v05.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v06.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v06.o new file mode 100644 index 0000000..0b4ae61 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v06.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v07.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v07.o new file mode 100644 index 0000000..cdd10f9 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/3f451b2306bc13c8-zstd_v07.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-debug.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-debug.o new file mode 100644 index 0000000..0e7f8e9 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-debug.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-entropy_common.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-entropy_common.o new file mode 100644 index 0000000..b93c97a Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-entropy_common.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-error_private.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-error_private.o new file mode 100644 index 0000000..6264cb2 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-error_private.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-fse_decompress.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-fse_decompress.o new file mode 100644 index 0000000..87b0c8b Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-fse_decompress.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-pool.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-pool.o new file mode 100644 index 0000000..3e5c57d Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-pool.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-threading.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-threading.o new file mode 100644 index 0000000..15f03a4 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-threading.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-zstd_common.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-zstd_common.o new file mode 100644 index 0000000..b4ba6f5 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/44ff4c55aa9e5133-zstd_common.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/7faed3f8272f2313-huf_decompress_amd64.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/7faed3f8272f2313-huf_decompress_amd64.o new file mode 100644 index 0000000..8ae3d0b Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/7faed3f8272f2313-huf_decompress_amd64.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/88f362f13b0528ed-huf_decompress.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/88f362f13b0528ed-huf_decompress.o new file mode 100644 index 0000000..c4fbb30 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/88f362f13b0528ed-huf_decompress.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/88f362f13b0528ed-zstd_ddict.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/88f362f13b0528ed-zstd_ddict.o new file mode 100644 index 0000000..8b6d11f Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/88f362f13b0528ed-zstd_ddict.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/88f362f13b0528ed-zstd_decompress.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/88f362f13b0528ed-zstd_decompress.o new file mode 100644 index 0000000..df4c78f Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/88f362f13b0528ed-zstd_decompress.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/88f362f13b0528ed-zstd_decompress_block.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/88f362f13b0528ed-zstd_decompress_block.o new file mode 100644 index 0000000..59f568d Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/88f362f13b0528ed-zstd_decompress_block.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/a6c81c75fc82913a-cover.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/a6c81c75fc82913a-cover.o new file mode 100644 index 0000000..9e1f7bb Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/a6c81c75fc82913a-cover.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/a6c81c75fc82913a-divsufsort.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/a6c81c75fc82913a-divsufsort.o new file mode 100644 index 0000000..254b4e9 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/a6c81c75fc82913a-divsufsort.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/a6c81c75fc82913a-fastcover.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/a6c81c75fc82913a-fastcover.o new file mode 100644 index 0000000..b9cfe91 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/a6c81c75fc82913a-fastcover.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/a6c81c75fc82913a-zdict.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/a6c81c75fc82913a-zdict.o new file mode 100644 index 0000000..bb4e6a4 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/a6c81c75fc82913a-zdict.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-fse_compress.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-fse_compress.o new file mode 100644 index 0000000..b2f30df Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-fse_compress.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-hist.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-hist.o new file mode 100644 index 0000000..f711ef1 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-hist.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-huf_compress.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-huf_compress.o new file mode 100644 index 0000000..7ed81d8 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-huf_compress.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_compress.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_compress.o new file mode 100644 index 0000000..6cad908 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_compress.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_compress_literals.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_compress_literals.o new file mode 100644 index 0000000..8f3b53a Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_compress_literals.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_compress_sequences.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_compress_sequences.o new file mode 100644 index 0000000..e2401b9 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_compress_sequences.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_compress_superblock.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_compress_superblock.o new file mode 100644 index 0000000..c0d9e59 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_compress_superblock.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_double_fast.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_double_fast.o new file mode 100644 index 0000000..727fd15 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_double_fast.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_fast.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_fast.o new file mode 100644 index 0000000..a9bfbbb Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_fast.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_lazy.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_lazy.o new file mode 100644 index 0000000..65d3861 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_lazy.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_ldm.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_ldm.o new file mode 100644 index 0000000..16a2704 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_ldm.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_opt.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_opt.o new file mode 100644 index 0000000..7c8881c Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_opt.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_preSplit.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_preSplit.o new file mode 100644 index 0000000..17ba4b3 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstd_preSplit.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstdmt_compress.o b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstdmt_compress.o new file mode 100644 index 0000000..ec0faf6 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/fb80479a5fb81f6a-zstdmt_compress.o differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/flag_check b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/flag_check new file mode 100644 index 0000000..c3edf25 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/flag_check differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/flag_check.c b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/flag_check.c new file mode 100644 index 0000000..f1d95ed --- /dev/null +++ b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/flag_check.c @@ -0,0 +1 @@ +int main(void) { return 0; } \ No newline at end of file diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/include/zdict.h b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/include/zdict.h new file mode 100644 index 0000000..599b793 --- /dev/null +++ b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/include/zdict.h @@ -0,0 +1,481 @@ +/* + * Copyright (c) Meta Platforms, Inc. and affiliates. + * All rights reserved. + * + * This source code is licensed under both the BSD-style license (found in the + * LICENSE file in the root directory of this source tree) and the GPLv2 (found + * in the COPYING file in the root directory of this source tree). + * You may select, at your option, one of the above-listed licenses. + */ + +#ifndef ZSTD_ZDICT_H +#define ZSTD_ZDICT_H + + +/*====== Dependencies ======*/ +#include /* size_t */ + +#if defined (__cplusplus) +extern "C" { +#endif + +/* ===== ZDICTLIB_API : control library symbols visibility ===== */ +#ifndef ZDICTLIB_VISIBLE + /* Backwards compatibility with old macro name */ +# ifdef ZDICTLIB_VISIBILITY +# define ZDICTLIB_VISIBLE ZDICTLIB_VISIBILITY +# elif defined(__GNUC__) && (__GNUC__ >= 4) && !defined(__MINGW32__) +# define ZDICTLIB_VISIBLE __attribute__ ((visibility ("default"))) +# else +# define ZDICTLIB_VISIBLE +# endif +#endif + +#ifndef ZDICTLIB_HIDDEN +# if defined(__GNUC__) && (__GNUC__ >= 4) && !defined(__MINGW32__) +# define ZDICTLIB_HIDDEN __attribute__ ((visibility ("hidden"))) +# else +# define ZDICTLIB_HIDDEN +# endif +#endif + +#if defined(ZSTD_DLL_EXPORT) && (ZSTD_DLL_EXPORT==1) +# define ZDICTLIB_API __declspec(dllexport) ZDICTLIB_VISIBLE +#elif defined(ZSTD_DLL_IMPORT) && (ZSTD_DLL_IMPORT==1) +# define ZDICTLIB_API __declspec(dllimport) ZDICTLIB_VISIBLE /* It isn't required but allows to generate better code, saving a function pointer load from the IAT and an indirect jump.*/ +#else +# define ZDICTLIB_API ZDICTLIB_VISIBLE +#endif + +/******************************************************************************* + * Zstd dictionary builder + * + * FAQ + * === + * Why should I use a dictionary? + * ------------------------------ + * + * Zstd can use dictionaries to improve compression ratio of small data. + * Traditionally small files don't compress well because there is very little + * repetition in a single sample, since it is small. But, if you are compressing + * many similar files, like a bunch of JSON records that share the same + * structure, you can train a dictionary on ahead of time on some samples of + * these files. Then, zstd can use the dictionary to find repetitions that are + * present across samples. This can vastly improve compression ratio. + * + * When is a dictionary useful? + * ---------------------------- + * + * Dictionaries are useful when compressing many small files that are similar. + * The larger a file is, the less benefit a dictionary will have. Generally, + * we don't expect dictionary compression to be effective past 100KB. And the + * smaller a file is, the more we would expect the dictionary to help. + * + * How do I use a dictionary? + * -------------------------- + * + * Simply pass the dictionary to the zstd compressor with + * `ZSTD_CCtx_loadDictionary()`. The same dictionary must then be passed to + * the decompressor, using `ZSTD_DCtx_loadDictionary()`. There are other + * more advanced functions that allow selecting some options, see zstd.h for + * complete documentation. + * + * What is a zstd dictionary? + * -------------------------- + * + * A zstd dictionary has two pieces: Its header, and its content. The header + * contains a magic number, the dictionary ID, and entropy tables. These + * entropy tables allow zstd to save on header costs in the compressed file, + * which really matters for small data. The content is just bytes, which are + * repeated content that is common across many samples. + * + * What is a raw content dictionary? + * --------------------------------- + * + * A raw content dictionary is just bytes. It doesn't have a zstd dictionary + * header, a dictionary ID, or entropy tables. Any buffer is a valid raw + * content dictionary. + * + * How do I train a dictionary? + * ---------------------------- + * + * Gather samples from your use case. These samples should be similar to each + * other. If you have several use cases, you could try to train one dictionary + * per use case. + * + * Pass those samples to `ZDICT_trainFromBuffer()` and that will train your + * dictionary. There are a few advanced versions of this function, but this + * is a great starting point. If you want to further tune your dictionary + * you could try `ZDICT_optimizeTrainFromBuffer_cover()`. If that is too slow + * you can try `ZDICT_optimizeTrainFromBuffer_fastCover()`. + * + * If the dictionary training function fails, that is likely because you + * either passed too few samples, or a dictionary would not be effective + * for your data. Look at the messages that the dictionary trainer printed, + * if it doesn't say too few samples, then a dictionary would not be effective. + * + * How large should my dictionary be? + * ---------------------------------- + * + * A reasonable dictionary size, the `dictBufferCapacity`, is about 100KB. + * The zstd CLI defaults to a 110KB dictionary. You likely don't need a + * dictionary larger than that. But, most use cases can get away with a + * smaller dictionary. The advanced dictionary builders can automatically + * shrink the dictionary for you, and select the smallest size that doesn't + * hurt compression ratio too much. See the `shrinkDict` parameter. + * A smaller dictionary can save memory, and potentially speed up + * compression. + * + * How many samples should I provide to the dictionary builder? + * ------------------------------------------------------------ + * + * We generally recommend passing ~100x the size of the dictionary + * in samples. A few thousand should suffice. Having too few samples + * can hurt the dictionaries effectiveness. Having more samples will + * only improve the dictionaries effectiveness. But having too many + * samples can slow down the dictionary builder. + * + * How do I determine if a dictionary will be effective? + * ----------------------------------------------------- + * + * Simply train a dictionary and try it out. You can use zstd's built in + * benchmarking tool to test the dictionary effectiveness. + * + * # Benchmark levels 1-3 without a dictionary + * zstd -b1e3 -r /path/to/my/files + * # Benchmark levels 1-3 with a dictionary + * zstd -b1e3 -r /path/to/my/files -D /path/to/my/dictionary + * + * When should I retrain a dictionary? + * ----------------------------------- + * + * You should retrain a dictionary when its effectiveness drops. Dictionary + * effectiveness drops as the data you are compressing changes. Generally, we do + * expect dictionaries to "decay" over time, as your data changes, but the rate + * at which they decay depends on your use case. Internally, we regularly + * retrain dictionaries, and if the new dictionary performs significantly + * better than the old dictionary, we will ship the new dictionary. + * + * I have a raw content dictionary, how do I turn it into a zstd dictionary? + * ------------------------------------------------------------------------- + * + * If you have a raw content dictionary, e.g. by manually constructing it, or + * using a third-party dictionary builder, you can turn it into a zstd + * dictionary by using `ZDICT_finalizeDictionary()`. You'll also have to + * provide some samples of the data. It will add the zstd header to the + * raw content, which contains a dictionary ID and entropy tables, which + * will improve compression ratio, and allow zstd to write the dictionary ID + * into the frame, if you so choose. + * + * Do I have to use zstd's dictionary builder? + * ------------------------------------------- + * + * No! You can construct dictionary content however you please, it is just + * bytes. It will always be valid as a raw content dictionary. If you want + * a zstd dictionary, which can improve compression ratio, use + * `ZDICT_finalizeDictionary()`. + * + * What is the attack surface of a zstd dictionary? + * ------------------------------------------------ + * + * Zstd is heavily fuzz tested, including loading fuzzed dictionaries, so + * zstd should never crash, or access out-of-bounds memory no matter what + * the dictionary is. However, if an attacker can control the dictionary + * during decompression, they can cause zstd to generate arbitrary bytes, + * just like if they controlled the compressed data. + * + ******************************************************************************/ + + +/*! ZDICT_trainFromBuffer(): + * Train a dictionary from an array of samples. + * Redirect towards ZDICT_optimizeTrainFromBuffer_fastCover() single-threaded, with d=8, steps=4, + * f=20, and accel=1. + * Samples must be stored concatenated in a single flat buffer `samplesBuffer`, + * supplied with an array of sizes `samplesSizes`, providing the size of each sample, in order. + * The resulting dictionary will be saved into `dictBuffer`. + * @return: size of dictionary stored into `dictBuffer` (<= `dictBufferCapacity`) + * or an error code, which can be tested with ZDICT_isError(). + * Note: Dictionary training will fail if there are not enough samples to construct a + * dictionary, or if most of the samples are too small (< 8 bytes being the lower limit). + * If dictionary training fails, you should use zstd without a dictionary, as the dictionary + * would've been ineffective anyways. If you believe your samples would benefit from a dictionary + * please open an issue with details, and we can look into it. + * Note: ZDICT_trainFromBuffer()'s memory usage is about 6 MB. + * Tips: In general, a reasonable dictionary has a size of ~ 100 KB. + * It's possible to select smaller or larger size, just by specifying `dictBufferCapacity`. + * In general, it's recommended to provide a few thousands samples, though this can vary a lot. + * It's recommended that total size of all samples be about ~x100 times the target size of dictionary. + */ +ZDICTLIB_API size_t ZDICT_trainFromBuffer(void* dictBuffer, size_t dictBufferCapacity, + const void* samplesBuffer, + const size_t* samplesSizes, unsigned nbSamples); + +typedef struct { + int compressionLevel; /**< optimize for a specific zstd compression level; 0 means default */ + unsigned notificationLevel; /**< Write log to stderr; 0 = none (default); 1 = errors; 2 = progression; 3 = details; 4 = debug; */ + unsigned dictID; /**< force dictID value; 0 means auto mode (32-bits random value) + * NOTE: The zstd format reserves some dictionary IDs for future use. + * You may use them in private settings, but be warned that they + * may be used by zstd in a public dictionary registry in the future. + * These dictionary IDs are: + * - low range : <= 32767 + * - high range : >= (2^31) + */ +} ZDICT_params_t; + +/*! ZDICT_finalizeDictionary(): + * Given a custom content as a basis for dictionary, and a set of samples, + * finalize dictionary by adding headers and statistics according to the zstd + * dictionary format. + * + * Samples must be stored concatenated in a flat buffer `samplesBuffer`, + * supplied with an array of sizes `samplesSizes`, providing the size of each + * sample in order. The samples are used to construct the statistics, so they + * should be representative of what you will compress with this dictionary. + * + * The compression level can be set in `parameters`. You should pass the + * compression level you expect to use in production. The statistics for each + * compression level differ, so tuning the dictionary for the compression level + * can help quite a bit. + * + * You can set an explicit dictionary ID in `parameters`, or allow us to pick + * a random dictionary ID for you, but we can't guarantee no collisions. + * + * The dstDictBuffer and the dictContent may overlap, and the content will be + * appended to the end of the header. If the header + the content doesn't fit in + * maxDictSize the beginning of the content is truncated to make room, since it + * is presumed that the most profitable content is at the end of the dictionary, + * since that is the cheapest to reference. + * + * `maxDictSize` must be >= max(dictContentSize, ZDICT_DICTSIZE_MIN). + * + * @return: size of dictionary stored into `dstDictBuffer` (<= `maxDictSize`), + * or an error code, which can be tested by ZDICT_isError(). + * Note: ZDICT_finalizeDictionary() will push notifications into stderr if + * instructed to, using notificationLevel>0. + * NOTE: This function currently may fail in several edge cases including: + * * Not enough samples + * * Samples are uncompressible + * * Samples are all exactly the same + */ +ZDICTLIB_API size_t ZDICT_finalizeDictionary(void* dstDictBuffer, size_t maxDictSize, + const void* dictContent, size_t dictContentSize, + const void* samplesBuffer, const size_t* samplesSizes, unsigned nbSamples, + ZDICT_params_t parameters); + + +/*====== Helper functions ======*/ +ZDICTLIB_API unsigned ZDICT_getDictID(const void* dictBuffer, size_t dictSize); /**< extracts dictID; @return zero if error (not a valid dictionary) */ +ZDICTLIB_API size_t ZDICT_getDictHeaderSize(const void* dictBuffer, size_t dictSize); /* returns dict header size; returns a ZSTD error code on failure */ +ZDICTLIB_API unsigned ZDICT_isError(size_t errorCode); +ZDICTLIB_API const char* ZDICT_getErrorName(size_t errorCode); + +#if defined (__cplusplus) +} +#endif + +#endif /* ZSTD_ZDICT_H */ + +#if defined(ZDICT_STATIC_LINKING_ONLY) && !defined(ZSTD_ZDICT_H_STATIC) +#define ZSTD_ZDICT_H_STATIC + +#if defined (__cplusplus) +extern "C" { +#endif + +/* This can be overridden externally to hide static symbols. */ +#ifndef ZDICTLIB_STATIC_API +# if defined(ZSTD_DLL_EXPORT) && (ZSTD_DLL_EXPORT==1) +# define ZDICTLIB_STATIC_API __declspec(dllexport) ZDICTLIB_VISIBLE +# elif defined(ZSTD_DLL_IMPORT) && (ZSTD_DLL_IMPORT==1) +# define ZDICTLIB_STATIC_API __declspec(dllimport) ZDICTLIB_VISIBLE +# else +# define ZDICTLIB_STATIC_API ZDICTLIB_VISIBLE +# endif +#endif + +/* ==================================================================================== + * The definitions in this section are considered experimental. + * They should never be used with a dynamic library, as they may change in the future. + * They are provided for advanced usages. + * Use them only in association with static linking. + * ==================================================================================== */ + +#define ZDICT_DICTSIZE_MIN 256 +/* Deprecated: Remove in v1.6.0 */ +#define ZDICT_CONTENTSIZE_MIN 128 + +/*! ZDICT_cover_params_t: + * k and d are the only required parameters. + * For others, value 0 means default. + */ +typedef struct { + unsigned k; /* Segment size : constraint: 0 < k : Reasonable range [16, 2048+] */ + unsigned d; /* dmer size : constraint: 0 < d <= k : Reasonable range [6, 16] */ + unsigned steps; /* Number of steps : Only used for optimization : 0 means default (40) : Higher means more parameters checked */ + unsigned nbThreads; /* Number of threads : constraint: 0 < nbThreads : 1 means single-threaded : Only used for optimization : Ignored if ZSTD_MULTITHREAD is not defined */ + double splitPoint; /* Percentage of samples used for training: Only used for optimization : the first nbSamples * splitPoint samples will be used to training, the last nbSamples * (1 - splitPoint) samples will be used for testing, 0 means default (1.0), 1.0 when all samples are used for both training and testing */ + unsigned shrinkDict; /* Train dictionaries to shrink in size starting from the minimum size and selects the smallest dictionary that is shrinkDictMaxRegression% worse than the largest dictionary. 0 means no shrinking and 1 means shrinking */ + unsigned shrinkDictMaxRegression; /* Sets shrinkDictMaxRegression so that a smaller dictionary can be at worse shrinkDictMaxRegression% worse than the max dict size dictionary. */ + ZDICT_params_t zParams; +} ZDICT_cover_params_t; + +typedef struct { + unsigned k; /* Segment size : constraint: 0 < k : Reasonable range [16, 2048+] */ + unsigned d; /* dmer size : constraint: 0 < d <= k : Reasonable range [6, 16] */ + unsigned f; /* log of size of frequency array : constraint: 0 < f <= 31 : 1 means default(20)*/ + unsigned steps; /* Number of steps : Only used for optimization : 0 means default (40) : Higher means more parameters checked */ + unsigned nbThreads; /* Number of threads : constraint: 0 < nbThreads : 1 means single-threaded : Only used for optimization : Ignored if ZSTD_MULTITHREAD is not defined */ + double splitPoint; /* Percentage of samples used for training: Only used for optimization : the first nbSamples * splitPoint samples will be used to training, the last nbSamples * (1 - splitPoint) samples will be used for testing, 0 means default (0.75), 1.0 when all samples are used for both training and testing */ + unsigned accel; /* Acceleration level: constraint: 0 < accel <= 10, higher means faster and less accurate, 0 means default(1) */ + unsigned shrinkDict; /* Train dictionaries to shrink in size starting from the minimum size and selects the smallest dictionary that is shrinkDictMaxRegression% worse than the largest dictionary. 0 means no shrinking and 1 means shrinking */ + unsigned shrinkDictMaxRegression; /* Sets shrinkDictMaxRegression so that a smaller dictionary can be at worse shrinkDictMaxRegression% worse than the max dict size dictionary. */ + + ZDICT_params_t zParams; +} ZDICT_fastCover_params_t; + +/*! ZDICT_trainFromBuffer_cover(): + * Train a dictionary from an array of samples using the COVER algorithm. + * Samples must be stored concatenated in a single flat buffer `samplesBuffer`, + * supplied with an array of sizes `samplesSizes`, providing the size of each sample, in order. + * The resulting dictionary will be saved into `dictBuffer`. + * @return: size of dictionary stored into `dictBuffer` (<= `dictBufferCapacity`) + * or an error code, which can be tested with ZDICT_isError(). + * See ZDICT_trainFromBuffer() for details on failure modes. + * Note: ZDICT_trainFromBuffer_cover() requires about 9 bytes of memory for each input byte. + * Tips: In general, a reasonable dictionary has a size of ~ 100 KB. + * It's possible to select smaller or larger size, just by specifying `dictBufferCapacity`. + * In general, it's recommended to provide a few thousands samples, though this can vary a lot. + * It's recommended that total size of all samples be about ~x100 times the target size of dictionary. + */ +ZDICTLIB_STATIC_API size_t ZDICT_trainFromBuffer_cover( + void *dictBuffer, size_t dictBufferCapacity, + const void *samplesBuffer, const size_t *samplesSizes, unsigned nbSamples, + ZDICT_cover_params_t parameters); + +/*! ZDICT_optimizeTrainFromBuffer_cover(): + * The same requirements as above hold for all the parameters except `parameters`. + * This function tries many parameter combinations and picks the best parameters. + * `*parameters` is filled with the best parameters found, + * dictionary constructed with those parameters is stored in `dictBuffer`. + * + * All of the parameters d, k, steps are optional. + * If d is non-zero then we don't check multiple values of d, otherwise we check d = {6, 8}. + * if steps is zero it defaults to its default value. + * If k is non-zero then we don't check multiple values of k, otherwise we check steps values in [50, 2000]. + * + * @return: size of dictionary stored into `dictBuffer` (<= `dictBufferCapacity`) + * or an error code, which can be tested with ZDICT_isError(). + * On success `*parameters` contains the parameters selected. + * See ZDICT_trainFromBuffer() for details on failure modes. + * Note: ZDICT_optimizeTrainFromBuffer_cover() requires about 8 bytes of memory for each input byte and additionally another 5 bytes of memory for each byte of memory for each thread. + */ +ZDICTLIB_STATIC_API size_t ZDICT_optimizeTrainFromBuffer_cover( + void* dictBuffer, size_t dictBufferCapacity, + const void* samplesBuffer, const size_t* samplesSizes, unsigned nbSamples, + ZDICT_cover_params_t* parameters); + +/*! ZDICT_trainFromBuffer_fastCover(): + * Train a dictionary from an array of samples using a modified version of COVER algorithm. + * Samples must be stored concatenated in a single flat buffer `samplesBuffer`, + * supplied with an array of sizes `samplesSizes`, providing the size of each sample, in order. + * d and k are required. + * All other parameters are optional, will use default values if not provided + * The resulting dictionary will be saved into `dictBuffer`. + * @return: size of dictionary stored into `dictBuffer` (<= `dictBufferCapacity`) + * or an error code, which can be tested with ZDICT_isError(). + * See ZDICT_trainFromBuffer() for details on failure modes. + * Note: ZDICT_trainFromBuffer_fastCover() requires 6 * 2^f bytes of memory. + * Tips: In general, a reasonable dictionary has a size of ~ 100 KB. + * It's possible to select smaller or larger size, just by specifying `dictBufferCapacity`. + * In general, it's recommended to provide a few thousands samples, though this can vary a lot. + * It's recommended that total size of all samples be about ~x100 times the target size of dictionary. + */ +ZDICTLIB_STATIC_API size_t ZDICT_trainFromBuffer_fastCover(void *dictBuffer, + size_t dictBufferCapacity, const void *samplesBuffer, + const size_t *samplesSizes, unsigned nbSamples, + ZDICT_fastCover_params_t parameters); + +/*! ZDICT_optimizeTrainFromBuffer_fastCover(): + * The same requirements as above hold for all the parameters except `parameters`. + * This function tries many parameter combinations (specifically, k and d combinations) + * and picks the best parameters. `*parameters` is filled with the best parameters found, + * dictionary constructed with those parameters is stored in `dictBuffer`. + * All of the parameters d, k, steps, f, and accel are optional. + * If d is non-zero then we don't check multiple values of d, otherwise we check d = {6, 8}. + * if steps is zero it defaults to its default value. + * If k is non-zero then we don't check multiple values of k, otherwise we check steps values in [50, 2000]. + * If f is zero, default value of 20 is used. + * If accel is zero, default value of 1 is used. + * + * @return: size of dictionary stored into `dictBuffer` (<= `dictBufferCapacity`) + * or an error code, which can be tested with ZDICT_isError(). + * On success `*parameters` contains the parameters selected. + * See ZDICT_trainFromBuffer() for details on failure modes. + * Note: ZDICT_optimizeTrainFromBuffer_fastCover() requires about 6 * 2^f bytes of memory for each thread. + */ +ZDICTLIB_STATIC_API size_t ZDICT_optimizeTrainFromBuffer_fastCover(void* dictBuffer, + size_t dictBufferCapacity, const void* samplesBuffer, + const size_t* samplesSizes, unsigned nbSamples, + ZDICT_fastCover_params_t* parameters); + +typedef struct { + unsigned selectivityLevel; /* 0 means default; larger => select more => larger dictionary */ + ZDICT_params_t zParams; +} ZDICT_legacy_params_t; + +/*! ZDICT_trainFromBuffer_legacy(): + * Train a dictionary from an array of samples. + * Samples must be stored concatenated in a single flat buffer `samplesBuffer`, + * supplied with an array of sizes `samplesSizes`, providing the size of each sample, in order. + * The resulting dictionary will be saved into `dictBuffer`. + * `parameters` is optional and can be provided with values set to 0 to mean "default". + * @return: size of dictionary stored into `dictBuffer` (<= `dictBufferCapacity`) + * or an error code, which can be tested with ZDICT_isError(). + * See ZDICT_trainFromBuffer() for details on failure modes. + * Tips: In general, a reasonable dictionary has a size of ~ 100 KB. + * It's possible to select smaller or larger size, just by specifying `dictBufferCapacity`. + * In general, it's recommended to provide a few thousands samples, though this can vary a lot. + * It's recommended that total size of all samples be about ~x100 times the target size of dictionary. + * Note: ZDICT_trainFromBuffer_legacy() will send notifications into stderr if instructed to, using notificationLevel>0. + */ +ZDICTLIB_STATIC_API size_t ZDICT_trainFromBuffer_legacy( + void* dictBuffer, size_t dictBufferCapacity, + const void* samplesBuffer, const size_t* samplesSizes, unsigned nbSamples, + ZDICT_legacy_params_t parameters); + + +/* Deprecation warnings */ +/* It is generally possible to disable deprecation warnings from compiler, + for example with -Wno-deprecated-declarations for gcc + or _CRT_SECURE_NO_WARNINGS in Visual. + Otherwise, it's also possible to manually define ZDICT_DISABLE_DEPRECATE_WARNINGS */ +#ifdef ZDICT_DISABLE_DEPRECATE_WARNINGS +# define ZDICT_DEPRECATED(message) /* disable deprecation warnings */ +#else +# define ZDICT_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__) +# if defined (__cplusplus) && (__cplusplus >= 201402) /* C++14 or greater */ +# define ZDICT_DEPRECATED(message) [[deprecated(message)]] +# elif defined(__clang__) || (ZDICT_GCC_VERSION >= 405) +# define ZDICT_DEPRECATED(message) __attribute__((deprecated(message))) +# elif (ZDICT_GCC_VERSION >= 301) +# define ZDICT_DEPRECATED(message) __attribute__((deprecated)) +# elif defined(_MSC_VER) +# define ZDICT_DEPRECATED(message) __declspec(deprecated(message)) +# else +# pragma message("WARNING: You need to implement ZDICT_DEPRECATED for this compiler") +# define ZDICT_DEPRECATED(message) +# endif +#endif /* ZDICT_DISABLE_DEPRECATE_WARNINGS */ + +ZDICT_DEPRECATED("use ZDICT_finalizeDictionary() instead") +ZDICTLIB_STATIC_API +size_t ZDICT_addEntropyTablesFromBuffer(void* dictBuffer, size_t dictContentSize, size_t dictBufferCapacity, + const void* samplesBuffer, const size_t* samplesSizes, unsigned nbSamples); + +#if defined (__cplusplus) +} +#endif + +#endif /* ZSTD_ZDICT_H_STATIC */ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/include/zstd.h b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/include/zstd.h new file mode 100644 index 0000000..b8c0644 --- /dev/null +++ b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/include/zstd.h @@ -0,0 +1,3198 @@ +/* + * Copyright (c) Meta Platforms, Inc. and affiliates. + * All rights reserved. + * + * This source code is licensed under both the BSD-style license (found in the + * LICENSE file in the root directory of this source tree) and the GPLv2 (found + * in the COPYING file in the root directory of this source tree). + * You may select, at your option, one of the above-listed licenses. + */ + +#ifndef ZSTD_H_235446 +#define ZSTD_H_235446 + + +/* ====== Dependencies ======*/ +#include /* size_t */ + +#include "zstd_errors.h" /* list of errors */ +#if defined(ZSTD_STATIC_LINKING_ONLY) && !defined(ZSTD_H_ZSTD_STATIC_LINKING_ONLY) +#include /* INT_MAX */ +#endif /* ZSTD_STATIC_LINKING_ONLY */ + +#if defined (__cplusplus) +extern "C" { +#endif + +/* ===== ZSTDLIB_API : control library symbols visibility ===== */ +#ifndef ZSTDLIB_VISIBLE + /* Backwards compatibility with old macro name */ +# ifdef ZSTDLIB_VISIBILITY +# define ZSTDLIB_VISIBLE ZSTDLIB_VISIBILITY +# elif defined(__GNUC__) && (__GNUC__ >= 4) && !defined(__MINGW32__) +# define ZSTDLIB_VISIBLE __attribute__ ((visibility ("default"))) +# else +# define ZSTDLIB_VISIBLE +# endif +#endif + +#ifndef ZSTDLIB_HIDDEN +# if defined(__GNUC__) && (__GNUC__ >= 4) && !defined(__MINGW32__) +# define ZSTDLIB_HIDDEN __attribute__ ((visibility ("hidden"))) +# else +# define ZSTDLIB_HIDDEN +# endif +#endif + +#if defined(ZSTD_DLL_EXPORT) && (ZSTD_DLL_EXPORT==1) +# define ZSTDLIB_API __declspec(dllexport) ZSTDLIB_VISIBLE +#elif defined(ZSTD_DLL_IMPORT) && (ZSTD_DLL_IMPORT==1) +# define ZSTDLIB_API __declspec(dllimport) ZSTDLIB_VISIBLE /* It isn't required but allows to generate better code, saving a function pointer load from the IAT and an indirect jump.*/ +#else +# define ZSTDLIB_API ZSTDLIB_VISIBLE +#endif + +/* Deprecation warnings : + * Should these warnings be a problem, it is generally possible to disable them, + * typically with -Wno-deprecated-declarations for gcc or _CRT_SECURE_NO_WARNINGS in Visual. + * Otherwise, it's also possible to define ZSTD_DISABLE_DEPRECATE_WARNINGS. + */ +#ifdef ZSTD_DISABLE_DEPRECATE_WARNINGS +# define ZSTD_DEPRECATED(message) /* disable deprecation warnings */ +#else +# if defined (__cplusplus) && (__cplusplus >= 201402) /* C++14 or greater */ +# define ZSTD_DEPRECATED(message) [[deprecated(message)]] +# elif (defined(GNUC) && (GNUC > 4 || (GNUC == 4 && GNUC_MINOR >= 5))) || defined(__clang__) || defined(__IAR_SYSTEMS_ICC__) +# define ZSTD_DEPRECATED(message) __attribute__((deprecated(message))) +# elif defined(__GNUC__) && (__GNUC__ >= 3) +# define ZSTD_DEPRECATED(message) __attribute__((deprecated)) +# elif defined(_MSC_VER) +# define ZSTD_DEPRECATED(message) __declspec(deprecated(message)) +# else +# pragma message("WARNING: You need to implement ZSTD_DEPRECATED for this compiler") +# define ZSTD_DEPRECATED(message) +# endif +#endif /* ZSTD_DISABLE_DEPRECATE_WARNINGS */ + + +/******************************************************************************* + Introduction + + zstd, short for Zstandard, is a fast lossless compression algorithm, targeting + real-time compression scenarios at zlib-level and better compression ratios. + The zstd compression library provides in-memory compression and decompression + functions. + + The library supports regular compression levels from 1 up to ZSTD_maxCLevel(), + which is currently 22. Levels >= 20, labeled `--ultra`, should be used with + caution, as they require more memory. The library also offers negative + compression levels, which extend the range of speed vs. ratio preferences. + The lower the level, the faster the speed (at the cost of compression). + + Compression can be done in: + - a single step (described as Simple API) + - a single step, reusing a context (described as Explicit context) + - unbounded multiple steps (described as Streaming compression) + + The compression ratio achievable on small data can be highly improved using + a dictionary. Dictionary compression can be performed in: + - a single step (described as Simple dictionary API) + - a single step, reusing a dictionary (described as Bulk-processing + dictionary API) + + Advanced experimental functions can be accessed using + `#define ZSTD_STATIC_LINKING_ONLY` before including zstd.h. + + Advanced experimental APIs should never be used with a dynamically-linked + library. They are not "stable"; their definitions or signatures may change in + the future. Only static linking is allowed. +*******************************************************************************/ + +/*------ Version ------*/ +#define ZSTD_VERSION_MAJOR 1 +#define ZSTD_VERSION_MINOR 5 +#define ZSTD_VERSION_RELEASE 7 +#define ZSTD_VERSION_NUMBER (ZSTD_VERSION_MAJOR *100*100 + ZSTD_VERSION_MINOR *100 + ZSTD_VERSION_RELEASE) + +/*! ZSTD_versionNumber() : + * Return runtime library version, the value is (MAJOR*100*100 + MINOR*100 + RELEASE). */ +ZSTDLIB_API unsigned ZSTD_versionNumber(void); + +#define ZSTD_LIB_VERSION ZSTD_VERSION_MAJOR.ZSTD_VERSION_MINOR.ZSTD_VERSION_RELEASE +#define ZSTD_QUOTE(str) #str +#define ZSTD_EXPAND_AND_QUOTE(str) ZSTD_QUOTE(str) +#define ZSTD_VERSION_STRING ZSTD_EXPAND_AND_QUOTE(ZSTD_LIB_VERSION) + +/*! ZSTD_versionString() : + * Return runtime library version, like "1.4.5". Requires v1.3.0+. */ +ZSTDLIB_API const char* ZSTD_versionString(void); + +/* ************************************* + * Default constant + ***************************************/ +#ifndef ZSTD_CLEVEL_DEFAULT +# define ZSTD_CLEVEL_DEFAULT 3 +#endif + +/* ************************************* + * Constants + ***************************************/ + +/* All magic numbers are supposed read/written to/from files/memory using little-endian convention */ +#define ZSTD_MAGICNUMBER 0xFD2FB528 /* valid since v0.8.0 */ +#define ZSTD_MAGIC_DICTIONARY 0xEC30A437 /* valid since v0.7.0 */ +#define ZSTD_MAGIC_SKIPPABLE_START 0x184D2A50 /* all 16 values, from 0x184D2A50 to 0x184D2A5F, signal the beginning of a skippable frame */ +#define ZSTD_MAGIC_SKIPPABLE_MASK 0xFFFFFFF0 + +#define ZSTD_BLOCKSIZELOG_MAX 17 +#define ZSTD_BLOCKSIZE_MAX (1<= ZSTD_compressBound(srcSize)` guarantees that zstd will have + * enough space to successfully compress the data. + * @return : compressed size written into `dst` (<= `dstCapacity), + * or an error code if it fails (which can be tested using ZSTD_isError()). */ +ZSTDLIB_API size_t ZSTD_compress( void* dst, size_t dstCapacity, + const void* src, size_t srcSize, + int compressionLevel); + +/*! ZSTD_decompress() : + * `compressedSize` : must be the _exact_ size of some number of compressed and/or skippable frames. + * Multiple compressed frames can be decompressed at once with this method. + * The result will be the concatenation of all decompressed frames, back to back. + * `dstCapacity` is an upper bound of originalSize to regenerate. + * First frame's decompressed size can be extracted using ZSTD_getFrameContentSize(). + * If maximum upper bound isn't known, prefer using streaming mode to decompress data. + * @return : the number of bytes decompressed into `dst` (<= `dstCapacity`), + * or an errorCode if it fails (which can be tested using ZSTD_isError()). */ +ZSTDLIB_API size_t ZSTD_decompress( void* dst, size_t dstCapacity, + const void* src, size_t compressedSize); + + +/*====== Decompression helper functions ======*/ + +/*! ZSTD_getFrameContentSize() : requires v1.3.0+ + * `src` should point to the start of a ZSTD encoded frame. + * `srcSize` must be at least as large as the frame header. + * hint : any size >= `ZSTD_frameHeaderSize_max` is large enough. + * @return : - decompressed size of `src` frame content, if known + * - ZSTD_CONTENTSIZE_UNKNOWN if the size cannot be determined + * - ZSTD_CONTENTSIZE_ERROR if an error occurred (e.g. invalid magic number, srcSize too small) + * note 1 : a 0 return value means the frame is valid but "empty". + * When invoking this method on a skippable frame, it will return 0. + * note 2 : decompressed size is an optional field, it may not be present (typically in streaming mode). + * When `return==ZSTD_CONTENTSIZE_UNKNOWN`, data to decompress could be any size. + * In which case, it's necessary to use streaming mode to decompress data. + * Optionally, application can rely on some implicit limit, + * as ZSTD_decompress() only needs an upper bound of decompressed size. + * (For example, data could be necessarily cut into blocks <= 16 KB). + * note 3 : decompressed size is always present when compression is completed using single-pass functions, + * such as ZSTD_compress(), ZSTD_compressCCtx() ZSTD_compress_usingDict() or ZSTD_compress_usingCDict(). + * note 4 : decompressed size can be very large (64-bits value), + * potentially larger than what local system can handle as a single memory segment. + * In which case, it's necessary to use streaming mode to decompress data. + * note 5 : If source is untrusted, decompressed size could be wrong or intentionally modified. + * Always ensure return value fits within application's authorized limits. + * Each application can set its own limits. + * note 6 : This function replaces ZSTD_getDecompressedSize() */ +#define ZSTD_CONTENTSIZE_UNKNOWN (0ULL - 1) +#define ZSTD_CONTENTSIZE_ERROR (0ULL - 2) +ZSTDLIB_API unsigned long long ZSTD_getFrameContentSize(const void *src, size_t srcSize); + +/*! ZSTD_getDecompressedSize() (obsolete): + * This function is now obsolete, in favor of ZSTD_getFrameContentSize(). + * Both functions work the same way, but ZSTD_getDecompressedSize() blends + * "empty", "unknown" and "error" results to the same return value (0), + * while ZSTD_getFrameContentSize() gives them separate return values. + * @return : decompressed size of `src` frame content _if known and not empty_, 0 otherwise. */ +ZSTD_DEPRECATED("Replaced by ZSTD_getFrameContentSize") +ZSTDLIB_API unsigned long long ZSTD_getDecompressedSize(const void* src, size_t srcSize); + +/*! ZSTD_findFrameCompressedSize() : Requires v1.4.0+ + * `src` should point to the start of a ZSTD frame or skippable frame. + * `srcSize` must be >= first frame size + * @return : the compressed size of the first frame starting at `src`, + * suitable to pass as `srcSize` to `ZSTD_decompress` or similar, + * or an error code if input is invalid + * Note 1: this method is called _find*() because it's not enough to read the header, + * it may have to scan through the frame's content, to reach its end. + * Note 2: this method also works with Skippable Frames. In which case, + * it returns the size of the complete skippable frame, + * which is always equal to its content size + 8 bytes for headers. */ +ZSTDLIB_API size_t ZSTD_findFrameCompressedSize(const void* src, size_t srcSize); + + +/*====== Compression helper functions ======*/ + +/*! ZSTD_compressBound() : + * maximum compressed size in worst case single-pass scenario. + * When invoking `ZSTD_compress()`, or any other one-pass compression function, + * it's recommended to provide @dstCapacity >= ZSTD_compressBound(srcSize) + * as it eliminates one potential failure scenario, + * aka not enough room in dst buffer to write the compressed frame. + * Note : ZSTD_compressBound() itself can fail, if @srcSize >= ZSTD_MAX_INPUT_SIZE . + * In which case, ZSTD_compressBound() will return an error code + * which can be tested using ZSTD_isError(). + * + * ZSTD_COMPRESSBOUND() : + * same as ZSTD_compressBound(), but as a macro. + * It can be used to produce constants, which can be useful for static allocation, + * for example to size a static array on stack. + * Will produce constant value 0 if srcSize is too large. + */ +#define ZSTD_MAX_INPUT_SIZE ((sizeof(size_t)==8) ? 0xFF00FF00FF00FF00ULL : 0xFF00FF00U) +#define ZSTD_COMPRESSBOUND(srcSize) (((size_t)(srcSize) >= ZSTD_MAX_INPUT_SIZE) ? 0 : (srcSize) + ((srcSize)>>8) + (((srcSize) < (128<<10)) ? (((128<<10) - (srcSize)) >> 11) /* margin, from 64 to 0 */ : 0)) /* this formula ensures that bound(A) + bound(B) <= bound(A+B) as long as A and B >= 128 KB */ +ZSTDLIB_API size_t ZSTD_compressBound(size_t srcSize); /*!< maximum compressed size in worst case single-pass scenario */ + + +/*====== Error helper functions ======*/ +/* ZSTD_isError() : + * Most ZSTD_* functions returning a size_t value can be tested for error, + * using ZSTD_isError(). + * @return 1 if error, 0 otherwise + */ +ZSTDLIB_API unsigned ZSTD_isError(size_t result); /*!< tells if a `size_t` function result is an error code */ +ZSTDLIB_API ZSTD_ErrorCode ZSTD_getErrorCode(size_t functionResult); /* convert a result into an error code, which can be compared to error enum list */ +ZSTDLIB_API const char* ZSTD_getErrorName(size_t result); /*!< provides readable string from a function result */ +ZSTDLIB_API int ZSTD_minCLevel(void); /*!< minimum negative compression level allowed, requires v1.4.0+ */ +ZSTDLIB_API int ZSTD_maxCLevel(void); /*!< maximum compression level available */ +ZSTDLIB_API int ZSTD_defaultCLevel(void); /*!< default compression level, specified by ZSTD_CLEVEL_DEFAULT, requires v1.5.0+ */ + + +/*************************************** +* Explicit context +***************************************/ +/*= Compression context + * When compressing many times, + * it is recommended to allocate a compression context just once, + * and reuse it for each successive compression operation. + * This will make the workload easier for system's memory. + * Note : re-using context is just a speed / resource optimization. + * It doesn't change the compression ratio, which remains identical. + * Note 2: For parallel execution in multi-threaded environments, + * use one different context per thread . + */ +typedef struct ZSTD_CCtx_s ZSTD_CCtx; +ZSTDLIB_API ZSTD_CCtx* ZSTD_createCCtx(void); +ZSTDLIB_API size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx); /* compatible with NULL pointer */ + +/*! ZSTD_compressCCtx() : + * Same as ZSTD_compress(), using an explicit ZSTD_CCtx. + * Important : in order to mirror `ZSTD_compress()` behavior, + * this function compresses at the requested compression level, + * __ignoring any other advanced parameter__ . + * If any advanced parameter was set using the advanced API, + * they will all be reset. Only @compressionLevel remains. + */ +ZSTDLIB_API size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx, + void* dst, size_t dstCapacity, + const void* src, size_t srcSize, + int compressionLevel); + +/*= Decompression context + * When decompressing many times, + * it is recommended to allocate a context only once, + * and reuse it for each successive compression operation. + * This will make workload friendlier for system's memory. + * Use one context per thread for parallel execution. */ +typedef struct ZSTD_DCtx_s ZSTD_DCtx; +ZSTDLIB_API ZSTD_DCtx* ZSTD_createDCtx(void); +ZSTDLIB_API size_t ZSTD_freeDCtx(ZSTD_DCtx* dctx); /* accept NULL pointer */ + +/*! ZSTD_decompressDCtx() : + * Same as ZSTD_decompress(), + * requires an allocated ZSTD_DCtx. + * Compatible with sticky parameters (see below). + */ +ZSTDLIB_API size_t ZSTD_decompressDCtx(ZSTD_DCtx* dctx, + void* dst, size_t dstCapacity, + const void* src, size_t srcSize); + + +/********************************************* +* Advanced compression API (Requires v1.4.0+) +**********************************************/ + +/* API design : + * Parameters are pushed one by one into an existing context, + * using ZSTD_CCtx_set*() functions. + * Pushed parameters are sticky : they are valid for next compressed frame, and any subsequent frame. + * "sticky" parameters are applicable to `ZSTD_compress2()` and `ZSTD_compressStream*()` ! + * __They do not apply to one-shot variants such as ZSTD_compressCCtx()__ . + * + * It's possible to reset all parameters to "default" using ZSTD_CCtx_reset(). + * + * This API supersedes all other "advanced" API entry points in the experimental section. + * In the future, we expect to remove API entry points from experimental which are redundant with this API. + */ + + +/* Compression strategies, listed from fastest to strongest */ +typedef enum { ZSTD_fast=1, + ZSTD_dfast=2, + ZSTD_greedy=3, + ZSTD_lazy=4, + ZSTD_lazy2=5, + ZSTD_btlazy2=6, + ZSTD_btopt=7, + ZSTD_btultra=8, + ZSTD_btultra2=9 + /* note : new strategies _might_ be added in the future. + Only the order (from fast to strong) is guaranteed */ +} ZSTD_strategy; + +typedef enum { + + /* compression parameters + * Note: When compressing with a ZSTD_CDict these parameters are superseded + * by the parameters used to construct the ZSTD_CDict. + * See ZSTD_CCtx_refCDict() for more info (superseded-by-cdict). */ + ZSTD_c_compressionLevel=100, /* Set compression parameters according to pre-defined cLevel table. + * Note that exact compression parameters are dynamically determined, + * depending on both compression level and srcSize (when known). + * Default level is ZSTD_CLEVEL_DEFAULT==3. + * Special: value 0 means default, which is controlled by ZSTD_CLEVEL_DEFAULT. + * Note 1 : it's possible to pass a negative compression level. + * Note 2 : setting a level does not automatically set all other compression parameters + * to default. Setting this will however eventually dynamically impact the compression + * parameters which have not been manually set. The manually set + * ones will 'stick'. */ + /* Advanced compression parameters : + * It's possible to pin down compression parameters to some specific values. + * In which case, these values are no longer dynamically selected by the compressor */ + ZSTD_c_windowLog=101, /* Maximum allowed back-reference distance, expressed as power of 2. + * This will set a memory budget for streaming decompression, + * with larger values requiring more memory + * and typically compressing more. + * Must be clamped between ZSTD_WINDOWLOG_MIN and ZSTD_WINDOWLOG_MAX. + * Special: value 0 means "use default windowLog". + * Note: Using a windowLog greater than ZSTD_WINDOWLOG_LIMIT_DEFAULT + * requires explicitly allowing such size at streaming decompression stage. */ + ZSTD_c_hashLog=102, /* Size of the initial probe table, as a power of 2. + * Resulting memory usage is (1 << (hashLog+2)). + * Must be clamped between ZSTD_HASHLOG_MIN and ZSTD_HASHLOG_MAX. + * Larger tables improve compression ratio of strategies <= dFast, + * and improve speed of strategies > dFast. + * Special: value 0 means "use default hashLog". */ + ZSTD_c_chainLog=103, /* Size of the multi-probe search table, as a power of 2. + * Resulting memory usage is (1 << (chainLog+2)). + * Must be clamped between ZSTD_CHAINLOG_MIN and ZSTD_CHAINLOG_MAX. + * Larger tables result in better and slower compression. + * This parameter is useless for "fast" strategy. + * It's still useful when using "dfast" strategy, + * in which case it defines a secondary probe table. + * Special: value 0 means "use default chainLog". */ + ZSTD_c_searchLog=104, /* Number of search attempts, as a power of 2. + * More attempts result in better and slower compression. + * This parameter is useless for "fast" and "dFast" strategies. + * Special: value 0 means "use default searchLog". */ + ZSTD_c_minMatch=105, /* Minimum size of searched matches. + * Note that Zstandard can still find matches of smaller size, + * it just tweaks its search algorithm to look for this size and larger. + * Larger values increase compression and decompression speed, but decrease ratio. + * Must be clamped between ZSTD_MINMATCH_MIN and ZSTD_MINMATCH_MAX. + * Note that currently, for all strategies < btopt, effective minimum is 4. + * , for all strategies > fast, effective maximum is 6. + * Special: value 0 means "use default minMatchLength". */ + ZSTD_c_targetLength=106, /* Impact of this field depends on strategy. + * For strategies btopt, btultra & btultra2: + * Length of Match considered "good enough" to stop search. + * Larger values make compression stronger, and slower. + * For strategy fast: + * Distance between match sampling. + * Larger values make compression faster, and weaker. + * Special: value 0 means "use default targetLength". */ + ZSTD_c_strategy=107, /* See ZSTD_strategy enum definition. + * The higher the value of selected strategy, the more complex it is, + * resulting in stronger and slower compression. + * Special: value 0 means "use default strategy". */ + + ZSTD_c_targetCBlockSize=130, /* v1.5.6+ + * Attempts to fit compressed block size into approximately targetCBlockSize. + * Bound by ZSTD_TARGETCBLOCKSIZE_MIN and ZSTD_TARGETCBLOCKSIZE_MAX. + * Note that it's not a guarantee, just a convergence target (default:0). + * No target when targetCBlockSize == 0. + * This is helpful in low bandwidth streaming environments to improve end-to-end latency, + * when a client can make use of partial documents (a prominent example being Chrome). + * Note: this parameter is stable since v1.5.6. + * It was present as an experimental parameter in earlier versions, + * but it's not recommended using it with earlier library versions + * due to massive performance regressions. + */ + /* LDM mode parameters */ + ZSTD_c_enableLongDistanceMatching=160, /* Enable long distance matching. + * This parameter is designed to improve compression ratio + * for large inputs, by finding large matches at long distance. + * It increases memory usage and window size. + * Note: enabling this parameter increases default ZSTD_c_windowLog to 128 MB + * except when expressly set to a different value. + * Note: will be enabled by default if ZSTD_c_windowLog >= 128 MB and + * compression strategy >= ZSTD_btopt (== compression level 16+) */ + ZSTD_c_ldmHashLog=161, /* Size of the table for long distance matching, as a power of 2. + * Larger values increase memory usage and compression ratio, + * but decrease compression speed. + * Must be clamped between ZSTD_HASHLOG_MIN and ZSTD_HASHLOG_MAX + * default: windowlog - 7. + * Special: value 0 means "automatically determine hashlog". */ + ZSTD_c_ldmMinMatch=162, /* Minimum match size for long distance matcher. + * Larger/too small values usually decrease compression ratio. + * Must be clamped between ZSTD_LDM_MINMATCH_MIN and ZSTD_LDM_MINMATCH_MAX. + * Special: value 0 means "use default value" (default: 64). */ + ZSTD_c_ldmBucketSizeLog=163, /* Log size of each bucket in the LDM hash table for collision resolution. + * Larger values improve collision resolution but decrease compression speed. + * The maximum value is ZSTD_LDM_BUCKETSIZELOG_MAX. + * Special: value 0 means "use default value" (default: 3). */ + ZSTD_c_ldmHashRateLog=164, /* Frequency of inserting/looking up entries into the LDM hash table. + * Must be clamped between 0 and (ZSTD_WINDOWLOG_MAX - ZSTD_HASHLOG_MIN). + * Default is MAX(0, (windowLog - ldmHashLog)), optimizing hash table usage. + * Larger values improve compression speed. + * Deviating far from default value will likely result in a compression ratio decrease. + * Special: value 0 means "automatically determine hashRateLog". */ + + /* frame parameters */ + ZSTD_c_contentSizeFlag=200, /* Content size will be written into frame header _whenever known_ (default:1) + * Content size must be known at the beginning of compression. + * This is automatically the case when using ZSTD_compress2(), + * For streaming scenarios, content size must be provided with ZSTD_CCtx_setPledgedSrcSize() */ + ZSTD_c_checksumFlag=201, /* A 32-bits checksum of content is written at end of frame (default:0) */ + ZSTD_c_dictIDFlag=202, /* When applicable, dictionary's ID is written into frame header (default:1) */ + + /* multi-threading parameters */ + /* These parameters are only active if multi-threading is enabled (compiled with build macro ZSTD_MULTITHREAD). + * Otherwise, trying to set any other value than default (0) will be a no-op and return an error. + * In a situation where it's unknown if the linked library supports multi-threading or not, + * setting ZSTD_c_nbWorkers to any value >= 1 and consulting the return value provides a quick way to check this property. + */ + ZSTD_c_nbWorkers=400, /* Select how many threads will be spawned to compress in parallel. + * When nbWorkers >= 1, triggers asynchronous mode when invoking ZSTD_compressStream*() : + * ZSTD_compressStream*() consumes input and flush output if possible, but immediately gives back control to caller, + * while compression is performed in parallel, within worker thread(s). + * (note : a strong exception to this rule is when first invocation of ZSTD_compressStream2() sets ZSTD_e_end : + * in which case, ZSTD_compressStream2() delegates to ZSTD_compress2(), which is always a blocking call). + * More workers improve speed, but also increase memory usage. + * Default value is `0`, aka "single-threaded mode" : no worker is spawned, + * compression is performed inside Caller's thread, and all invocations are blocking */ + ZSTD_c_jobSize=401, /* Size of a compression job. This value is enforced only when nbWorkers >= 1. + * Each compression job is completed in parallel, so this value can indirectly impact the nb of active threads. + * 0 means default, which is dynamically determined based on compression parameters. + * Job size must be a minimum of overlap size, or ZSTDMT_JOBSIZE_MIN (= 512 KB), whichever is largest. + * The minimum size is automatically and transparently enforced. */ + ZSTD_c_overlapLog=402, /* Control the overlap size, as a fraction of window size. + * The overlap size is an amount of data reloaded from previous job at the beginning of a new job. + * It helps preserve compression ratio, while each job is compressed in parallel. + * This value is enforced only when nbWorkers >= 1. + * Larger values increase compression ratio, but decrease speed. + * Possible values range from 0 to 9 : + * - 0 means "default" : value will be determined by the library, depending on strategy + * - 1 means "no overlap" + * - 9 means "full overlap", using a full window size. + * Each intermediate rank increases/decreases load size by a factor 2 : + * 9: full window; 8: w/2; 7: w/4; 6: w/8; 5:w/16; 4: w/32; 3:w/64; 2:w/128; 1:no overlap; 0:default + * default value varies between 6 and 9, depending on strategy */ + + /* note : additional experimental parameters are also available + * within the experimental section of the API. + * At the time of this writing, they include : + * ZSTD_c_rsyncable + * ZSTD_c_format + * ZSTD_c_forceMaxWindow + * ZSTD_c_forceAttachDict + * ZSTD_c_literalCompressionMode + * ZSTD_c_srcSizeHint + * ZSTD_c_enableDedicatedDictSearch + * ZSTD_c_stableInBuffer + * ZSTD_c_stableOutBuffer + * ZSTD_c_blockDelimiters + * ZSTD_c_validateSequences + * ZSTD_c_blockSplitterLevel + * ZSTD_c_splitAfterSequences + * ZSTD_c_useRowMatchFinder + * ZSTD_c_prefetchCDictTables + * ZSTD_c_enableSeqProducerFallback + * ZSTD_c_maxBlockSize + * Because they are not stable, it's necessary to define ZSTD_STATIC_LINKING_ONLY to access them. + * note : never ever use experimentalParam? names directly; + * also, the enums values themselves are unstable and can still change. + */ + ZSTD_c_experimentalParam1=500, + ZSTD_c_experimentalParam2=10, + ZSTD_c_experimentalParam3=1000, + ZSTD_c_experimentalParam4=1001, + ZSTD_c_experimentalParam5=1002, + /* was ZSTD_c_experimentalParam6=1003; is now ZSTD_c_targetCBlockSize */ + ZSTD_c_experimentalParam7=1004, + ZSTD_c_experimentalParam8=1005, + ZSTD_c_experimentalParam9=1006, + ZSTD_c_experimentalParam10=1007, + ZSTD_c_experimentalParam11=1008, + ZSTD_c_experimentalParam12=1009, + ZSTD_c_experimentalParam13=1010, + ZSTD_c_experimentalParam14=1011, + ZSTD_c_experimentalParam15=1012, + ZSTD_c_experimentalParam16=1013, + ZSTD_c_experimentalParam17=1014, + ZSTD_c_experimentalParam18=1015, + ZSTD_c_experimentalParam19=1016, + ZSTD_c_experimentalParam20=1017 +} ZSTD_cParameter; + +typedef struct { + size_t error; + int lowerBound; + int upperBound; +} ZSTD_bounds; + +/*! ZSTD_cParam_getBounds() : + * All parameters must belong to an interval with lower and upper bounds, + * otherwise they will either trigger an error or be automatically clamped. + * @return : a structure, ZSTD_bounds, which contains + * - an error status field, which must be tested using ZSTD_isError() + * - lower and upper bounds, both inclusive + */ +ZSTDLIB_API ZSTD_bounds ZSTD_cParam_getBounds(ZSTD_cParameter cParam); + +/*! ZSTD_CCtx_setParameter() : + * Set one compression parameter, selected by enum ZSTD_cParameter. + * All parameters have valid bounds. Bounds can be queried using ZSTD_cParam_getBounds(). + * Providing a value beyond bound will either clamp it, or trigger an error (depending on parameter). + * Setting a parameter is generally only possible during frame initialization (before starting compression). + * Exception : when using multi-threading mode (nbWorkers >= 1), + * the following parameters can be updated _during_ compression (within same frame): + * => compressionLevel, hashLog, chainLog, searchLog, minMatch, targetLength and strategy. + * new parameters will be active for next job only (after a flush()). + * @return : an error code (which can be tested using ZSTD_isError()). + */ +ZSTDLIB_API size_t ZSTD_CCtx_setParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, int value); + +/*! ZSTD_CCtx_setPledgedSrcSize() : + * Total input data size to be compressed as a single frame. + * Value will be written in frame header, unless if explicitly forbidden using ZSTD_c_contentSizeFlag. + * This value will also be controlled at end of frame, and trigger an error if not respected. + * @result : 0, or an error code (which can be tested with ZSTD_isError()). + * Note 1 : pledgedSrcSize==0 actually means zero, aka an empty frame. + * In order to mean "unknown content size", pass constant ZSTD_CONTENTSIZE_UNKNOWN. + * ZSTD_CONTENTSIZE_UNKNOWN is default value for any new frame. + * Note 2 : pledgedSrcSize is only valid once, for the next frame. + * It's discarded at the end of the frame, and replaced by ZSTD_CONTENTSIZE_UNKNOWN. + * Note 3 : Whenever all input data is provided and consumed in a single round, + * for example with ZSTD_compress2(), + * or invoking immediately ZSTD_compressStream2(,,,ZSTD_e_end), + * this value is automatically overridden by srcSize instead. + */ +ZSTDLIB_API size_t ZSTD_CCtx_setPledgedSrcSize(ZSTD_CCtx* cctx, unsigned long long pledgedSrcSize); + +typedef enum { + ZSTD_reset_session_only = 1, + ZSTD_reset_parameters = 2, + ZSTD_reset_session_and_parameters = 3 +} ZSTD_ResetDirective; + +/*! ZSTD_CCtx_reset() : + * There are 2 different things that can be reset, independently or jointly : + * - The session : will stop compressing current frame, and make CCtx ready to start a new one. + * Useful after an error, or to interrupt any ongoing compression. + * Any internal data not yet flushed is cancelled. + * Compression parameters and dictionary remain unchanged. + * They will be used to compress next frame. + * Resetting session never fails. + * - The parameters : changes all parameters back to "default". + * This also removes any reference to any dictionary or external sequence producer. + * Parameters can only be changed between 2 sessions (i.e. no compression is currently ongoing) + * otherwise the reset fails, and function returns an error value (which can be tested using ZSTD_isError()) + * - Both : similar to resetting the session, followed by resetting parameters. + */ +ZSTDLIB_API size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset); + +/*! ZSTD_compress2() : + * Behave the same as ZSTD_compressCCtx(), but compression parameters are set using the advanced API. + * (note that this entry point doesn't even expose a compression level parameter). + * ZSTD_compress2() always starts a new frame. + * Should cctx hold data from a previously unfinished frame, everything about it is forgotten. + * - Compression parameters are pushed into CCtx before starting compression, using ZSTD_CCtx_set*() + * - The function is always blocking, returns when compression is completed. + * NOTE: Providing `dstCapacity >= ZSTD_compressBound(srcSize)` guarantees that zstd will have + * enough space to successfully compress the data, though it is possible it fails for other reasons. + * @return : compressed size written into `dst` (<= `dstCapacity), + * or an error code if it fails (which can be tested using ZSTD_isError()). + */ +ZSTDLIB_API size_t ZSTD_compress2( ZSTD_CCtx* cctx, + void* dst, size_t dstCapacity, + const void* src, size_t srcSize); + + +/*********************************************** +* Advanced decompression API (Requires v1.4.0+) +************************************************/ + +/* The advanced API pushes parameters one by one into an existing DCtx context. + * Parameters are sticky, and remain valid for all following frames + * using the same DCtx context. + * It's possible to reset parameters to default values using ZSTD_DCtx_reset(). + * Note : This API is compatible with existing ZSTD_decompressDCtx() and ZSTD_decompressStream(). + * Therefore, no new decompression function is necessary. + */ + +typedef enum { + + ZSTD_d_windowLogMax=100, /* Select a size limit (in power of 2) beyond which + * the streaming API will refuse to allocate memory buffer + * in order to protect the host from unreasonable memory requirements. + * This parameter is only useful in streaming mode, since no internal buffer is allocated in single-pass mode. + * By default, a decompression context accepts window sizes <= (1 << ZSTD_WINDOWLOG_LIMIT_DEFAULT). + * Special: value 0 means "use default maximum windowLog". */ + + /* note : additional experimental parameters are also available + * within the experimental section of the API. + * At the time of this writing, they include : + * ZSTD_d_format + * ZSTD_d_stableOutBuffer + * ZSTD_d_forceIgnoreChecksum + * ZSTD_d_refMultipleDDicts + * ZSTD_d_disableHuffmanAssembly + * ZSTD_d_maxBlockSize + * Because they are not stable, it's necessary to define ZSTD_STATIC_LINKING_ONLY to access them. + * note : never ever use experimentalParam? names directly + */ + ZSTD_d_experimentalParam1=1000, + ZSTD_d_experimentalParam2=1001, + ZSTD_d_experimentalParam3=1002, + ZSTD_d_experimentalParam4=1003, + ZSTD_d_experimentalParam5=1004, + ZSTD_d_experimentalParam6=1005 + +} ZSTD_dParameter; + +/*! ZSTD_dParam_getBounds() : + * All parameters must belong to an interval with lower and upper bounds, + * otherwise they will either trigger an error or be automatically clamped. + * @return : a structure, ZSTD_bounds, which contains + * - an error status field, which must be tested using ZSTD_isError() + * - both lower and upper bounds, inclusive + */ +ZSTDLIB_API ZSTD_bounds ZSTD_dParam_getBounds(ZSTD_dParameter dParam); + +/*! ZSTD_DCtx_setParameter() : + * Set one compression parameter, selected by enum ZSTD_dParameter. + * All parameters have valid bounds. Bounds can be queried using ZSTD_dParam_getBounds(). + * Providing a value beyond bound will either clamp it, or trigger an error (depending on parameter). + * Setting a parameter is only possible during frame initialization (before starting decompression). + * @return : 0, or an error code (which can be tested using ZSTD_isError()). + */ +ZSTDLIB_API size_t ZSTD_DCtx_setParameter(ZSTD_DCtx* dctx, ZSTD_dParameter param, int value); + +/*! ZSTD_DCtx_reset() : + * Return a DCtx to clean state. + * Session and parameters can be reset jointly or separately. + * Parameters can only be reset when no active frame is being decompressed. + * @return : 0, or an error code, which can be tested with ZSTD_isError() + */ +ZSTDLIB_API size_t ZSTD_DCtx_reset(ZSTD_DCtx* dctx, ZSTD_ResetDirective reset); + + +/**************************** +* Streaming +****************************/ + +typedef struct ZSTD_inBuffer_s { + const void* src; /**< start of input buffer */ + size_t size; /**< size of input buffer */ + size_t pos; /**< position where reading stopped. Will be updated. Necessarily 0 <= pos <= size */ +} ZSTD_inBuffer; + +typedef struct ZSTD_outBuffer_s { + void* dst; /**< start of output buffer */ + size_t size; /**< size of output buffer */ + size_t pos; /**< position where writing stopped. Will be updated. Necessarily 0 <= pos <= size */ +} ZSTD_outBuffer; + + + +/*-*********************************************************************** +* Streaming compression - HowTo +* +* A ZSTD_CStream object is required to track streaming operation. +* Use ZSTD_createCStream() and ZSTD_freeCStream() to create/release resources. +* ZSTD_CStream objects can be reused multiple times on consecutive compression operations. +* It is recommended to reuse ZSTD_CStream since it will play nicer with system's memory, by re-using already allocated memory. +* +* For parallel execution, use one separate ZSTD_CStream per thread. +* +* note : since v1.3.0, ZSTD_CStream and ZSTD_CCtx are the same thing. +* +* Parameters are sticky : when starting a new compression on the same context, +* it will reuse the same sticky parameters as previous compression session. +* When in doubt, it's recommended to fully initialize the context before usage. +* Use ZSTD_CCtx_reset() to reset the context and ZSTD_CCtx_setParameter(), +* ZSTD_CCtx_setPledgedSrcSize(), or ZSTD_CCtx_loadDictionary() and friends to +* set more specific parameters, the pledged source size, or load a dictionary. +* +* Use ZSTD_compressStream2() with ZSTD_e_continue as many times as necessary to +* consume input stream. The function will automatically update both `pos` +* fields within `input` and `output`. +* Note that the function may not consume the entire input, for example, because +* the output buffer is already full, in which case `input.pos < input.size`. +* The caller must check if input has been entirely consumed. +* If not, the caller must make some room to receive more compressed data, +* and then present again remaining input data. +* note: ZSTD_e_continue is guaranteed to make some forward progress when called, +* but doesn't guarantee maximal forward progress. This is especially relevant +* when compressing with multiple threads. The call won't block if it can +* consume some input, but if it can't it will wait for some, but not all, +* output to be flushed. +* @return : provides a minimum amount of data remaining to be flushed from internal buffers +* or an error code, which can be tested using ZSTD_isError(). +* +* At any moment, it's possible to flush whatever data might remain stuck within internal buffer, +* using ZSTD_compressStream2() with ZSTD_e_flush. `output->pos` will be updated. +* Note that, if `output->size` is too small, a single invocation with ZSTD_e_flush might not be enough (return code > 0). +* In which case, make some room to receive more compressed data, and call again ZSTD_compressStream2() with ZSTD_e_flush. +* You must continue calling ZSTD_compressStream2() with ZSTD_e_flush until it returns 0, at which point you can change the +* operation. +* note: ZSTD_e_flush will flush as much output as possible, meaning when compressing with multiple threads, it will +* block until the flush is complete or the output buffer is full. +* @return : 0 if internal buffers are entirely flushed, +* >0 if some data still present within internal buffer (the value is minimal estimation of remaining size), +* or an error code, which can be tested using ZSTD_isError(). +* +* Calling ZSTD_compressStream2() with ZSTD_e_end instructs to finish a frame. +* It will perform a flush and write frame epilogue. +* The epilogue is required for decoders to consider a frame completed. +* flush operation is the same, and follows same rules as calling ZSTD_compressStream2() with ZSTD_e_flush. +* You must continue calling ZSTD_compressStream2() with ZSTD_e_end until it returns 0, at which point you are free to +* start a new frame. +* note: ZSTD_e_end will flush as much output as possible, meaning when compressing with multiple threads, it will +* block until the flush is complete or the output buffer is full. +* @return : 0 if frame fully completed and fully flushed, +* >0 if some data still present within internal buffer (the value is minimal estimation of remaining size), +* or an error code, which can be tested using ZSTD_isError(). +* +* *******************************************************************/ + +typedef ZSTD_CCtx ZSTD_CStream; /**< CCtx and CStream are now effectively same object (>= v1.3.0) */ + /* Continue to distinguish them for compatibility with older versions <= v1.2.0 */ +/*===== ZSTD_CStream management functions =====*/ +ZSTDLIB_API ZSTD_CStream* ZSTD_createCStream(void); +ZSTDLIB_API size_t ZSTD_freeCStream(ZSTD_CStream* zcs); /* accept NULL pointer */ + +/*===== Streaming compression functions =====*/ +typedef enum { + ZSTD_e_continue=0, /* collect more data, encoder decides when to output compressed result, for optimal compression ratio */ + ZSTD_e_flush=1, /* flush any data provided so far, + * it creates (at least) one new block, that can be decoded immediately on reception; + * frame will continue: any future data can still reference previously compressed data, improving compression. + * note : multithreaded compression will block to flush as much output as possible. */ + ZSTD_e_end=2 /* flush any remaining data _and_ close current frame. + * note that frame is only closed after compressed data is fully flushed (return value == 0). + * After that point, any additional data starts a new frame. + * note : each frame is independent (does not reference any content from previous frame). + : note : multithreaded compression will block to flush as much output as possible. */ +} ZSTD_EndDirective; + +/*! ZSTD_compressStream2() : Requires v1.4.0+ + * Behaves about the same as ZSTD_compressStream, with additional control on end directive. + * - Compression parameters are pushed into CCtx before starting compression, using ZSTD_CCtx_set*() + * - Compression parameters cannot be changed once compression is started (save a list of exceptions in multi-threading mode) + * - output->pos must be <= dstCapacity, input->pos must be <= srcSize + * - output->pos and input->pos will be updated. They are guaranteed to remain below their respective limit. + * - endOp must be a valid directive + * - When nbWorkers==0 (default), function is blocking : it completes its job before returning to caller. + * - When nbWorkers>=1, function is non-blocking : it copies a portion of input, distributes jobs to internal worker threads, flush to output whatever is available, + * and then immediately returns, just indicating that there is some data remaining to be flushed. + * The function nonetheless guarantees forward progress : it will return only after it reads or write at least 1+ byte. + * - Exception : if the first call requests a ZSTD_e_end directive and provides enough dstCapacity, the function delegates to ZSTD_compress2() which is always blocking. + * - @return provides a minimum amount of data remaining to be flushed from internal buffers + * or an error code, which can be tested using ZSTD_isError(). + * if @return != 0, flush is not fully completed, there is still some data left within internal buffers. + * This is useful for ZSTD_e_flush, since in this case more flushes are necessary to empty all buffers. + * For ZSTD_e_end, @return == 0 when internal buffers are fully flushed and frame is completed. + * - after a ZSTD_e_end directive, if internal buffer is not fully flushed (@return != 0), + * only ZSTD_e_end or ZSTD_e_flush operations are allowed. + * Before starting a new compression job, or changing compression parameters, + * it is required to fully flush internal buffers. + * - note: if an operation ends with an error, it may leave @cctx in an undefined state. + * Therefore, it's UB to invoke ZSTD_compressStream2() of ZSTD_compressStream() on such a state. + * In order to be re-employed after an error, a state must be reset, + * which can be done explicitly (ZSTD_CCtx_reset()), + * or is sometimes implied by methods starting a new compression job (ZSTD_initCStream(), ZSTD_compressCCtx()) + */ +ZSTDLIB_API size_t ZSTD_compressStream2( ZSTD_CCtx* cctx, + ZSTD_outBuffer* output, + ZSTD_inBuffer* input, + ZSTD_EndDirective endOp); + + +/* These buffer sizes are softly recommended. + * They are not required : ZSTD_compressStream*() happily accepts any buffer size, for both input and output. + * Respecting the recommended size just makes it a bit easier for ZSTD_compressStream*(), + * reducing the amount of memory shuffling and buffering, resulting in minor performance savings. + * + * However, note that these recommendations are from the perspective of a C caller program. + * If the streaming interface is invoked from some other language, + * especially managed ones such as Java or Go, through a foreign function interface such as jni or cgo, + * a major performance rule is to reduce crossing such interface to an absolute minimum. + * It's not rare that performance ends being spent more into the interface, rather than compression itself. + * In which cases, prefer using large buffers, as large as practical, + * for both input and output, to reduce the nb of roundtrips. + */ +ZSTDLIB_API size_t ZSTD_CStreamInSize(void); /**< recommended size for input buffer */ +ZSTDLIB_API size_t ZSTD_CStreamOutSize(void); /**< recommended size for output buffer. Guarantee to successfully flush at least one complete compressed block. */ + + +/* ***************************************************************************** + * This following is a legacy streaming API, available since v1.0+ . + * It can be replaced by ZSTD_CCtx_reset() and ZSTD_compressStream2(). + * It is redundant, but remains fully supported. + ******************************************************************************/ + +/*! + * Equivalent to: + * + * ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only); + * ZSTD_CCtx_refCDict(zcs, NULL); // clear the dictionary (if any) + * ZSTD_CCtx_setParameter(zcs, ZSTD_c_compressionLevel, compressionLevel); + * + * Note that ZSTD_initCStream() clears any previously set dictionary. Use the new API + * to compress with a dictionary. + */ +ZSTDLIB_API size_t ZSTD_initCStream(ZSTD_CStream* zcs, int compressionLevel); +/*! + * Alternative for ZSTD_compressStream2(zcs, output, input, ZSTD_e_continue). + * NOTE: The return value is different. ZSTD_compressStream() returns a hint for + * the next read size (if non-zero and not an error). ZSTD_compressStream2() + * returns the minimum nb of bytes left to flush (if non-zero and not an error). + */ +ZSTDLIB_API size_t ZSTD_compressStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output, ZSTD_inBuffer* input); +/*! Equivalent to ZSTD_compressStream2(zcs, output, &emptyInput, ZSTD_e_flush). */ +ZSTDLIB_API size_t ZSTD_flushStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output); +/*! Equivalent to ZSTD_compressStream2(zcs, output, &emptyInput, ZSTD_e_end). */ +ZSTDLIB_API size_t ZSTD_endStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output); + + +/*-*************************************************************************** +* Streaming decompression - HowTo +* +* A ZSTD_DStream object is required to track streaming operations. +* Use ZSTD_createDStream() and ZSTD_freeDStream() to create/release resources. +* ZSTD_DStream objects can be re-employed multiple times. +* +* Use ZSTD_initDStream() to start a new decompression operation. +* @return : recommended first input size +* Alternatively, use advanced API to set specific properties. +* +* Use ZSTD_decompressStream() repetitively to consume your input. +* The function will update both `pos` fields. +* If `input.pos < input.size`, some input has not been consumed. +* It's up to the caller to present again remaining data. +* +* The function tries to flush all data decoded immediately, respecting output buffer size. +* If `output.pos < output.size`, decoder has flushed everything it could. +* +* However, when `output.pos == output.size`, it's more difficult to know. +* If @return > 0, the frame is not complete, meaning +* either there is still some data left to flush within internal buffers, +* or there is more input to read to complete the frame (or both). +* In which case, call ZSTD_decompressStream() again to flush whatever remains in the buffer. +* Note : with no additional input provided, amount of data flushed is necessarily <= ZSTD_BLOCKSIZE_MAX. +* @return : 0 when a frame is completely decoded and fully flushed, +* or an error code, which can be tested using ZSTD_isError(), +* or any other value > 0, which means there is still some decoding or flushing to do to complete current frame : +* the return value is a suggested next input size (just a hint for better latency) +* that will never request more than the remaining content of the compressed frame. +* *******************************************************************************/ + +typedef ZSTD_DCtx ZSTD_DStream; /**< DCtx and DStream are now effectively same object (>= v1.3.0) */ + /* For compatibility with versions <= v1.2.0, prefer differentiating them. */ +/*===== ZSTD_DStream management functions =====*/ +ZSTDLIB_API ZSTD_DStream* ZSTD_createDStream(void); +ZSTDLIB_API size_t ZSTD_freeDStream(ZSTD_DStream* zds); /* accept NULL pointer */ + +/*===== Streaming decompression functions =====*/ + +/*! ZSTD_initDStream() : + * Initialize/reset DStream state for new decompression operation. + * Call before new decompression operation using same DStream. + * + * Note : This function is redundant with the advanced API and equivalent to: + * ZSTD_DCtx_reset(zds, ZSTD_reset_session_only); + * ZSTD_DCtx_refDDict(zds, NULL); + */ +ZSTDLIB_API size_t ZSTD_initDStream(ZSTD_DStream* zds); + +/*! ZSTD_decompressStream() : + * Streaming decompression function. + * Call repetitively to consume full input updating it as necessary. + * Function will update both input and output `pos` fields exposing current state via these fields: + * - `input.pos < input.size`, some input remaining and caller should provide remaining input + * on the next call. + * - `output.pos < output.size`, decoder flushed internal output buffer. + * - `output.pos == output.size`, unflushed data potentially present in the internal buffers, + * check ZSTD_decompressStream() @return value, + * if > 0, invoke it again to flush remaining data to output. + * Note : with no additional input, amount of data flushed <= ZSTD_BLOCKSIZE_MAX. + * + * @return : 0 when a frame is completely decoded and fully flushed, + * or an error code, which can be tested using ZSTD_isError(), + * or any other value > 0, which means there is some decoding or flushing to do to complete current frame. + * + * Note: when an operation returns with an error code, the @zds state may be left in undefined state. + * It's UB to invoke `ZSTD_decompressStream()` on such a state. + * In order to re-use such a state, it must be first reset, + * which can be done explicitly (`ZSTD_DCtx_reset()`), + * or is implied for operations starting some new decompression job (`ZSTD_initDStream`, `ZSTD_decompressDCtx()`, `ZSTD_decompress_usingDict()`) + */ +ZSTDLIB_API size_t ZSTD_decompressStream(ZSTD_DStream* zds, ZSTD_outBuffer* output, ZSTD_inBuffer* input); + +ZSTDLIB_API size_t ZSTD_DStreamInSize(void); /*!< recommended size for input buffer */ +ZSTDLIB_API size_t ZSTD_DStreamOutSize(void); /*!< recommended size for output buffer. Guarantee to successfully flush at least one complete block in all circumstances. */ + + +/************************** +* Simple dictionary API +***************************/ +/*! ZSTD_compress_usingDict() : + * Compression at an explicit compression level using a Dictionary. + * A dictionary can be any arbitrary data segment (also called a prefix), + * or a buffer with specified information (see zdict.h). + * Note : This function loads the dictionary, resulting in significant startup delay. + * It's intended for a dictionary used only once. + * Note 2 : When `dict == NULL || dictSize < 8` no dictionary is used. */ +ZSTDLIB_API size_t ZSTD_compress_usingDict(ZSTD_CCtx* ctx, + void* dst, size_t dstCapacity, + const void* src, size_t srcSize, + const void* dict,size_t dictSize, + int compressionLevel); + +/*! ZSTD_decompress_usingDict() : + * Decompression using a known Dictionary. + * Dictionary must be identical to the one used during compression. + * Note : This function loads the dictionary, resulting in significant startup delay. + * It's intended for a dictionary used only once. + * Note : When `dict == NULL || dictSize < 8` no dictionary is used. */ +ZSTDLIB_API size_t ZSTD_decompress_usingDict(ZSTD_DCtx* dctx, + void* dst, size_t dstCapacity, + const void* src, size_t srcSize, + const void* dict,size_t dictSize); + + +/*********************************** + * Bulk processing dictionary API + **********************************/ +typedef struct ZSTD_CDict_s ZSTD_CDict; + +/*! ZSTD_createCDict() : + * When compressing multiple messages or blocks using the same dictionary, + * it's recommended to digest the dictionary only once, since it's a costly operation. + * ZSTD_createCDict() will create a state from digesting a dictionary. + * The resulting state can be used for future compression operations with very limited startup cost. + * ZSTD_CDict can be created once and shared by multiple threads concurrently, since its usage is read-only. + * @dictBuffer can be released after ZSTD_CDict creation, because its content is copied within CDict. + * Note 1 : Consider experimental function `ZSTD_createCDict_byReference()` if you prefer to not duplicate @dictBuffer content. + * Note 2 : A ZSTD_CDict can be created from an empty @dictBuffer, + * in which case the only thing that it transports is the @compressionLevel. + * This can be useful in a pipeline featuring ZSTD_compress_usingCDict() exclusively, + * expecting a ZSTD_CDict parameter with any data, including those without a known dictionary. */ +ZSTDLIB_API ZSTD_CDict* ZSTD_createCDict(const void* dictBuffer, size_t dictSize, + int compressionLevel); + +/*! ZSTD_freeCDict() : + * Function frees memory allocated by ZSTD_createCDict(). + * If a NULL pointer is passed, no operation is performed. */ +ZSTDLIB_API size_t ZSTD_freeCDict(ZSTD_CDict* CDict); + +/*! ZSTD_compress_usingCDict() : + * Compression using a digested Dictionary. + * Recommended when same dictionary is used multiple times. + * Note : compression level is _decided at dictionary creation time_, + * and frame parameters are hardcoded (dictID=yes, contentSize=yes, checksum=no) */ +ZSTDLIB_API size_t ZSTD_compress_usingCDict(ZSTD_CCtx* cctx, + void* dst, size_t dstCapacity, + const void* src, size_t srcSize, + const ZSTD_CDict* cdict); + + +typedef struct ZSTD_DDict_s ZSTD_DDict; + +/*! ZSTD_createDDict() : + * Create a digested dictionary, ready to start decompression operation without startup delay. + * dictBuffer can be released after DDict creation, as its content is copied inside DDict. */ +ZSTDLIB_API ZSTD_DDict* ZSTD_createDDict(const void* dictBuffer, size_t dictSize); + +/*! ZSTD_freeDDict() : + * Function frees memory allocated with ZSTD_createDDict() + * If a NULL pointer is passed, no operation is performed. */ +ZSTDLIB_API size_t ZSTD_freeDDict(ZSTD_DDict* ddict); + +/*! ZSTD_decompress_usingDDict() : + * Decompression using a digested Dictionary. + * Recommended when same dictionary is used multiple times. */ +ZSTDLIB_API size_t ZSTD_decompress_usingDDict(ZSTD_DCtx* dctx, + void* dst, size_t dstCapacity, + const void* src, size_t srcSize, + const ZSTD_DDict* ddict); + + +/******************************** + * Dictionary helper functions + *******************************/ + +/*! ZSTD_getDictID_fromDict() : Requires v1.4.0+ + * Provides the dictID stored within dictionary. + * if @return == 0, the dictionary is not conformant with Zstandard specification. + * It can still be loaded, but as a content-only dictionary. */ +ZSTDLIB_API unsigned ZSTD_getDictID_fromDict(const void* dict, size_t dictSize); + +/*! ZSTD_getDictID_fromCDict() : Requires v1.5.0+ + * Provides the dictID of the dictionary loaded into `cdict`. + * If @return == 0, the dictionary is not conformant to Zstandard specification, or empty. + * Non-conformant dictionaries can still be loaded, but as content-only dictionaries. */ +ZSTDLIB_API unsigned ZSTD_getDictID_fromCDict(const ZSTD_CDict* cdict); + +/*! ZSTD_getDictID_fromDDict() : Requires v1.4.0+ + * Provides the dictID of the dictionary loaded into `ddict`. + * If @return == 0, the dictionary is not conformant to Zstandard specification, or empty. + * Non-conformant dictionaries can still be loaded, but as content-only dictionaries. */ +ZSTDLIB_API unsigned ZSTD_getDictID_fromDDict(const ZSTD_DDict* ddict); + +/*! ZSTD_getDictID_fromFrame() : Requires v1.4.0+ + * Provides the dictID required to decompressed the frame stored within `src`. + * If @return == 0, the dictID could not be decoded. + * This could for one of the following reasons : + * - The frame does not require a dictionary to be decoded (most common case). + * - The frame was built with dictID intentionally removed. Whatever dictionary is necessary is a hidden piece of information. + * Note : this use case also happens when using a non-conformant dictionary. + * - `srcSize` is too small, and as a result, the frame header could not be decoded (only possible if `srcSize < ZSTD_FRAMEHEADERSIZE_MAX`). + * - This is not a Zstandard frame. + * When identifying the exact failure cause, it's possible to use ZSTD_getFrameHeader(), which will provide a more precise error code. */ +ZSTDLIB_API unsigned ZSTD_getDictID_fromFrame(const void* src, size_t srcSize); + + +/******************************************************************************* + * Advanced dictionary and prefix API (Requires v1.4.0+) + * + * This API allows dictionaries to be used with ZSTD_compress2(), + * ZSTD_compressStream2(), and ZSTD_decompressDCtx(). + * Dictionaries are sticky, they remain valid when same context is reused, + * they only reset when the context is reset + * with ZSTD_reset_parameters or ZSTD_reset_session_and_parameters. + * In contrast, Prefixes are single-use. + ******************************************************************************/ + + +/*! ZSTD_CCtx_loadDictionary() : Requires v1.4.0+ + * Create an internal CDict from `dict` buffer. + * Decompression will have to use same dictionary. + * @result : 0, or an error code (which can be tested with ZSTD_isError()). + * Special: Loading a NULL (or 0-size) dictionary invalidates previous dictionary, + * meaning "return to no-dictionary mode". + * Note 1 : Dictionary is sticky, it will be used for all future compressed frames, + * until parameters are reset, a new dictionary is loaded, or the dictionary + * is explicitly invalidated by loading a NULL dictionary. + * Note 2 : Loading a dictionary involves building tables. + * It's also a CPU consuming operation, with non-negligible impact on latency. + * Tables are dependent on compression parameters, and for this reason, + * compression parameters can no longer be changed after loading a dictionary. + * Note 3 :`dict` content will be copied internally. + * Use experimental ZSTD_CCtx_loadDictionary_byReference() to reference content instead. + * In such a case, dictionary buffer must outlive its users. + * Note 4 : Use ZSTD_CCtx_loadDictionary_advanced() + * to precisely select how dictionary content must be interpreted. + * Note 5 : This method does not benefit from LDM (long distance mode). + * If you want to employ LDM on some large dictionary content, + * prefer employing ZSTD_CCtx_refPrefix() described below. + */ +ZSTDLIB_API size_t ZSTD_CCtx_loadDictionary(ZSTD_CCtx* cctx, const void* dict, size_t dictSize); + +/*! ZSTD_CCtx_refCDict() : Requires v1.4.0+ + * Reference a prepared dictionary, to be used for all future compressed frames. + * Note that compression parameters are enforced from within CDict, + * and supersede any compression parameter previously set within CCtx. + * The parameters ignored are labelled as "superseded-by-cdict" in the ZSTD_cParameter enum docs. + * The ignored parameters will be used again if the CCtx is returned to no-dictionary mode. + * The dictionary will remain valid for future compressed frames using same CCtx. + * @result : 0, or an error code (which can be tested with ZSTD_isError()). + * Special : Referencing a NULL CDict means "return to no-dictionary mode". + * Note 1 : Currently, only one dictionary can be managed. + * Referencing a new dictionary effectively "discards" any previous one. + * Note 2 : CDict is just referenced, its lifetime must outlive its usage within CCtx. */ +ZSTDLIB_API size_t ZSTD_CCtx_refCDict(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict); + +/*! ZSTD_CCtx_refPrefix() : Requires v1.4.0+ + * Reference a prefix (single-usage dictionary) for next compressed frame. + * A prefix is **only used once**. Tables are discarded at end of frame (ZSTD_e_end). + * Decompression will need same prefix to properly regenerate data. + * Compressing with a prefix is similar in outcome as performing a diff and compressing it, + * but performs much faster, especially during decompression (compression speed is tunable with compression level). + * This method is compatible with LDM (long distance mode). + * @result : 0, or an error code (which can be tested with ZSTD_isError()). + * Special: Adding any prefix (including NULL) invalidates any previous prefix or dictionary + * Note 1 : Prefix buffer is referenced. It **must** outlive compression. + * Its content must remain unmodified during compression. + * Note 2 : If the intention is to diff some large src data blob with some prior version of itself, + * ensure that the window size is large enough to contain the entire source. + * See ZSTD_c_windowLog. + * Note 3 : Referencing a prefix involves building tables, which are dependent on compression parameters. + * It's a CPU consuming operation, with non-negligible impact on latency. + * If there is a need to use the same prefix multiple times, consider loadDictionary instead. + * Note 4 : By default, the prefix is interpreted as raw content (ZSTD_dct_rawContent). + * Use experimental ZSTD_CCtx_refPrefix_advanced() to alter dictionary interpretation. */ +ZSTDLIB_API size_t ZSTD_CCtx_refPrefix(ZSTD_CCtx* cctx, + const void* prefix, size_t prefixSize); + +/*! ZSTD_DCtx_loadDictionary() : Requires v1.4.0+ + * Create an internal DDict from dict buffer, to be used to decompress all future frames. + * The dictionary remains valid for all future frames, until explicitly invalidated, or + * a new dictionary is loaded. + * @result : 0, or an error code (which can be tested with ZSTD_isError()). + * Special : Adding a NULL (or 0-size) dictionary invalidates any previous dictionary, + * meaning "return to no-dictionary mode". + * Note 1 : Loading a dictionary involves building tables, + * which has a non-negligible impact on CPU usage and latency. + * It's recommended to "load once, use many times", to amortize the cost + * Note 2 :`dict` content will be copied internally, so `dict` can be released after loading. + * Use ZSTD_DCtx_loadDictionary_byReference() to reference dictionary content instead. + * Note 3 : Use ZSTD_DCtx_loadDictionary_advanced() to take control of + * how dictionary content is loaded and interpreted. + */ +ZSTDLIB_API size_t ZSTD_DCtx_loadDictionary(ZSTD_DCtx* dctx, const void* dict, size_t dictSize); + +/*! ZSTD_DCtx_refDDict() : Requires v1.4.0+ + * Reference a prepared dictionary, to be used to decompress next frames. + * The dictionary remains active for decompression of future frames using same DCtx. + * + * If called with ZSTD_d_refMultipleDDicts enabled, repeated calls of this function + * will store the DDict references in a table, and the DDict used for decompression + * will be determined at decompression time, as per the dict ID in the frame. + * The memory for the table is allocated on the first call to refDDict, and can be + * freed with ZSTD_freeDCtx(). + * + * If called with ZSTD_d_refMultipleDDicts disabled (the default), only one dictionary + * will be managed, and referencing a dictionary effectively "discards" any previous one. + * + * @result : 0, or an error code (which can be tested with ZSTD_isError()). + * Special: referencing a NULL DDict means "return to no-dictionary mode". + * Note 2 : DDict is just referenced, its lifetime must outlive its usage from DCtx. + */ +ZSTDLIB_API size_t ZSTD_DCtx_refDDict(ZSTD_DCtx* dctx, const ZSTD_DDict* ddict); + +/*! ZSTD_DCtx_refPrefix() : Requires v1.4.0+ + * Reference a prefix (single-usage dictionary) to decompress next frame. + * This is the reverse operation of ZSTD_CCtx_refPrefix(), + * and must use the same prefix as the one used during compression. + * Prefix is **only used once**. Reference is discarded at end of frame. + * End of frame is reached when ZSTD_decompressStream() returns 0. + * @result : 0, or an error code (which can be tested with ZSTD_isError()). + * Note 1 : Adding any prefix (including NULL) invalidates any previously set prefix or dictionary + * Note 2 : Prefix buffer is referenced. It **must** outlive decompression. + * Prefix buffer must remain unmodified up to the end of frame, + * reached when ZSTD_decompressStream() returns 0. + * Note 3 : By default, the prefix is treated as raw content (ZSTD_dct_rawContent). + * Use ZSTD_CCtx_refPrefix_advanced() to alter dictMode (Experimental section) + * Note 4 : Referencing a raw content prefix has almost no cpu nor memory cost. + * A full dictionary is more costly, as it requires building tables. + */ +ZSTDLIB_API size_t ZSTD_DCtx_refPrefix(ZSTD_DCtx* dctx, + const void* prefix, size_t prefixSize); + +/* === Memory management === */ + +/*! ZSTD_sizeof_*() : Requires v1.4.0+ + * These functions give the _current_ memory usage of selected object. + * Note that object memory usage can evolve (increase or decrease) over time. */ +ZSTDLIB_API size_t ZSTD_sizeof_CCtx(const ZSTD_CCtx* cctx); +ZSTDLIB_API size_t ZSTD_sizeof_DCtx(const ZSTD_DCtx* dctx); +ZSTDLIB_API size_t ZSTD_sizeof_CStream(const ZSTD_CStream* zcs); +ZSTDLIB_API size_t ZSTD_sizeof_DStream(const ZSTD_DStream* zds); +ZSTDLIB_API size_t ZSTD_sizeof_CDict(const ZSTD_CDict* cdict); +ZSTDLIB_API size_t ZSTD_sizeof_DDict(const ZSTD_DDict* ddict); + +#if defined (__cplusplus) +} +#endif + +#endif /* ZSTD_H_235446 */ + + +/* ************************************************************************************** + * ADVANCED AND EXPERIMENTAL FUNCTIONS + **************************************************************************************** + * The definitions in the following section are considered experimental. + * They are provided for advanced scenarios. + * They should never be used with a dynamic library, as prototypes may change in the future. + * Use them only in association with static linking. + * ***************************************************************************************/ + +#if defined(ZSTD_STATIC_LINKING_ONLY) && !defined(ZSTD_H_ZSTD_STATIC_LINKING_ONLY) +#define ZSTD_H_ZSTD_STATIC_LINKING_ONLY + +#if defined (__cplusplus) +extern "C" { +#endif + +/* This can be overridden externally to hide static symbols. */ +#ifndef ZSTDLIB_STATIC_API +# if defined(ZSTD_DLL_EXPORT) && (ZSTD_DLL_EXPORT==1) +# define ZSTDLIB_STATIC_API __declspec(dllexport) ZSTDLIB_VISIBLE +# elif defined(ZSTD_DLL_IMPORT) && (ZSTD_DLL_IMPORT==1) +# define ZSTDLIB_STATIC_API __declspec(dllimport) ZSTDLIB_VISIBLE +# else +# define ZSTDLIB_STATIC_API ZSTDLIB_VISIBLE +# endif +#endif + +/**************************************************************************************** + * experimental API (static linking only) + **************************************************************************************** + * The following symbols and constants + * are not planned to join "stable API" status in the near future. + * They can still change in future versions. + * Some of them are planned to remain in the static_only section indefinitely. + * Some of them might be removed in the future (especially when redundant with existing stable functions) + * ***************************************************************************************/ + +#define ZSTD_FRAMEHEADERSIZE_PREFIX(format) ((format) == ZSTD_f_zstd1 ? 5 : 1) /* minimum input size required to query frame header size */ +#define ZSTD_FRAMEHEADERSIZE_MIN(format) ((format) == ZSTD_f_zstd1 ? 6 : 2) +#define ZSTD_FRAMEHEADERSIZE_MAX 18 /* can be useful for static allocation */ +#define ZSTD_SKIPPABLEHEADERSIZE 8 + +/* compression parameter bounds */ +#define ZSTD_WINDOWLOG_MAX_32 30 +#define ZSTD_WINDOWLOG_MAX_64 31 +#define ZSTD_WINDOWLOG_MAX ((int)(sizeof(size_t) == 4 ? ZSTD_WINDOWLOG_MAX_32 : ZSTD_WINDOWLOG_MAX_64)) +#define ZSTD_WINDOWLOG_MIN 10 +#define ZSTD_HASHLOG_MAX ((ZSTD_WINDOWLOG_MAX < 30) ? ZSTD_WINDOWLOG_MAX : 30) +#define ZSTD_HASHLOG_MIN 6 +#define ZSTD_CHAINLOG_MAX_32 29 +#define ZSTD_CHAINLOG_MAX_64 30 +#define ZSTD_CHAINLOG_MAX ((int)(sizeof(size_t) == 4 ? ZSTD_CHAINLOG_MAX_32 : ZSTD_CHAINLOG_MAX_64)) +#define ZSTD_CHAINLOG_MIN ZSTD_HASHLOG_MIN +#define ZSTD_SEARCHLOG_MAX (ZSTD_WINDOWLOG_MAX-1) +#define ZSTD_SEARCHLOG_MIN 1 +#define ZSTD_MINMATCH_MAX 7 /* only for ZSTD_fast, other strategies are limited to 6 */ +#define ZSTD_MINMATCH_MIN 3 /* only for ZSTD_btopt+, faster strategies are limited to 4 */ +#define ZSTD_TARGETLENGTH_MAX ZSTD_BLOCKSIZE_MAX +#define ZSTD_TARGETLENGTH_MIN 0 /* note : comparing this constant to an unsigned results in a tautological test */ +#define ZSTD_STRATEGY_MIN ZSTD_fast +#define ZSTD_STRATEGY_MAX ZSTD_btultra2 +#define ZSTD_BLOCKSIZE_MAX_MIN (1 << 10) /* The minimum valid max blocksize. Maximum blocksizes smaller than this make compressBound() inaccurate. */ + + +#define ZSTD_OVERLAPLOG_MIN 0 +#define ZSTD_OVERLAPLOG_MAX 9 + +#define ZSTD_WINDOWLOG_LIMIT_DEFAULT 27 /* by default, the streaming decoder will refuse any frame + * requiring larger than (1< 0: + * If litLength != 0: + * rep == 1 --> offset == repeat_offset_1 + * rep == 2 --> offset == repeat_offset_2 + * rep == 3 --> offset == repeat_offset_3 + * If litLength == 0: + * rep == 1 --> offset == repeat_offset_2 + * rep == 2 --> offset == repeat_offset_3 + * rep == 3 --> offset == repeat_offset_1 - 1 + * + * Note: This field is optional. ZSTD_generateSequences() will calculate the value of + * 'rep', but repeat offsets do not necessarily need to be calculated from an external + * sequence provider perspective. For example, ZSTD_compressSequences() does not + * use this 'rep' field at all (as of now). + */ +} ZSTD_Sequence; + +typedef struct { + unsigned windowLog; /**< largest match distance : larger == more compression, more memory needed during decompression */ + unsigned chainLog; /**< fully searched segment : larger == more compression, slower, more memory (useless for fast) */ + unsigned hashLog; /**< dispatch table : larger == faster, more memory */ + unsigned searchLog; /**< nb of searches : larger == more compression, slower */ + unsigned minMatch; /**< match length searched : larger == faster decompression, sometimes less compression */ + unsigned targetLength; /**< acceptable match size for optimal parser (only) : larger == more compression, slower */ + ZSTD_strategy strategy; /**< see ZSTD_strategy definition above */ +} ZSTD_compressionParameters; + +typedef struct { + int contentSizeFlag; /**< 1: content size will be in frame header (when known) */ + int checksumFlag; /**< 1: generate a 32-bits checksum using XXH64 algorithm at end of frame, for error detection */ + int noDictIDFlag; /**< 1: no dictID will be saved into frame header (dictID is only useful for dictionary compression) */ +} ZSTD_frameParameters; + +typedef struct { + ZSTD_compressionParameters cParams; + ZSTD_frameParameters fParams; +} ZSTD_parameters; + +typedef enum { + ZSTD_dct_auto = 0, /* dictionary is "full" when starting with ZSTD_MAGIC_DICTIONARY, otherwise it is "rawContent" */ + ZSTD_dct_rawContent = 1, /* ensures dictionary is always loaded as rawContent, even if it starts with ZSTD_MAGIC_DICTIONARY */ + ZSTD_dct_fullDict = 2 /* refuses to load a dictionary if it does not respect Zstandard's specification, starting with ZSTD_MAGIC_DICTIONARY */ +} ZSTD_dictContentType_e; + +typedef enum { + ZSTD_dlm_byCopy = 0, /**< Copy dictionary content internally */ + ZSTD_dlm_byRef = 1 /**< Reference dictionary content -- the dictionary buffer must outlive its users. */ +} ZSTD_dictLoadMethod_e; + +typedef enum { + ZSTD_f_zstd1 = 0, /* zstd frame format, specified in zstd_compression_format.md (default) */ + ZSTD_f_zstd1_magicless = 1 /* Variant of zstd frame format, without initial 4-bytes magic number. + * Useful to save 4 bytes per generated frame. + * Decoder cannot recognise automatically this format, requiring this instruction. */ +} ZSTD_format_e; + +typedef enum { + /* Note: this enum controls ZSTD_d_forceIgnoreChecksum */ + ZSTD_d_validateChecksum = 0, + ZSTD_d_ignoreChecksum = 1 +} ZSTD_forceIgnoreChecksum_e; + +typedef enum { + /* Note: this enum controls ZSTD_d_refMultipleDDicts */ + ZSTD_rmd_refSingleDDict = 0, + ZSTD_rmd_refMultipleDDicts = 1 +} ZSTD_refMultipleDDicts_e; + +typedef enum { + /* Note: this enum and the behavior it controls are effectively internal + * implementation details of the compressor. They are expected to continue + * to evolve and should be considered only in the context of extremely + * advanced performance tuning. + * + * Zstd currently supports the use of a CDict in three ways: + * + * - The contents of the CDict can be copied into the working context. This + * means that the compression can search both the dictionary and input + * while operating on a single set of internal tables. This makes + * the compression faster per-byte of input. However, the initial copy of + * the CDict's tables incurs a fixed cost at the beginning of the + * compression. For small compressions (< 8 KB), that copy can dominate + * the cost of the compression. + * + * - The CDict's tables can be used in-place. In this model, compression is + * slower per input byte, because the compressor has to search two sets of + * tables. However, this model incurs no start-up cost (as long as the + * working context's tables can be reused). For small inputs, this can be + * faster than copying the CDict's tables. + * + * - The CDict's tables are not used at all, and instead we use the working + * context alone to reload the dictionary and use params based on the source + * size. See ZSTD_compress_insertDictionary() and ZSTD_compress_usingDict(). + * This method is effective when the dictionary sizes are very small relative + * to the input size, and the input size is fairly large to begin with. + * + * Zstd has a simple internal heuristic that selects which strategy to use + * at the beginning of a compression. However, if experimentation shows that + * Zstd is making poor choices, it is possible to override that choice with + * this enum. + */ + ZSTD_dictDefaultAttach = 0, /* Use the default heuristic. */ + ZSTD_dictForceAttach = 1, /* Never copy the dictionary. */ + ZSTD_dictForceCopy = 2, /* Always copy the dictionary. */ + ZSTD_dictForceLoad = 3 /* Always reload the dictionary */ +} ZSTD_dictAttachPref_e; + +typedef enum { + ZSTD_lcm_auto = 0, /**< Automatically determine the compression mode based on the compression level. + * Negative compression levels will be uncompressed, and positive compression + * levels will be compressed. */ + ZSTD_lcm_huffman = 1, /**< Always attempt Huffman compression. Uncompressed literals will still be + * emitted if Huffman compression is not profitable. */ + ZSTD_lcm_uncompressed = 2 /**< Always emit uncompressed literals. */ +} ZSTD_literalCompressionMode_e; + +typedef enum { + /* Note: This enum controls features which are conditionally beneficial. + * Zstd can take a decision on whether or not to enable the feature (ZSTD_ps_auto), + * but setting the switch to ZSTD_ps_enable or ZSTD_ps_disable force enable/disable the feature. + */ + ZSTD_ps_auto = 0, /* Let the library automatically determine whether the feature shall be enabled */ + ZSTD_ps_enable = 1, /* Force-enable the feature */ + ZSTD_ps_disable = 2 /* Do not use the feature */ +} ZSTD_ParamSwitch_e; +#define ZSTD_paramSwitch_e ZSTD_ParamSwitch_e /* old name */ + +/*************************************** +* Frame header and size functions +***************************************/ + +/*! ZSTD_findDecompressedSize() : + * `src` should point to the start of a series of ZSTD encoded and/or skippable frames + * `srcSize` must be the _exact_ size of this series + * (i.e. there should be a frame boundary at `src + srcSize`) + * @return : - decompressed size of all data in all successive frames + * - if the decompressed size cannot be determined: ZSTD_CONTENTSIZE_UNKNOWN + * - if an error occurred: ZSTD_CONTENTSIZE_ERROR + * + * note 1 : decompressed size is an optional field, that may not be present, especially in streaming mode. + * When `return==ZSTD_CONTENTSIZE_UNKNOWN`, data to decompress could be any size. + * In which case, it's necessary to use streaming mode to decompress data. + * note 2 : decompressed size is always present when compression is done with ZSTD_compress() + * note 3 : decompressed size can be very large (64-bits value), + * potentially larger than what local system can handle as a single memory segment. + * In which case, it's necessary to use streaming mode to decompress data. + * note 4 : If source is untrusted, decompressed size could be wrong or intentionally modified. + * Always ensure result fits within application's authorized limits. + * Each application can set its own limits. + * note 5 : ZSTD_findDecompressedSize handles multiple frames, and so it must traverse the input to + * read each contained frame header. This is fast as most of the data is skipped, + * however it does mean that all frame data must be present and valid. */ +ZSTDLIB_STATIC_API unsigned long long ZSTD_findDecompressedSize(const void* src, size_t srcSize); + +/*! ZSTD_decompressBound() : + * `src` should point to the start of a series of ZSTD encoded and/or skippable frames + * `srcSize` must be the _exact_ size of this series + * (i.e. there should be a frame boundary at `src + srcSize`) + * @return : - upper-bound for the decompressed size of all data in all successive frames + * - if an error occurred: ZSTD_CONTENTSIZE_ERROR + * + * note 1 : an error can occur if `src` contains an invalid or incorrectly formatted frame. + * note 2 : the upper-bound is exact when the decompressed size field is available in every ZSTD encoded frame of `src`. + * in this case, `ZSTD_findDecompressedSize` and `ZSTD_decompressBound` return the same value. + * note 3 : when the decompressed size field isn't available, the upper-bound for that frame is calculated by: + * upper-bound = # blocks * min(128 KB, Window_Size) + */ +ZSTDLIB_STATIC_API unsigned long long ZSTD_decompressBound(const void* src, size_t srcSize); + +/*! ZSTD_frameHeaderSize() : + * srcSize must be large enough, aka >= ZSTD_FRAMEHEADERSIZE_PREFIX. + * @return : size of the Frame Header, + * or an error code (if srcSize is too small) */ +ZSTDLIB_STATIC_API size_t ZSTD_frameHeaderSize(const void* src, size_t srcSize); + +typedef enum { ZSTD_frame, ZSTD_skippableFrame } ZSTD_FrameType_e; +#define ZSTD_frameType_e ZSTD_FrameType_e /* old name */ +typedef struct { + unsigned long long frameContentSize; /* if == ZSTD_CONTENTSIZE_UNKNOWN, it means this field is not available. 0 means "empty" */ + unsigned long long windowSize; /* can be very large, up to <= frameContentSize */ + unsigned blockSizeMax; + ZSTD_FrameType_e frameType; /* if == ZSTD_skippableFrame, frameContentSize is the size of skippable content */ + unsigned headerSize; + unsigned dictID; /* for ZSTD_skippableFrame, contains the skippable magic variant [0-15] */ + unsigned checksumFlag; + unsigned _reserved1; + unsigned _reserved2; +} ZSTD_FrameHeader; +#define ZSTD_frameHeader ZSTD_FrameHeader /* old name */ + +/*! ZSTD_getFrameHeader() : + * decode Frame Header into `zfhPtr`, or requires larger `srcSize`. + * @return : 0 => header is complete, `zfhPtr` is correctly filled, + * >0 => `srcSize` is too small, @return value is the wanted `srcSize` amount, `zfhPtr` is not filled, + * or an error code, which can be tested using ZSTD_isError() */ +ZSTDLIB_STATIC_API size_t ZSTD_getFrameHeader(ZSTD_FrameHeader* zfhPtr, const void* src, size_t srcSize); +/*! ZSTD_getFrameHeader_advanced() : + * same as ZSTD_getFrameHeader(), + * with added capability to select a format (like ZSTD_f_zstd1_magicless) */ +ZSTDLIB_STATIC_API size_t ZSTD_getFrameHeader_advanced(ZSTD_FrameHeader* zfhPtr, const void* src, size_t srcSize, ZSTD_format_e format); + +/*! ZSTD_decompressionMargin() : + * Zstd supports in-place decompression, where the input and output buffers overlap. + * In this case, the output buffer must be at least (Margin + Output_Size) bytes large, + * and the input buffer must be at the end of the output buffer. + * + * _______________________ Output Buffer ________________________ + * | | + * | ____ Input Buffer ____| + * | | | + * v v v + * |---------------------------------------|-----------|----------| + * ^ ^ ^ + * |___________________ Output_Size ___________________|_ Margin _| + * + * NOTE: See also ZSTD_DECOMPRESSION_MARGIN(). + * NOTE: This applies only to single-pass decompression through ZSTD_decompress() or + * ZSTD_decompressDCtx(). + * NOTE: This function supports multi-frame input. + * + * @param src The compressed frame(s) + * @param srcSize The size of the compressed frame(s) + * @returns The decompression margin or an error that can be checked with ZSTD_isError(). + */ +ZSTDLIB_STATIC_API size_t ZSTD_decompressionMargin(const void* src, size_t srcSize); + +/*! ZSTD_DECOMPRESS_MARGIN() : + * Similar to ZSTD_decompressionMargin(), but instead of computing the margin from + * the compressed frame, compute it from the original size and the blockSizeLog. + * See ZSTD_decompressionMargin() for details. + * + * WARNING: This macro does not support multi-frame input, the input must be a single + * zstd frame. If you need that support use the function, or implement it yourself. + * + * @param originalSize The original uncompressed size of the data. + * @param blockSize The block size == MIN(windowSize, ZSTD_BLOCKSIZE_MAX). + * Unless you explicitly set the windowLog smaller than + * ZSTD_BLOCKSIZELOG_MAX you can just use ZSTD_BLOCKSIZE_MAX. + */ +#define ZSTD_DECOMPRESSION_MARGIN(originalSize, blockSize) ((size_t)( \ + ZSTD_FRAMEHEADERSIZE_MAX /* Frame header */ + \ + 4 /* checksum */ + \ + ((originalSize) == 0 ? 0 : 3 * (((originalSize) + (blockSize) - 1) / blockSize)) /* 3 bytes per block */ + \ + (blockSize) /* One block of margin */ \ + )) + +typedef enum { + ZSTD_sf_noBlockDelimiters = 0, /* ZSTD_Sequence[] has no block delimiters, just sequences */ + ZSTD_sf_explicitBlockDelimiters = 1 /* ZSTD_Sequence[] contains explicit block delimiters */ +} ZSTD_SequenceFormat_e; +#define ZSTD_sequenceFormat_e ZSTD_SequenceFormat_e /* old name */ + +/*! ZSTD_sequenceBound() : + * `srcSize` : size of the input buffer + * @return : upper-bound for the number of sequences that can be generated + * from a buffer of srcSize bytes + * + * note : returns number of sequences - to get bytes, multiply by sizeof(ZSTD_Sequence). + */ +ZSTDLIB_STATIC_API size_t ZSTD_sequenceBound(size_t srcSize); + +/*! ZSTD_generateSequences() : + * WARNING: This function is meant for debugging and informational purposes ONLY! + * Its implementation is flawed, and it will be deleted in a future version. + * It is not guaranteed to succeed, as there are several cases where it will give + * up and fail. You should NOT use this function in production code. + * + * This function is deprecated, and will be removed in a future version. + * + * Generate sequences using ZSTD_compress2(), given a source buffer. + * + * @param zc The compression context to be used for ZSTD_compress2(). Set any + * compression parameters you need on this context. + * @param outSeqs The output sequences buffer of size @p outSeqsSize + * @param outSeqsCapacity The size of the output sequences buffer. + * ZSTD_sequenceBound(srcSize) is an upper bound on the number + * of sequences that can be generated. + * @param src The source buffer to generate sequences from of size @p srcSize. + * @param srcSize The size of the source buffer. + * + * Each block will end with a dummy sequence + * with offset == 0, matchLength == 0, and litLength == length of last literals. + * litLength may be == 0, and if so, then the sequence of (of: 0 ml: 0 ll: 0) + * simply acts as a block delimiter. + * + * @returns The number of sequences generated, necessarily less than + * ZSTD_sequenceBound(srcSize), or an error code that can be checked + * with ZSTD_isError(). + */ +ZSTD_DEPRECATED("For debugging only, will be replaced by ZSTD_extractSequences()") +ZSTDLIB_STATIC_API size_t +ZSTD_generateSequences(ZSTD_CCtx* zc, + ZSTD_Sequence* outSeqs, size_t outSeqsCapacity, + const void* src, size_t srcSize); + +/*! ZSTD_mergeBlockDelimiters() : + * Given an array of ZSTD_Sequence, remove all sequences that represent block delimiters/last literals + * by merging them into the literals of the next sequence. + * + * As such, the final generated result has no explicit representation of block boundaries, + * and the final last literals segment is not represented in the sequences. + * + * The output of this function can be fed into ZSTD_compressSequences() with CCtx + * setting of ZSTD_c_blockDelimiters as ZSTD_sf_noBlockDelimiters + * @return : number of sequences left after merging + */ +ZSTDLIB_STATIC_API size_t ZSTD_mergeBlockDelimiters(ZSTD_Sequence* sequences, size_t seqsSize); + +/*! ZSTD_compressSequences() : + * Compress an array of ZSTD_Sequence, associated with @src buffer, into dst. + * @src contains the entire input (not just the literals). + * If @srcSize > sum(sequence.length), the remaining bytes are considered all literals + * If a dictionary is included, then the cctx should reference the dict (see: ZSTD_CCtx_refCDict(), ZSTD_CCtx_loadDictionary(), etc.). + * The entire source is compressed into a single frame. + * + * The compression behavior changes based on cctx params. In particular: + * If ZSTD_c_blockDelimiters == ZSTD_sf_noBlockDelimiters, the array of ZSTD_Sequence is expected to contain + * no block delimiters (defined in ZSTD_Sequence). Block boundaries are roughly determined based on + * the block size derived from the cctx, and sequences may be split. This is the default setting. + * + * If ZSTD_c_blockDelimiters == ZSTD_sf_explicitBlockDelimiters, the array of ZSTD_Sequence is expected to contain + * valid block delimiters (defined in ZSTD_Sequence). Behavior is undefined if no block delimiters are provided. + * + * When ZSTD_c_blockDelimiters == ZSTD_sf_explicitBlockDelimiters, it's possible to decide generating repcodes + * using the advanced parameter ZSTD_c_repcodeResolution. Repcodes will improve compression ratio, though the benefit + * can vary greatly depending on Sequences. On the other hand, repcode resolution is an expensive operation. + * By default, it's disabled at low (<10) compression levels, and enabled above the threshold (>=10). + * ZSTD_c_repcodeResolution makes it possible to directly manage this processing in either direction. + * + * If ZSTD_c_validateSequences == 0, this function blindly accepts the Sequences provided. Invalid Sequences cause undefined + * behavior. If ZSTD_c_validateSequences == 1, then the function will detect invalid Sequences (see doc/zstd_compression_format.md for + * specifics regarding offset/matchlength requirements) and then bail out and return an error. + * + * In addition to the two adjustable experimental params, there are other important cctx params. + * - ZSTD_c_minMatch MUST be set as less than or equal to the smallest match generated by the match finder. It has a minimum value of ZSTD_MINMATCH_MIN. + * - ZSTD_c_compressionLevel accordingly adjusts the strength of the entropy coder, as it would in typical compression. + * - ZSTD_c_windowLog affects offset validation: this function will return an error at higher debug levels if a provided offset + * is larger than what the spec allows for a given window log and dictionary (if present). See: doc/zstd_compression_format.md + * + * Note: Repcodes are, as of now, always re-calculated within this function, ZSTD_Sequence.rep is effectively unused. + * Dev Note: Once ability to ingest repcodes become available, the explicit block delims mode must respect those repcodes exactly, + * and cannot emit an RLE block that disagrees with the repcode history. + * @return : final compressed size, or a ZSTD error code. + */ +ZSTDLIB_STATIC_API size_t +ZSTD_compressSequences(ZSTD_CCtx* cctx, + void* dst, size_t dstCapacity, + const ZSTD_Sequence* inSeqs, size_t inSeqsSize, + const void* src, size_t srcSize); + + +/*! ZSTD_compressSequencesAndLiterals() : + * This is a variant of ZSTD_compressSequences() which, + * instead of receiving (src,srcSize) as input parameter, receives (literals,litSize), + * aka all the literals, already extracted and laid out into a single continuous buffer. + * This can be useful if the process generating the sequences also happens to generate the buffer of literals, + * thus skipping an extraction + caching stage. + * It's a speed optimization, useful when the right conditions are met, + * but it also features the following limitations: + * - Only supports explicit delimiter mode + * - Currently does not support Sequences validation (so input Sequences are trusted) + * - Not compatible with frame checksum, which must be disabled + * - If any block is incompressible, will fail and return an error + * - @litSize must be == sum of all @.litLength fields in @inSeqs. Any discrepancy will generate an error. + * - @litBufCapacity is the size of the underlying buffer into which literals are written, starting at address @literals. + * @litBufCapacity must be at least 8 bytes larger than @litSize. + * - @decompressedSize must be correct, and correspond to the sum of all Sequences. Any discrepancy will generate an error. + * @return : final compressed size, or a ZSTD error code. + */ +ZSTDLIB_STATIC_API size_t +ZSTD_compressSequencesAndLiterals(ZSTD_CCtx* cctx, + void* dst, size_t dstCapacity, + const ZSTD_Sequence* inSeqs, size_t nbSequences, + const void* literals, size_t litSize, size_t litBufCapacity, + size_t decompressedSize); + + +/*! ZSTD_writeSkippableFrame() : + * Generates a zstd skippable frame containing data given by src, and writes it to dst buffer. + * + * Skippable frames begin with a 4-byte magic number. There are 16 possible choices of magic number, + * ranging from ZSTD_MAGIC_SKIPPABLE_START to ZSTD_MAGIC_SKIPPABLE_START+15. + * As such, the parameter magicVariant controls the exact skippable frame magic number variant used, + * so the magic number used will be ZSTD_MAGIC_SKIPPABLE_START + magicVariant. + * + * Returns an error if destination buffer is not large enough, if the source size is not representable + * with a 4-byte unsigned int, or if the parameter magicVariant is greater than 15 (and therefore invalid). + * + * @return : number of bytes written or a ZSTD error. + */ +ZSTDLIB_STATIC_API size_t ZSTD_writeSkippableFrame(void* dst, size_t dstCapacity, + const void* src, size_t srcSize, + unsigned magicVariant); + +/*! ZSTD_readSkippableFrame() : + * Retrieves the content of a zstd skippable frame starting at @src, and writes it to @dst buffer. + * + * The parameter @magicVariant will receive the magicVariant that was supplied when the frame was written, + * i.e. magicNumber - ZSTD_MAGIC_SKIPPABLE_START. + * This can be NULL if the caller is not interested in the magicVariant. + * + * Returns an error if destination buffer is not large enough, or if the frame is not skippable. + * + * @return : number of bytes written or a ZSTD error. + */ +ZSTDLIB_STATIC_API size_t ZSTD_readSkippableFrame(void* dst, size_t dstCapacity, + unsigned* magicVariant, + const void* src, size_t srcSize); + +/*! ZSTD_isSkippableFrame() : + * Tells if the content of `buffer` starts with a valid Frame Identifier for a skippable frame. + */ +ZSTDLIB_STATIC_API unsigned ZSTD_isSkippableFrame(const void* buffer, size_t size); + + + +/*************************************** +* Memory management +***************************************/ + +/*! ZSTD_estimate*() : + * These functions make it possible to estimate memory usage + * of a future {D,C}Ctx, before its creation. + * This is useful in combination with ZSTD_initStatic(), + * which makes it possible to employ a static buffer for ZSTD_CCtx* state. + * + * ZSTD_estimateCCtxSize() will provide a memory budget large enough + * to compress data of any size using one-shot compression ZSTD_compressCCtx() or ZSTD_compress2() + * associated with any compression level up to max specified one. + * The estimate will assume the input may be arbitrarily large, + * which is the worst case. + * + * Note that the size estimation is specific for one-shot compression, + * it is not valid for streaming (see ZSTD_estimateCStreamSize*()) + * nor other potential ways of using a ZSTD_CCtx* state. + * + * When srcSize can be bound by a known and rather "small" value, + * this knowledge can be used to provide a tighter budget estimation + * because the ZSTD_CCtx* state will need less memory for small inputs. + * This tighter estimation can be provided by employing more advanced functions + * ZSTD_estimateCCtxSize_usingCParams(), which can be used in tandem with ZSTD_getCParams(), + * and ZSTD_estimateCCtxSize_usingCCtxParams(), which can be used in tandem with ZSTD_CCtxParams_setParameter(). + * Both can be used to estimate memory using custom compression parameters and arbitrary srcSize limits. + * + * Note : only single-threaded compression is supported. + * ZSTD_estimateCCtxSize_usingCCtxParams() will return an error code if ZSTD_c_nbWorkers is >= 1. + */ +ZSTDLIB_STATIC_API size_t ZSTD_estimateCCtxSize(int maxCompressionLevel); +ZSTDLIB_STATIC_API size_t ZSTD_estimateCCtxSize_usingCParams(ZSTD_compressionParameters cParams); +ZSTDLIB_STATIC_API size_t ZSTD_estimateCCtxSize_usingCCtxParams(const ZSTD_CCtx_params* params); +ZSTDLIB_STATIC_API size_t ZSTD_estimateDCtxSize(void); + +/*! ZSTD_estimateCStreamSize() : + * ZSTD_estimateCStreamSize() will provide a memory budget large enough for streaming compression + * using any compression level up to the max specified one. + * It will also consider src size to be arbitrarily "large", which is a worst case scenario. + * If srcSize is known to always be small, ZSTD_estimateCStreamSize_usingCParams() can provide a tighter estimation. + * ZSTD_estimateCStreamSize_usingCParams() can be used in tandem with ZSTD_getCParams() to create cParams from compressionLevel. + * ZSTD_estimateCStreamSize_usingCCtxParams() can be used in tandem with ZSTD_CCtxParams_setParameter(). Only single-threaded compression is supported. This function will return an error code if ZSTD_c_nbWorkers is >= 1. + * Note : CStream size estimation is only correct for single-threaded compression. + * ZSTD_estimateCStreamSize_usingCCtxParams() will return an error code if ZSTD_c_nbWorkers is >= 1. + * Note 2 : ZSTD_estimateCStreamSize* functions are not compatible with the Block-Level Sequence Producer API at this time. + * Size estimates assume that no external sequence producer is registered. + * + * ZSTD_DStream memory budget depends on frame's window Size. + * This information can be passed manually, using ZSTD_estimateDStreamSize, + * or deducted from a valid frame Header, using ZSTD_estimateDStreamSize_fromFrame(); + * Any frame requesting a window size larger than max specified one will be rejected. + * Note : if streaming is init with function ZSTD_init?Stream_usingDict(), + * an internal ?Dict will be created, which additional size is not estimated here. + * In this case, get total size by adding ZSTD_estimate?DictSize + */ +ZSTDLIB_STATIC_API size_t ZSTD_estimateCStreamSize(int maxCompressionLevel); +ZSTDLIB_STATIC_API size_t ZSTD_estimateCStreamSize_usingCParams(ZSTD_compressionParameters cParams); +ZSTDLIB_STATIC_API size_t ZSTD_estimateCStreamSize_usingCCtxParams(const ZSTD_CCtx_params* params); +ZSTDLIB_STATIC_API size_t ZSTD_estimateDStreamSize(size_t maxWindowSize); +ZSTDLIB_STATIC_API size_t ZSTD_estimateDStreamSize_fromFrame(const void* src, size_t srcSize); + +/*! ZSTD_estimate?DictSize() : + * ZSTD_estimateCDictSize() will bet that src size is relatively "small", and content is copied, like ZSTD_createCDict(). + * ZSTD_estimateCDictSize_advanced() makes it possible to control compression parameters precisely, like ZSTD_createCDict_advanced(). + * Note : dictionaries created by reference (`ZSTD_dlm_byRef`) are logically smaller. + */ +ZSTDLIB_STATIC_API size_t ZSTD_estimateCDictSize(size_t dictSize, int compressionLevel); +ZSTDLIB_STATIC_API size_t ZSTD_estimateCDictSize_advanced(size_t dictSize, ZSTD_compressionParameters cParams, ZSTD_dictLoadMethod_e dictLoadMethod); +ZSTDLIB_STATIC_API size_t ZSTD_estimateDDictSize(size_t dictSize, ZSTD_dictLoadMethod_e dictLoadMethod); + +/*! ZSTD_initStatic*() : + * Initialize an object using a pre-allocated fixed-size buffer. + * workspace: The memory area to emplace the object into. + * Provided pointer *must be 8-bytes aligned*. + * Buffer must outlive object. + * workspaceSize: Use ZSTD_estimate*Size() to determine + * how large workspace must be to support target scenario. + * @return : pointer to object (same address as workspace, just different type), + * or NULL if error (size too small, incorrect alignment, etc.) + * Note : zstd will never resize nor malloc() when using a static buffer. + * If the object requires more memory than available, + * zstd will just error out (typically ZSTD_error_memory_allocation). + * Note 2 : there is no corresponding "free" function. + * Since workspace is allocated externally, it must be freed externally too. + * Note 3 : cParams : use ZSTD_getCParams() to convert a compression level + * into its associated cParams. + * Limitation 1 : currently not compatible with internal dictionary creation, triggered by + * ZSTD_CCtx_loadDictionary(), ZSTD_initCStream_usingDict() or ZSTD_initDStream_usingDict(). + * Limitation 2 : static cctx currently not compatible with multi-threading. + * Limitation 3 : static dctx is incompatible with legacy support. + */ +ZSTDLIB_STATIC_API ZSTD_CCtx* ZSTD_initStaticCCtx(void* workspace, size_t workspaceSize); +ZSTDLIB_STATIC_API ZSTD_CStream* ZSTD_initStaticCStream(void* workspace, size_t workspaceSize); /**< same as ZSTD_initStaticCCtx() */ + +ZSTDLIB_STATIC_API ZSTD_DCtx* ZSTD_initStaticDCtx(void* workspace, size_t workspaceSize); +ZSTDLIB_STATIC_API ZSTD_DStream* ZSTD_initStaticDStream(void* workspace, size_t workspaceSize); /**< same as ZSTD_initStaticDCtx() */ + +ZSTDLIB_STATIC_API const ZSTD_CDict* ZSTD_initStaticCDict( + void* workspace, size_t workspaceSize, + const void* dict, size_t dictSize, + ZSTD_dictLoadMethod_e dictLoadMethod, + ZSTD_dictContentType_e dictContentType, + ZSTD_compressionParameters cParams); + +ZSTDLIB_STATIC_API const ZSTD_DDict* ZSTD_initStaticDDict( + void* workspace, size_t workspaceSize, + const void* dict, size_t dictSize, + ZSTD_dictLoadMethod_e dictLoadMethod, + ZSTD_dictContentType_e dictContentType); + + +/*! Custom memory allocation : + * These prototypes make it possible to pass your own allocation/free functions. + * ZSTD_customMem is provided at creation time, using ZSTD_create*_advanced() variants listed below. + * All allocation/free operations will be completed using these custom variants instead of regular ones. + */ +typedef void* (*ZSTD_allocFunction) (void* opaque, size_t size); +typedef void (*ZSTD_freeFunction) (void* opaque, void* address); +typedef struct { ZSTD_allocFunction customAlloc; ZSTD_freeFunction customFree; void* opaque; } ZSTD_customMem; +static +#ifdef __GNUC__ +__attribute__((__unused__)) +#endif + +#if defined(__clang__) && __clang_major__ >= 5 +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" +#endif +ZSTD_customMem const ZSTD_defaultCMem = { NULL, NULL, NULL }; /**< this constant defers to stdlib's functions */ +#if defined(__clang__) && __clang_major__ >= 5 +#pragma clang diagnostic pop +#endif + +ZSTDLIB_STATIC_API ZSTD_CCtx* ZSTD_createCCtx_advanced(ZSTD_customMem customMem); +ZSTDLIB_STATIC_API ZSTD_CStream* ZSTD_createCStream_advanced(ZSTD_customMem customMem); +ZSTDLIB_STATIC_API ZSTD_DCtx* ZSTD_createDCtx_advanced(ZSTD_customMem customMem); +ZSTDLIB_STATIC_API ZSTD_DStream* ZSTD_createDStream_advanced(ZSTD_customMem customMem); + +ZSTDLIB_STATIC_API ZSTD_CDict* ZSTD_createCDict_advanced(const void* dict, size_t dictSize, + ZSTD_dictLoadMethod_e dictLoadMethod, + ZSTD_dictContentType_e dictContentType, + ZSTD_compressionParameters cParams, + ZSTD_customMem customMem); + +/*! Thread pool : + * These prototypes make it possible to share a thread pool among multiple compression contexts. + * This can limit resources for applications with multiple threads where each one uses + * a threaded compression mode (via ZSTD_c_nbWorkers parameter). + * ZSTD_createThreadPool creates a new thread pool with a given number of threads. + * Note that the lifetime of such pool must exist while being used. + * ZSTD_CCtx_refThreadPool assigns a thread pool to a context (use NULL argument value + * to use an internal thread pool). + * ZSTD_freeThreadPool frees a thread pool, accepts NULL pointer. + */ +typedef struct POOL_ctx_s ZSTD_threadPool; +ZSTDLIB_STATIC_API ZSTD_threadPool* ZSTD_createThreadPool(size_t numThreads); +ZSTDLIB_STATIC_API void ZSTD_freeThreadPool (ZSTD_threadPool* pool); /* accept NULL pointer */ +ZSTDLIB_STATIC_API size_t ZSTD_CCtx_refThreadPool(ZSTD_CCtx* cctx, ZSTD_threadPool* pool); + + +/* + * This API is temporary and is expected to change or disappear in the future! + */ +ZSTDLIB_STATIC_API ZSTD_CDict* ZSTD_createCDict_advanced2( + const void* dict, size_t dictSize, + ZSTD_dictLoadMethod_e dictLoadMethod, + ZSTD_dictContentType_e dictContentType, + const ZSTD_CCtx_params* cctxParams, + ZSTD_customMem customMem); + +ZSTDLIB_STATIC_API ZSTD_DDict* ZSTD_createDDict_advanced( + const void* dict, size_t dictSize, + ZSTD_dictLoadMethod_e dictLoadMethod, + ZSTD_dictContentType_e dictContentType, + ZSTD_customMem customMem); + + +/*************************************** +* Advanced compression functions +***************************************/ + +/*! ZSTD_createCDict_byReference() : + * Create a digested dictionary for compression + * Dictionary content is just referenced, not duplicated. + * As a consequence, `dictBuffer` **must** outlive CDict, + * and its content must remain unmodified throughout the lifetime of CDict. + * note: equivalent to ZSTD_createCDict_advanced(), with dictLoadMethod==ZSTD_dlm_byRef */ +ZSTDLIB_STATIC_API ZSTD_CDict* ZSTD_createCDict_byReference(const void* dictBuffer, size_t dictSize, int compressionLevel); + +/*! ZSTD_getCParams() : + * @return ZSTD_compressionParameters structure for a selected compression level and estimated srcSize. + * `estimatedSrcSize` value is optional, select 0 if not known */ +ZSTDLIB_STATIC_API ZSTD_compressionParameters ZSTD_getCParams(int compressionLevel, unsigned long long estimatedSrcSize, size_t dictSize); + +/*! ZSTD_getParams() : + * same as ZSTD_getCParams(), but @return a full `ZSTD_parameters` object instead of sub-component `ZSTD_compressionParameters`. + * All fields of `ZSTD_frameParameters` are set to default : contentSize=1, checksum=0, noDictID=0 */ +ZSTDLIB_STATIC_API ZSTD_parameters ZSTD_getParams(int compressionLevel, unsigned long long estimatedSrcSize, size_t dictSize); + +/*! ZSTD_checkCParams() : + * Ensure param values remain within authorized range. + * @return 0 on success, or an error code (can be checked with ZSTD_isError()) */ +ZSTDLIB_STATIC_API size_t ZSTD_checkCParams(ZSTD_compressionParameters params); + +/*! ZSTD_adjustCParams() : + * optimize params for a given `srcSize` and `dictSize`. + * `srcSize` can be unknown, in which case use ZSTD_CONTENTSIZE_UNKNOWN. + * `dictSize` must be `0` when there is no dictionary. + * cPar can be invalid : all parameters will be clamped within valid range in the @return struct. + * This function never fails (wide contract) */ +ZSTDLIB_STATIC_API ZSTD_compressionParameters ZSTD_adjustCParams(ZSTD_compressionParameters cPar, unsigned long long srcSize, size_t dictSize); + +/*! ZSTD_CCtx_setCParams() : + * Set all parameters provided within @p cparams into the working @p cctx. + * Note : if modifying parameters during compression (MT mode only), + * note that changes to the .windowLog parameter will be ignored. + * @return 0 on success, or an error code (can be checked with ZSTD_isError()). + * On failure, no parameters are updated. + */ +ZSTDLIB_STATIC_API size_t ZSTD_CCtx_setCParams(ZSTD_CCtx* cctx, ZSTD_compressionParameters cparams); + +/*! ZSTD_CCtx_setFParams() : + * Set all parameters provided within @p fparams into the working @p cctx. + * @return 0 on success, or an error code (can be checked with ZSTD_isError()). + */ +ZSTDLIB_STATIC_API size_t ZSTD_CCtx_setFParams(ZSTD_CCtx* cctx, ZSTD_frameParameters fparams); + +/*! ZSTD_CCtx_setParams() : + * Set all parameters provided within @p params into the working @p cctx. + * @return 0 on success, or an error code (can be checked with ZSTD_isError()). + */ +ZSTDLIB_STATIC_API size_t ZSTD_CCtx_setParams(ZSTD_CCtx* cctx, ZSTD_parameters params); + +/*! ZSTD_compress_advanced() : + * Note : this function is now DEPRECATED. + * It can be replaced by ZSTD_compress2(), in combination with ZSTD_CCtx_setParameter() and other parameter setters. + * This prototype will generate compilation warnings. */ +ZSTD_DEPRECATED("use ZSTD_compress2") +ZSTDLIB_STATIC_API +size_t ZSTD_compress_advanced(ZSTD_CCtx* cctx, + void* dst, size_t dstCapacity, + const void* src, size_t srcSize, + const void* dict,size_t dictSize, + ZSTD_parameters params); + +/*! ZSTD_compress_usingCDict_advanced() : + * Note : this function is now DEPRECATED. + * It can be replaced by ZSTD_compress2(), in combination with ZSTD_CCtx_loadDictionary() and other parameter setters. + * This prototype will generate compilation warnings. */ +ZSTD_DEPRECATED("use ZSTD_compress2 with ZSTD_CCtx_loadDictionary") +ZSTDLIB_STATIC_API +size_t ZSTD_compress_usingCDict_advanced(ZSTD_CCtx* cctx, + void* dst, size_t dstCapacity, + const void* src, size_t srcSize, + const ZSTD_CDict* cdict, + ZSTD_frameParameters fParams); + + +/*! ZSTD_CCtx_loadDictionary_byReference() : + * Same as ZSTD_CCtx_loadDictionary(), but dictionary content is referenced, instead of being copied into CCtx. + * It saves some memory, but also requires that `dict` outlives its usage within `cctx` */ +ZSTDLIB_STATIC_API size_t ZSTD_CCtx_loadDictionary_byReference(ZSTD_CCtx* cctx, const void* dict, size_t dictSize); + +/*! ZSTD_CCtx_loadDictionary_advanced() : + * Same as ZSTD_CCtx_loadDictionary(), but gives finer control over + * how to load the dictionary (by copy ? by reference ?) + * and how to interpret it (automatic ? force raw mode ? full mode only ?) */ +ZSTDLIB_STATIC_API size_t ZSTD_CCtx_loadDictionary_advanced(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, ZSTD_dictLoadMethod_e dictLoadMethod, ZSTD_dictContentType_e dictContentType); + +/*! ZSTD_CCtx_refPrefix_advanced() : + * Same as ZSTD_CCtx_refPrefix(), but gives finer control over + * how to interpret prefix content (automatic ? force raw mode (default) ? full mode only ?) */ +ZSTDLIB_STATIC_API size_t ZSTD_CCtx_refPrefix_advanced(ZSTD_CCtx* cctx, const void* prefix, size_t prefixSize, ZSTD_dictContentType_e dictContentType); + +/* === experimental parameters === */ +/* these parameters can be used with ZSTD_setParameter() + * they are not guaranteed to remain supported in the future */ + + /* Enables rsyncable mode, + * which makes compressed files more rsync friendly + * by adding periodic synchronization points to the compressed data. + * The target average block size is ZSTD_c_jobSize / 2. + * It's possible to modify the job size to increase or decrease + * the granularity of the synchronization point. + * Once the jobSize is smaller than the window size, + * it will result in compression ratio degradation. + * NOTE 1: rsyncable mode only works when multithreading is enabled. + * NOTE 2: rsyncable performs poorly in combination with long range mode, + * since it will decrease the effectiveness of synchronization points, + * though mileage may vary. + * NOTE 3: Rsyncable mode limits maximum compression speed to ~400 MB/s. + * If the selected compression level is already running significantly slower, + * the overall speed won't be significantly impacted. + */ + #define ZSTD_c_rsyncable ZSTD_c_experimentalParam1 + +/* Select a compression format. + * The value must be of type ZSTD_format_e. + * See ZSTD_format_e enum definition for details */ +#define ZSTD_c_format ZSTD_c_experimentalParam2 + +/* Force back-reference distances to remain < windowSize, + * even when referencing into Dictionary content (default:0) */ +#define ZSTD_c_forceMaxWindow ZSTD_c_experimentalParam3 + +/* Controls whether the contents of a CDict + * are used in place, or copied into the working context. + * Accepts values from the ZSTD_dictAttachPref_e enum. + * See the comments on that enum for an explanation of the feature. */ +#define ZSTD_c_forceAttachDict ZSTD_c_experimentalParam4 + +/* Controlled with ZSTD_ParamSwitch_e enum. + * Default is ZSTD_ps_auto. + * Set to ZSTD_ps_disable to never compress literals. + * Set to ZSTD_ps_enable to always compress literals. (Note: uncompressed literals + * may still be emitted if huffman is not beneficial to use.) + * + * By default, in ZSTD_ps_auto, the library will decide at runtime whether to use + * literals compression based on the compression parameters - specifically, + * negative compression levels do not use literal compression. + */ +#define ZSTD_c_literalCompressionMode ZSTD_c_experimentalParam5 + +/* User's best guess of source size. + * Hint is not valid when srcSizeHint == 0. + * There is no guarantee that hint is close to actual source size, + * but compression ratio may regress significantly if guess considerably underestimates */ +#define ZSTD_c_srcSizeHint ZSTD_c_experimentalParam7 + +/* Controls whether the new and experimental "dedicated dictionary search + * structure" can be used. This feature is still rough around the edges, be + * prepared for surprising behavior! + * + * How to use it: + * + * When using a CDict, whether to use this feature or not is controlled at + * CDict creation, and it must be set in a CCtxParams set passed into that + * construction (via ZSTD_createCDict_advanced2()). A compression will then + * use the feature or not based on how the CDict was constructed; the value of + * this param, set in the CCtx, will have no effect. + * + * However, when a dictionary buffer is passed into a CCtx, such as via + * ZSTD_CCtx_loadDictionary(), this param can be set on the CCtx to control + * whether the CDict that is created internally can use the feature or not. + * + * What it does: + * + * Normally, the internal data structures of the CDict are analogous to what + * would be stored in a CCtx after compressing the contents of a dictionary. + * To an approximation, a compression using a dictionary can then use those + * data structures to simply continue what is effectively a streaming + * compression where the simulated compression of the dictionary left off. + * Which is to say, the search structures in the CDict are normally the same + * format as in the CCtx. + * + * It is possible to do better, since the CDict is not like a CCtx: the search + * structures are written once during CDict creation, and then are only read + * after that, while the search structures in the CCtx are both read and + * written as the compression goes along. This means we can choose a search + * structure for the dictionary that is read-optimized. + * + * This feature enables the use of that different structure. + * + * Note that some of the members of the ZSTD_compressionParameters struct have + * different semantics and constraints in the dedicated search structure. It is + * highly recommended that you simply set a compression level in the CCtxParams + * you pass into the CDict creation call, and avoid messing with the cParams + * directly. + * + * Effects: + * + * This will only have any effect when the selected ZSTD_strategy + * implementation supports this feature. Currently, that's limited to + * ZSTD_greedy, ZSTD_lazy, and ZSTD_lazy2. + * + * Note that this means that the CDict tables can no longer be copied into the + * CCtx, so the dict attachment mode ZSTD_dictForceCopy will no longer be + * usable. The dictionary can only be attached or reloaded. + * + * In general, you should expect compression to be faster--sometimes very much + * so--and CDict creation to be slightly slower. Eventually, we will probably + * make this mode the default. + */ +#define ZSTD_c_enableDedicatedDictSearch ZSTD_c_experimentalParam8 + +/* ZSTD_c_stableInBuffer + * Experimental parameter. + * Default is 0 == disabled. Set to 1 to enable. + * + * Tells the compressor that input data presented with ZSTD_inBuffer + * will ALWAYS be the same between calls. + * Technically, the @src pointer must never be changed, + * and the @pos field can only be updated by zstd. + * However, it's possible to increase the @size field, + * allowing scenarios where more data can be appended after compressions starts. + * These conditions are checked by the compressor, + * and compression will fail if they are not respected. + * Also, data in the ZSTD_inBuffer within the range [src, src + pos) + * MUST not be modified during compression or it will result in data corruption. + * + * When this flag is enabled zstd won't allocate an input window buffer, + * because the user guarantees it can reference the ZSTD_inBuffer until + * the frame is complete. But, it will still allocate an output buffer + * large enough to fit a block (see ZSTD_c_stableOutBuffer). This will also + * avoid the memcpy() from the input buffer to the input window buffer. + * + * NOTE: So long as the ZSTD_inBuffer always points to valid memory, using + * this flag is ALWAYS memory safe, and will never access out-of-bounds + * memory. However, compression WILL fail if conditions are not respected. + * + * WARNING: The data in the ZSTD_inBuffer in the range [src, src + pos) MUST + * not be modified during compression or it will result in data corruption. + * This is because zstd needs to reference data in the ZSTD_inBuffer to find + * matches. Normally zstd maintains its own window buffer for this purpose, + * but passing this flag tells zstd to rely on user provided buffer instead. + */ +#define ZSTD_c_stableInBuffer ZSTD_c_experimentalParam9 + +/* ZSTD_c_stableOutBuffer + * Experimental parameter. + * Default is 0 == disabled. Set to 1 to enable. + * + * Tells he compressor that the ZSTD_outBuffer will not be resized between + * calls. Specifically: (out.size - out.pos) will never grow. This gives the + * compressor the freedom to say: If the compressed data doesn't fit in the + * output buffer then return ZSTD_error_dstSizeTooSmall. This allows us to + * always decompress directly into the output buffer, instead of decompressing + * into an internal buffer and copying to the output buffer. + * + * When this flag is enabled zstd won't allocate an output buffer, because + * it can write directly to the ZSTD_outBuffer. It will still allocate the + * input window buffer (see ZSTD_c_stableInBuffer). + * + * Zstd will check that (out.size - out.pos) never grows and return an error + * if it does. While not strictly necessary, this should prevent surprises. + */ +#define ZSTD_c_stableOutBuffer ZSTD_c_experimentalParam10 + +/* ZSTD_c_blockDelimiters + * Default is 0 == ZSTD_sf_noBlockDelimiters. + * + * For use with sequence compression API: ZSTD_compressSequences(). + * + * Designates whether or not the given array of ZSTD_Sequence contains block delimiters + * and last literals, which are defined as sequences with offset == 0 and matchLength == 0. + * See the definition of ZSTD_Sequence for more specifics. + */ +#define ZSTD_c_blockDelimiters ZSTD_c_experimentalParam11 + +/* ZSTD_c_validateSequences + * Default is 0 == disabled. Set to 1 to enable sequence validation. + * + * For use with sequence compression API: ZSTD_compressSequences*(). + * Designates whether or not provided sequences are validated within ZSTD_compressSequences*() + * during function execution. + * + * When Sequence validation is disabled (default), Sequences are compressed as-is, + * so they must correct, otherwise it would result in a corruption error. + * + * Sequence validation adds some protection, by ensuring that all values respect boundary conditions. + * If a Sequence is detected invalid (see doc/zstd_compression_format.md for + * specifics regarding offset/matchlength requirements) then the function will bail out and + * return an error. + */ +#define ZSTD_c_validateSequences ZSTD_c_experimentalParam12 + +/* ZSTD_c_blockSplitterLevel + * note: this parameter only influences the first splitter stage, + * which is active before producing the sequences. + * ZSTD_c_splitAfterSequences controls the next splitter stage, + * which is active after sequence production. + * Note that both can be combined. + * Allowed values are between 0 and ZSTD_BLOCKSPLITTER_LEVEL_MAX included. + * 0 means "auto", which will select a value depending on current ZSTD_c_strategy. + * 1 means no splitting. + * Then, values from 2 to 6 are sorted in increasing cpu load order. + * + * Note that currently the first block is never split, + * to ensure expansion guarantees in presence of incompressible data. + */ +#define ZSTD_BLOCKSPLITTER_LEVEL_MAX 6 +#define ZSTD_c_blockSplitterLevel ZSTD_c_experimentalParam20 + +/* ZSTD_c_splitAfterSequences + * This is a stronger splitter algorithm, + * based on actual sequences previously produced by the selected parser. + * It's also slower, and as a consequence, mostly used for high compression levels. + * While the post-splitter does overlap with the pre-splitter, + * both can nonetheless be combined, + * notably with ZSTD_c_blockSplitterLevel at ZSTD_BLOCKSPLITTER_LEVEL_MAX, + * resulting in higher compression ratio than just one of them. + * + * Default is ZSTD_ps_auto. + * Set to ZSTD_ps_disable to never use block splitter. + * Set to ZSTD_ps_enable to always use block splitter. + * + * By default, in ZSTD_ps_auto, the library will decide at runtime whether to use + * block splitting based on the compression parameters. + */ +#define ZSTD_c_splitAfterSequences ZSTD_c_experimentalParam13 + +/* ZSTD_c_useRowMatchFinder + * Controlled with ZSTD_ParamSwitch_e enum. + * Default is ZSTD_ps_auto. + * Set to ZSTD_ps_disable to never use row-based matchfinder. + * Set to ZSTD_ps_enable to force usage of row-based matchfinder. + * + * By default, in ZSTD_ps_auto, the library will decide at runtime whether to use + * the row-based matchfinder based on support for SIMD instructions and the window log. + * Note that this only pertains to compression strategies: greedy, lazy, and lazy2 + */ +#define ZSTD_c_useRowMatchFinder ZSTD_c_experimentalParam14 + +/* ZSTD_c_deterministicRefPrefix + * Default is 0 == disabled. Set to 1 to enable. + * + * Zstd produces different results for prefix compression when the prefix is + * directly adjacent to the data about to be compressed vs. when it isn't. + * This is because zstd detects that the two buffers are contiguous and it can + * use a more efficient match finding algorithm. However, this produces different + * results than when the two buffers are non-contiguous. This flag forces zstd + * to always load the prefix in non-contiguous mode, even if it happens to be + * adjacent to the data, to guarantee determinism. + * + * If you really care about determinism when using a dictionary or prefix, + * like when doing delta compression, you should select this option. It comes + * at a speed penalty of about ~2.5% if the dictionary and data happened to be + * contiguous, and is free if they weren't contiguous. We don't expect that + * intentionally making the dictionary and data contiguous will be worth the + * cost to memcpy() the data. + */ +#define ZSTD_c_deterministicRefPrefix ZSTD_c_experimentalParam15 + +/* ZSTD_c_prefetchCDictTables + * Controlled with ZSTD_ParamSwitch_e enum. Default is ZSTD_ps_auto. + * + * In some situations, zstd uses CDict tables in-place rather than copying them + * into the working context. (See docs on ZSTD_dictAttachPref_e above for details). + * In such situations, compression speed is seriously impacted when CDict tables are + * "cold" (outside CPU cache). This parameter instructs zstd to prefetch CDict tables + * when they are used in-place. + * + * For sufficiently small inputs, the cost of the prefetch will outweigh the benefit. + * For sufficiently large inputs, zstd will by default memcpy() CDict tables + * into the working context, so there is no need to prefetch. This parameter is + * targeted at a middle range of input sizes, where a prefetch is cheap enough to be + * useful but memcpy() is too expensive. The exact range of input sizes where this + * makes sense is best determined by careful experimentation. + * + * Note: for this parameter, ZSTD_ps_auto is currently equivalent to ZSTD_ps_disable, + * but in the future zstd may conditionally enable this feature via an auto-detection + * heuristic for cold CDicts. + * Use ZSTD_ps_disable to opt out of prefetching under any circumstances. + */ +#define ZSTD_c_prefetchCDictTables ZSTD_c_experimentalParam16 + +/* ZSTD_c_enableSeqProducerFallback + * Allowed values are 0 (disable) and 1 (enable). The default setting is 0. + * + * Controls whether zstd will fall back to an internal sequence producer if an + * external sequence producer is registered and returns an error code. This fallback + * is block-by-block: the internal sequence producer will only be called for blocks + * where the external sequence producer returns an error code. Fallback parsing will + * follow any other cParam settings, such as compression level, the same as in a + * normal (fully-internal) compression operation. + * + * The user is strongly encouraged to read the full Block-Level Sequence Producer API + * documentation (below) before setting this parameter. */ +#define ZSTD_c_enableSeqProducerFallback ZSTD_c_experimentalParam17 + +/* ZSTD_c_maxBlockSize + * Allowed values are between 1KB and ZSTD_BLOCKSIZE_MAX (128KB). + * The default is ZSTD_BLOCKSIZE_MAX, and setting to 0 will set to the default. + * + * This parameter can be used to set an upper bound on the blocksize + * that overrides the default ZSTD_BLOCKSIZE_MAX. It cannot be used to set upper + * bounds greater than ZSTD_BLOCKSIZE_MAX or bounds lower than 1KB (will make + * compressBound() inaccurate). Only currently meant to be used for testing. + */ +#define ZSTD_c_maxBlockSize ZSTD_c_experimentalParam18 + +/* ZSTD_c_repcodeResolution + * This parameter only has an effect if ZSTD_c_blockDelimiters is + * set to ZSTD_sf_explicitBlockDelimiters (may change in the future). + * + * This parameter affects how zstd parses external sequences, + * provided via the ZSTD_compressSequences*() API + * or from an external block-level sequence producer. + * + * If set to ZSTD_ps_enable, the library will check for repeated offsets within + * external sequences, even if those repcodes are not explicitly indicated in + * the "rep" field. Note that this is the only way to exploit repcode matches + * while using compressSequences*() or an external sequence producer, since zstd + * currently ignores the "rep" field of external sequences. + * + * If set to ZSTD_ps_disable, the library will not exploit repeated offsets in + * external sequences, regardless of whether the "rep" field has been set. This + * reduces sequence compression overhead by about 25% while sacrificing some + * compression ratio. + * + * The default value is ZSTD_ps_auto, for which the library will enable/disable + * based on compression level (currently: level<10 disables, level>=10 enables). + */ +#define ZSTD_c_repcodeResolution ZSTD_c_experimentalParam19 +#define ZSTD_c_searchForExternalRepcodes ZSTD_c_experimentalParam19 /* older name */ + + +/*! ZSTD_CCtx_getParameter() : + * Get the requested compression parameter value, selected by enum ZSTD_cParameter, + * and store it into int* value. + * @return : 0, or an error code (which can be tested with ZSTD_isError()). + */ +ZSTDLIB_STATIC_API size_t ZSTD_CCtx_getParameter(const ZSTD_CCtx* cctx, ZSTD_cParameter param, int* value); + + +/*! ZSTD_CCtx_params : + * Quick howto : + * - ZSTD_createCCtxParams() : Create a ZSTD_CCtx_params structure + * - ZSTD_CCtxParams_setParameter() : Push parameters one by one into + * an existing ZSTD_CCtx_params structure. + * This is similar to + * ZSTD_CCtx_setParameter(). + * - ZSTD_CCtx_setParametersUsingCCtxParams() : Apply parameters to + * an existing CCtx. + * These parameters will be applied to + * all subsequent frames. + * - ZSTD_compressStream2() : Do compression using the CCtx. + * - ZSTD_freeCCtxParams() : Free the memory, accept NULL pointer. + * + * This can be used with ZSTD_estimateCCtxSize_advanced_usingCCtxParams() + * for static allocation of CCtx for single-threaded compression. + */ +ZSTDLIB_STATIC_API ZSTD_CCtx_params* ZSTD_createCCtxParams(void); +ZSTDLIB_STATIC_API size_t ZSTD_freeCCtxParams(ZSTD_CCtx_params* params); /* accept NULL pointer */ + +/*! ZSTD_CCtxParams_reset() : + * Reset params to default values. + */ +ZSTDLIB_STATIC_API size_t ZSTD_CCtxParams_reset(ZSTD_CCtx_params* params); + +/*! ZSTD_CCtxParams_init() : + * Initializes the compression parameters of cctxParams according to + * compression level. All other parameters are reset to their default values. + */ +ZSTDLIB_STATIC_API size_t ZSTD_CCtxParams_init(ZSTD_CCtx_params* cctxParams, int compressionLevel); + +/*! ZSTD_CCtxParams_init_advanced() : + * Initializes the compression and frame parameters of cctxParams according to + * params. All other parameters are reset to their default values. + */ +ZSTDLIB_STATIC_API size_t ZSTD_CCtxParams_init_advanced(ZSTD_CCtx_params* cctxParams, ZSTD_parameters params); + +/*! ZSTD_CCtxParams_setParameter() : Requires v1.4.0+ + * Similar to ZSTD_CCtx_setParameter. + * Set one compression parameter, selected by enum ZSTD_cParameter. + * Parameters must be applied to a ZSTD_CCtx using + * ZSTD_CCtx_setParametersUsingCCtxParams(). + * @result : a code representing success or failure (which can be tested with + * ZSTD_isError()). + */ +ZSTDLIB_STATIC_API size_t ZSTD_CCtxParams_setParameter(ZSTD_CCtx_params* params, ZSTD_cParameter param, int value); + +/*! ZSTD_CCtxParams_getParameter() : + * Similar to ZSTD_CCtx_getParameter. + * Get the requested value of one compression parameter, selected by enum ZSTD_cParameter. + * @result : 0, or an error code (which can be tested with ZSTD_isError()). + */ +ZSTDLIB_STATIC_API size_t ZSTD_CCtxParams_getParameter(const ZSTD_CCtx_params* params, ZSTD_cParameter param, int* value); + +/*! ZSTD_CCtx_setParametersUsingCCtxParams() : + * Apply a set of ZSTD_CCtx_params to the compression context. + * This can be done even after compression is started, + * if nbWorkers==0, this will have no impact until a new compression is started. + * if nbWorkers>=1, new parameters will be picked up at next job, + * with a few restrictions (windowLog, pledgedSrcSize, nbWorkers, jobSize, and overlapLog are not updated). + */ +ZSTDLIB_STATIC_API size_t ZSTD_CCtx_setParametersUsingCCtxParams( + ZSTD_CCtx* cctx, const ZSTD_CCtx_params* params); + +/*! ZSTD_compressStream2_simpleArgs() : + * Same as ZSTD_compressStream2(), + * but using only integral types as arguments. + * This variant might be helpful for binders from dynamic languages + * which have troubles handling structures containing memory pointers. + */ +ZSTDLIB_STATIC_API size_t ZSTD_compressStream2_simpleArgs ( + ZSTD_CCtx* cctx, + void* dst, size_t dstCapacity, size_t* dstPos, + const void* src, size_t srcSize, size_t* srcPos, + ZSTD_EndDirective endOp); + + +/*************************************** +* Advanced decompression functions +***************************************/ + +/*! ZSTD_isFrame() : + * Tells if the content of `buffer` starts with a valid Frame Identifier. + * Note : Frame Identifier is 4 bytes. If `size < 4`, @return will always be 0. + * Note 2 : Legacy Frame Identifiers are considered valid only if Legacy Support is enabled. + * Note 3 : Skippable Frame Identifiers are considered valid. */ +ZSTDLIB_STATIC_API unsigned ZSTD_isFrame(const void* buffer, size_t size); + +/*! ZSTD_createDDict_byReference() : + * Create a digested dictionary, ready to start decompression operation without startup delay. + * Dictionary content is referenced, and therefore stays in dictBuffer. + * It is important that dictBuffer outlives DDict, + * it must remain read accessible throughout the lifetime of DDict */ +ZSTDLIB_STATIC_API ZSTD_DDict* ZSTD_createDDict_byReference(const void* dictBuffer, size_t dictSize); + +/*! ZSTD_DCtx_loadDictionary_byReference() : + * Same as ZSTD_DCtx_loadDictionary(), + * but references `dict` content instead of copying it into `dctx`. + * This saves memory if `dict` remains around., + * However, it's imperative that `dict` remains accessible (and unmodified) while being used, so it must outlive decompression. */ +ZSTDLIB_STATIC_API size_t ZSTD_DCtx_loadDictionary_byReference(ZSTD_DCtx* dctx, const void* dict, size_t dictSize); + +/*! ZSTD_DCtx_loadDictionary_advanced() : + * Same as ZSTD_DCtx_loadDictionary(), + * but gives direct control over + * how to load the dictionary (by copy ? by reference ?) + * and how to interpret it (automatic ? force raw mode ? full mode only ?). */ +ZSTDLIB_STATIC_API size_t ZSTD_DCtx_loadDictionary_advanced(ZSTD_DCtx* dctx, const void* dict, size_t dictSize, ZSTD_dictLoadMethod_e dictLoadMethod, ZSTD_dictContentType_e dictContentType); + +/*! ZSTD_DCtx_refPrefix_advanced() : + * Same as ZSTD_DCtx_refPrefix(), but gives finer control over + * how to interpret prefix content (automatic ? force raw mode (default) ? full mode only ?) */ +ZSTDLIB_STATIC_API size_t ZSTD_DCtx_refPrefix_advanced(ZSTD_DCtx* dctx, const void* prefix, size_t prefixSize, ZSTD_dictContentType_e dictContentType); + +/*! ZSTD_DCtx_setMaxWindowSize() : + * Refuses allocating internal buffers for frames requiring a window size larger than provided limit. + * This protects a decoder context from reserving too much memory for itself (potential attack scenario). + * This parameter is only useful in streaming mode, since no internal buffer is allocated in single-pass mode. + * By default, a decompression context accepts all window sizes <= (1 << ZSTD_WINDOWLOG_LIMIT_DEFAULT) + * @return : 0, or an error code (which can be tested using ZSTD_isError()). + */ +ZSTDLIB_STATIC_API size_t ZSTD_DCtx_setMaxWindowSize(ZSTD_DCtx* dctx, size_t maxWindowSize); + +/*! ZSTD_DCtx_getParameter() : + * Get the requested decompression parameter value, selected by enum ZSTD_dParameter, + * and store it into int* value. + * @return : 0, or an error code (which can be tested with ZSTD_isError()). + */ +ZSTDLIB_STATIC_API size_t ZSTD_DCtx_getParameter(ZSTD_DCtx* dctx, ZSTD_dParameter param, int* value); + +/* ZSTD_d_format + * experimental parameter, + * allowing selection between ZSTD_format_e input compression formats + */ +#define ZSTD_d_format ZSTD_d_experimentalParam1 +/* ZSTD_d_stableOutBuffer + * Experimental parameter. + * Default is 0 == disabled. Set to 1 to enable. + * + * Tells the decompressor that the ZSTD_outBuffer will ALWAYS be the same + * between calls, except for the modifications that zstd makes to pos (the + * caller must not modify pos). This is checked by the decompressor, and + * decompression will fail if it ever changes. Therefore the ZSTD_outBuffer + * MUST be large enough to fit the entire decompressed frame. This will be + * checked when the frame content size is known. The data in the ZSTD_outBuffer + * in the range [dst, dst + pos) MUST not be modified during decompression + * or you will get data corruption. + * + * When this flag is enabled zstd won't allocate an output buffer, because + * it can write directly to the ZSTD_outBuffer, but it will still allocate + * an input buffer large enough to fit any compressed block. This will also + * avoid the memcpy() from the internal output buffer to the ZSTD_outBuffer. + * If you need to avoid the input buffer allocation use the buffer-less + * streaming API. + * + * NOTE: So long as the ZSTD_outBuffer always points to valid memory, using + * this flag is ALWAYS memory safe, and will never access out-of-bounds + * memory. However, decompression WILL fail if you violate the preconditions. + * + * WARNING: The data in the ZSTD_outBuffer in the range [dst, dst + pos) MUST + * not be modified during decompression or you will get data corruption. This + * is because zstd needs to reference data in the ZSTD_outBuffer to regenerate + * matches. Normally zstd maintains its own buffer for this purpose, but passing + * this flag tells zstd to use the user provided buffer. + */ +#define ZSTD_d_stableOutBuffer ZSTD_d_experimentalParam2 + +/* ZSTD_d_forceIgnoreChecksum + * Experimental parameter. + * Default is 0 == disabled. Set to 1 to enable + * + * Tells the decompressor to skip checksum validation during decompression, regardless + * of whether checksumming was specified during compression. This offers some + * slight performance benefits, and may be useful for debugging. + * Param has values of type ZSTD_forceIgnoreChecksum_e + */ +#define ZSTD_d_forceIgnoreChecksum ZSTD_d_experimentalParam3 + +/* ZSTD_d_refMultipleDDicts + * Experimental parameter. + * Default is 0 == disabled. Set to 1 to enable + * + * If enabled and dctx is allocated on the heap, then additional memory will be allocated + * to store references to multiple ZSTD_DDict. That is, multiple calls of ZSTD_refDDict() + * using a given ZSTD_DCtx, rather than overwriting the previous DDict reference, will instead + * store all references. At decompression time, the appropriate dictID is selected + * from the set of DDicts based on the dictID in the frame. + * + * Usage is simply calling ZSTD_refDDict() on multiple dict buffers. + * + * Param has values of byte ZSTD_refMultipleDDicts_e + * + * WARNING: Enabling this parameter and calling ZSTD_DCtx_refDDict(), will trigger memory + * allocation for the hash table. ZSTD_freeDCtx() also frees this memory. + * Memory is allocated as per ZSTD_DCtx::customMem. + * + * Although this function allocates memory for the table, the user is still responsible for + * memory management of the underlying ZSTD_DDict* themselves. + */ +#define ZSTD_d_refMultipleDDicts ZSTD_d_experimentalParam4 + +/* ZSTD_d_disableHuffmanAssembly + * Set to 1 to disable the Huffman assembly implementation. + * The default value is 0, which allows zstd to use the Huffman assembly + * implementation if available. + * + * This parameter can be used to disable Huffman assembly at runtime. + * If you want to disable it at compile time you can define the macro + * ZSTD_DISABLE_ASM. + */ +#define ZSTD_d_disableHuffmanAssembly ZSTD_d_experimentalParam5 + +/* ZSTD_d_maxBlockSize + * Allowed values are between 1KB and ZSTD_BLOCKSIZE_MAX (128KB). + * The default is ZSTD_BLOCKSIZE_MAX, and setting to 0 will set to the default. + * + * Forces the decompressor to reject blocks whose content size is + * larger than the configured maxBlockSize. When maxBlockSize is + * larger than the windowSize, the windowSize is used instead. + * This saves memory on the decoder when you know all blocks are small. + * + * This option is typically used in conjunction with ZSTD_c_maxBlockSize. + * + * WARNING: This causes the decoder to reject otherwise valid frames + * that have block sizes larger than the configured maxBlockSize. + */ +#define ZSTD_d_maxBlockSize ZSTD_d_experimentalParam6 + + +/*! ZSTD_DCtx_setFormat() : + * This function is REDUNDANT. Prefer ZSTD_DCtx_setParameter(). + * Instruct the decoder context about what kind of data to decode next. + * This instruction is mandatory to decode data without a fully-formed header, + * such ZSTD_f_zstd1_magicless for example. + * @return : 0, or an error code (which can be tested using ZSTD_isError()). */ +ZSTD_DEPRECATED("use ZSTD_DCtx_setParameter() instead") +ZSTDLIB_STATIC_API +size_t ZSTD_DCtx_setFormat(ZSTD_DCtx* dctx, ZSTD_format_e format); + +/*! ZSTD_decompressStream_simpleArgs() : + * Same as ZSTD_decompressStream(), + * but using only integral types as arguments. + * This can be helpful for binders from dynamic languages + * which have troubles handling structures containing memory pointers. + */ +ZSTDLIB_STATIC_API size_t ZSTD_decompressStream_simpleArgs ( + ZSTD_DCtx* dctx, + void* dst, size_t dstCapacity, size_t* dstPos, + const void* src, size_t srcSize, size_t* srcPos); + + +/******************************************************************** +* Advanced streaming functions +* Warning : most of these functions are now redundant with the Advanced API. +* Once Advanced API reaches "stable" status, +* redundant functions will be deprecated, and then at some point removed. +********************************************************************/ + +/*===== Advanced Streaming compression functions =====*/ + +/*! ZSTD_initCStream_srcSize() : + * This function is DEPRECATED, and equivalent to: + * ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only); + * ZSTD_CCtx_refCDict(zcs, NULL); // clear the dictionary (if any) + * ZSTD_CCtx_setParameter(zcs, ZSTD_c_compressionLevel, compressionLevel); + * ZSTD_CCtx_setPledgedSrcSize(zcs, pledgedSrcSize); + * + * pledgedSrcSize must be correct. If it is not known at init time, use + * ZSTD_CONTENTSIZE_UNKNOWN. Note that, for compatibility with older programs, + * "0" also disables frame content size field. It may be enabled in the future. + * This prototype will generate compilation warnings. + */ +ZSTD_DEPRECATED("use ZSTD_CCtx_reset, see zstd.h for detailed instructions") +ZSTDLIB_STATIC_API +size_t ZSTD_initCStream_srcSize(ZSTD_CStream* zcs, + int compressionLevel, + unsigned long long pledgedSrcSize); + +/*! ZSTD_initCStream_usingDict() : + * This function is DEPRECATED, and is equivalent to: + * ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only); + * ZSTD_CCtx_setParameter(zcs, ZSTD_c_compressionLevel, compressionLevel); + * ZSTD_CCtx_loadDictionary(zcs, dict, dictSize); + * + * Creates of an internal CDict (incompatible with static CCtx), except if + * dict == NULL or dictSize < 8, in which case no dict is used. + * Note: dict is loaded with ZSTD_dct_auto (treated as a full zstd dictionary if + * it begins with ZSTD_MAGIC_DICTIONARY, else as raw content) and ZSTD_dlm_byCopy. + * This prototype will generate compilation warnings. + */ +ZSTD_DEPRECATED("use ZSTD_CCtx_reset, see zstd.h for detailed instructions") +ZSTDLIB_STATIC_API +size_t ZSTD_initCStream_usingDict(ZSTD_CStream* zcs, + const void* dict, size_t dictSize, + int compressionLevel); + +/*! ZSTD_initCStream_advanced() : + * This function is DEPRECATED, and is equivalent to: + * ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only); + * ZSTD_CCtx_setParams(zcs, params); + * ZSTD_CCtx_setPledgedSrcSize(zcs, pledgedSrcSize); + * ZSTD_CCtx_loadDictionary(zcs, dict, dictSize); + * + * dict is loaded with ZSTD_dct_auto and ZSTD_dlm_byCopy. + * pledgedSrcSize must be correct. + * If srcSize is not known at init time, use value ZSTD_CONTENTSIZE_UNKNOWN. + * This prototype will generate compilation warnings. + */ +ZSTD_DEPRECATED("use ZSTD_CCtx_reset, see zstd.h for detailed instructions") +ZSTDLIB_STATIC_API +size_t ZSTD_initCStream_advanced(ZSTD_CStream* zcs, + const void* dict, size_t dictSize, + ZSTD_parameters params, + unsigned long long pledgedSrcSize); + +/*! ZSTD_initCStream_usingCDict() : + * This function is DEPRECATED, and equivalent to: + * ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only); + * ZSTD_CCtx_refCDict(zcs, cdict); + * + * note : cdict will just be referenced, and must outlive compression session + * This prototype will generate compilation warnings. + */ +ZSTD_DEPRECATED("use ZSTD_CCtx_reset and ZSTD_CCtx_refCDict, see zstd.h for detailed instructions") +ZSTDLIB_STATIC_API +size_t ZSTD_initCStream_usingCDict(ZSTD_CStream* zcs, const ZSTD_CDict* cdict); + +/*! ZSTD_initCStream_usingCDict_advanced() : + * This function is DEPRECATED, and is equivalent to: + * ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only); + * ZSTD_CCtx_setFParams(zcs, fParams); + * ZSTD_CCtx_setPledgedSrcSize(zcs, pledgedSrcSize); + * ZSTD_CCtx_refCDict(zcs, cdict); + * + * same as ZSTD_initCStream_usingCDict(), with control over frame parameters. + * pledgedSrcSize must be correct. If srcSize is not known at init time, use + * value ZSTD_CONTENTSIZE_UNKNOWN. + * This prototype will generate compilation warnings. + */ +ZSTD_DEPRECATED("use ZSTD_CCtx_reset and ZSTD_CCtx_refCDict, see zstd.h for detailed instructions") +ZSTDLIB_STATIC_API +size_t ZSTD_initCStream_usingCDict_advanced(ZSTD_CStream* zcs, + const ZSTD_CDict* cdict, + ZSTD_frameParameters fParams, + unsigned long long pledgedSrcSize); + +/*! ZSTD_resetCStream() : + * This function is DEPRECATED, and is equivalent to: + * ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only); + * ZSTD_CCtx_setPledgedSrcSize(zcs, pledgedSrcSize); + * Note: ZSTD_resetCStream() interprets pledgedSrcSize == 0 as ZSTD_CONTENTSIZE_UNKNOWN, but + * ZSTD_CCtx_setPledgedSrcSize() does not do the same, so ZSTD_CONTENTSIZE_UNKNOWN must be + * explicitly specified. + * + * start a new frame, using same parameters from previous frame. + * This is typically useful to skip dictionary loading stage, since it will reuse it in-place. + * Note that zcs must be init at least once before using ZSTD_resetCStream(). + * If pledgedSrcSize is not known at reset time, use macro ZSTD_CONTENTSIZE_UNKNOWN. + * If pledgedSrcSize > 0, its value must be correct, as it will be written in header, and controlled at the end. + * For the time being, pledgedSrcSize==0 is interpreted as "srcSize unknown" for compatibility with older programs, + * but it will change to mean "empty" in future version, so use macro ZSTD_CONTENTSIZE_UNKNOWN instead. + * @return : 0, or an error code (which can be tested using ZSTD_isError()) + * This prototype will generate compilation warnings. + */ +ZSTD_DEPRECATED("use ZSTD_CCtx_reset, see zstd.h for detailed instructions") +ZSTDLIB_STATIC_API +size_t ZSTD_resetCStream(ZSTD_CStream* zcs, unsigned long long pledgedSrcSize); + + +typedef struct { + unsigned long long ingested; /* nb input bytes read and buffered */ + unsigned long long consumed; /* nb input bytes actually compressed */ + unsigned long long produced; /* nb of compressed bytes generated and buffered */ + unsigned long long flushed; /* nb of compressed bytes flushed : not provided; can be tracked from caller side */ + unsigned currentJobID; /* MT only : latest started job nb */ + unsigned nbActiveWorkers; /* MT only : nb of workers actively compressing at probe time */ +} ZSTD_frameProgression; + +/* ZSTD_getFrameProgression() : + * tells how much data has been ingested (read from input) + * consumed (input actually compressed) and produced (output) for current frame. + * Note : (ingested - consumed) is amount of input data buffered internally, not yet compressed. + * Aggregates progression inside active worker threads. + */ +ZSTDLIB_STATIC_API ZSTD_frameProgression ZSTD_getFrameProgression(const ZSTD_CCtx* cctx); + +/*! ZSTD_toFlushNow() : + * Tell how many bytes are ready to be flushed immediately. + * Useful for multithreading scenarios (nbWorkers >= 1). + * Probe the oldest active job, defined as oldest job not yet entirely flushed, + * and check its output buffer. + * @return : amount of data stored in oldest job and ready to be flushed immediately. + * if @return == 0, it means either : + * + there is no active job (could be checked with ZSTD_frameProgression()), or + * + oldest job is still actively compressing data, + * but everything it has produced has also been flushed so far, + * therefore flush speed is limited by production speed of oldest job + * irrespective of the speed of concurrent (and newer) jobs. + */ +ZSTDLIB_STATIC_API size_t ZSTD_toFlushNow(ZSTD_CCtx* cctx); + + +/*===== Advanced Streaming decompression functions =====*/ + +/*! + * This function is deprecated, and is equivalent to: + * + * ZSTD_DCtx_reset(zds, ZSTD_reset_session_only); + * ZSTD_DCtx_loadDictionary(zds, dict, dictSize); + * + * note: no dictionary will be used if dict == NULL or dictSize < 8 + */ +ZSTD_DEPRECATED("use ZSTD_DCtx_reset + ZSTD_DCtx_loadDictionary, see zstd.h for detailed instructions") +ZSTDLIB_STATIC_API size_t ZSTD_initDStream_usingDict(ZSTD_DStream* zds, const void* dict, size_t dictSize); + +/*! + * This function is deprecated, and is equivalent to: + * + * ZSTD_DCtx_reset(zds, ZSTD_reset_session_only); + * ZSTD_DCtx_refDDict(zds, ddict); + * + * note : ddict is referenced, it must outlive decompression session + */ +ZSTD_DEPRECATED("use ZSTD_DCtx_reset + ZSTD_DCtx_refDDict, see zstd.h for detailed instructions") +ZSTDLIB_STATIC_API size_t ZSTD_initDStream_usingDDict(ZSTD_DStream* zds, const ZSTD_DDict* ddict); + +/*! + * This function is deprecated, and is equivalent to: + * + * ZSTD_DCtx_reset(zds, ZSTD_reset_session_only); + * + * reuse decompression parameters from previous init; saves dictionary loading + */ +ZSTD_DEPRECATED("use ZSTD_DCtx_reset, see zstd.h for detailed instructions") +ZSTDLIB_STATIC_API size_t ZSTD_resetDStream(ZSTD_DStream* zds); + + +/* ********************* BLOCK-LEVEL SEQUENCE PRODUCER API ********************* + * + * *** OVERVIEW *** + * The Block-Level Sequence Producer API allows users to provide their own custom + * sequence producer which libzstd invokes to process each block. The produced list + * of sequences (literals and matches) is then post-processed by libzstd to produce + * valid compressed blocks. + * + * This block-level offload API is a more granular complement of the existing + * frame-level offload API compressSequences() (introduced in v1.5.1). It offers + * an easier migration story for applications already integrated with libzstd: the + * user application continues to invoke the same compression functions + * ZSTD_compress2() or ZSTD_compressStream2() as usual, and transparently benefits + * from the specific advantages of the external sequence producer. For example, + * the sequence producer could be tuned to take advantage of known characteristics + * of the input, to offer better speed / ratio, or could leverage hardware + * acceleration not available within libzstd itself. + * + * See contrib/externalSequenceProducer for an example program employing the + * Block-Level Sequence Producer API. + * + * *** USAGE *** + * The user is responsible for implementing a function of type + * ZSTD_sequenceProducer_F. For each block, zstd will pass the following + * arguments to the user-provided function: + * + * - sequenceProducerState: a pointer to a user-managed state for the sequence + * producer. + * + * - outSeqs, outSeqsCapacity: an output buffer for the sequence producer. + * outSeqsCapacity is guaranteed >= ZSTD_sequenceBound(srcSize). The memory + * backing outSeqs is managed by the CCtx. + * + * - src, srcSize: an input buffer for the sequence producer to parse. + * srcSize is guaranteed to be <= ZSTD_BLOCKSIZE_MAX. + * + * - dict, dictSize: a history buffer, which may be empty, which the sequence + * producer may reference as it parses the src buffer. Currently, zstd will + * always pass dictSize == 0 into external sequence producers, but this will + * change in the future. + * + * - compressionLevel: a signed integer representing the zstd compression level + * set by the user for the current operation. The sequence producer may choose + * to use this information to change its compression strategy and speed/ratio + * tradeoff. Note: the compression level does not reflect zstd parameters set + * through the advanced API. + * + * - windowSize: a size_t representing the maximum allowed offset for external + * sequences. Note that sequence offsets are sometimes allowed to exceed the + * windowSize if a dictionary is present, see doc/zstd_compression_format.md + * for details. + * + * The user-provided function shall return a size_t representing the number of + * sequences written to outSeqs. This return value will be treated as an error + * code if it is greater than outSeqsCapacity. The return value must be non-zero + * if srcSize is non-zero. The ZSTD_SEQUENCE_PRODUCER_ERROR macro is provided + * for convenience, but any value greater than outSeqsCapacity will be treated as + * an error code. + * + * If the user-provided function does not return an error code, the sequences + * written to outSeqs must be a valid parse of the src buffer. Data corruption may + * occur if the parse is not valid. A parse is defined to be valid if the + * following conditions hold: + * - The sum of matchLengths and literalLengths must equal srcSize. + * - All sequences in the parse, except for the final sequence, must have + * matchLength >= ZSTD_MINMATCH_MIN. The final sequence must have + * matchLength >= ZSTD_MINMATCH_MIN or matchLength == 0. + * - All offsets must respect the windowSize parameter as specified in + * doc/zstd_compression_format.md. + * - If the final sequence has matchLength == 0, it must also have offset == 0. + * + * zstd will only validate these conditions (and fail compression if they do not + * hold) if the ZSTD_c_validateSequences cParam is enabled. Note that sequence + * validation has a performance cost. + * + * If the user-provided function returns an error, zstd will either fall back + * to an internal sequence producer or fail the compression operation. The user can + * choose between the two behaviors by setting the ZSTD_c_enableSeqProducerFallback + * cParam. Fallback compression will follow any other cParam settings, such as + * compression level, the same as in a normal compression operation. + * + * The user shall instruct zstd to use a particular ZSTD_sequenceProducer_F + * function by calling + * ZSTD_registerSequenceProducer(cctx, + * sequenceProducerState, + * sequenceProducer) + * This setting will persist until the next parameter reset of the CCtx. + * + * The sequenceProducerState must be initialized by the user before calling + * ZSTD_registerSequenceProducer(). The user is responsible for destroying the + * sequenceProducerState. + * + * *** LIMITATIONS *** + * This API is compatible with all zstd compression APIs which respect advanced parameters. + * However, there are three limitations: + * + * First, the ZSTD_c_enableLongDistanceMatching cParam is not currently supported. + * COMPRESSION WILL FAIL if it is enabled and the user tries to compress with a block-level + * external sequence producer. + * - Note that ZSTD_c_enableLongDistanceMatching is auto-enabled by default in some + * cases (see its documentation for details). Users must explicitly set + * ZSTD_c_enableLongDistanceMatching to ZSTD_ps_disable in such cases if an external + * sequence producer is registered. + * - As of this writing, ZSTD_c_enableLongDistanceMatching is disabled by default + * whenever ZSTD_c_windowLog < 128MB, but that's subject to change. Users should + * check the docs on ZSTD_c_enableLongDistanceMatching whenever the Block-Level Sequence + * Producer API is used in conjunction with advanced settings (like ZSTD_c_windowLog). + * + * Second, history buffers are not currently supported. Concretely, zstd will always pass + * dictSize == 0 to the external sequence producer (for now). This has two implications: + * - Dictionaries are not currently supported. Compression will *not* fail if the user + * references a dictionary, but the dictionary won't have any effect. + * - Stream history is not currently supported. All advanced compression APIs, including + * streaming APIs, work with external sequence producers, but each block is treated as + * an independent chunk without history from previous blocks. + * + * Third, multi-threading within a single compression is not currently supported. In other words, + * COMPRESSION WILL FAIL if ZSTD_c_nbWorkers > 0 and an external sequence producer is registered. + * Multi-threading across compressions is fine: simply create one CCtx per thread. + * + * Long-term, we plan to overcome all three limitations. There is no technical blocker to + * overcoming them. It is purely a question of engineering effort. + */ + +#define ZSTD_SEQUENCE_PRODUCER_ERROR ((size_t)(-1)) + +typedef size_t (*ZSTD_sequenceProducer_F) ( + void* sequenceProducerState, + ZSTD_Sequence* outSeqs, size_t outSeqsCapacity, + const void* src, size_t srcSize, + const void* dict, size_t dictSize, + int compressionLevel, + size_t windowSize +); + +/*! ZSTD_registerSequenceProducer() : + * Instruct zstd to use a block-level external sequence producer function. + * + * The sequenceProducerState must be initialized by the caller, and the caller is + * responsible for managing its lifetime. This parameter is sticky across + * compressions. It will remain set until the user explicitly resets compression + * parameters. + * + * Sequence producer registration is considered to be an "advanced parameter", + * part of the "advanced API". This means it will only have an effect on compression + * APIs which respect advanced parameters, such as compress2() and compressStream2(). + * Older compression APIs such as compressCCtx(), which predate the introduction of + * "advanced parameters", will ignore any external sequence producer setting. + * + * The sequence producer can be "cleared" by registering a NULL function pointer. This + * removes all limitations described above in the "LIMITATIONS" section of the API docs. + * + * The user is strongly encouraged to read the full API documentation (above) before + * calling this function. */ +ZSTDLIB_STATIC_API void +ZSTD_registerSequenceProducer( + ZSTD_CCtx* cctx, + void* sequenceProducerState, + ZSTD_sequenceProducer_F sequenceProducer +); + +/*! ZSTD_CCtxParams_registerSequenceProducer() : + * Same as ZSTD_registerSequenceProducer(), but operates on ZSTD_CCtx_params. + * This is used for accurate size estimation with ZSTD_estimateCCtxSize_usingCCtxParams(), + * which is needed when creating a ZSTD_CCtx with ZSTD_initStaticCCtx(). + * + * If you are using the external sequence producer API in a scenario where ZSTD_initStaticCCtx() + * is required, then this function is for you. Otherwise, you probably don't need it. + * + * See tests/zstreamtest.c for example usage. */ +ZSTDLIB_STATIC_API void +ZSTD_CCtxParams_registerSequenceProducer( + ZSTD_CCtx_params* params, + void* sequenceProducerState, + ZSTD_sequenceProducer_F sequenceProducer +); + + +/********************************************************************* +* Buffer-less and synchronous inner streaming functions (DEPRECATED) +* +* This API is deprecated, and will be removed in a future version. +* It allows streaming (de)compression with user allocated buffers. +* However, it is hard to use, and not as well tested as the rest of +* our API. +* +* Please use the normal streaming API instead: ZSTD_compressStream2, +* and ZSTD_decompressStream. +* If there is functionality that you need, but it doesn't provide, +* please open an issue on our GitHub. +********************************************************************* */ + +/** + Buffer-less streaming compression (synchronous mode) + + A ZSTD_CCtx object is required to track streaming operations. + Use ZSTD_createCCtx() / ZSTD_freeCCtx() to manage resource. + ZSTD_CCtx object can be reused multiple times within successive compression operations. + + Start by initializing a context. + Use ZSTD_compressBegin(), or ZSTD_compressBegin_usingDict() for dictionary compression. + + Then, consume your input using ZSTD_compressContinue(). + There are some important considerations to keep in mind when using this advanced function : + - ZSTD_compressContinue() has no internal buffer. It uses externally provided buffers only. + - Interface is synchronous : input is consumed entirely and produces 1+ compressed blocks. + - Caller must ensure there is enough space in `dst` to store compressed data under worst case scenario. + Worst case evaluation is provided by ZSTD_compressBound(). + ZSTD_compressContinue() doesn't guarantee recover after a failed compression. + - ZSTD_compressContinue() presumes prior input ***is still accessible and unmodified*** (up to maximum distance size, see WindowLog). + It remembers all previous contiguous blocks, plus one separated memory segment (which can itself consists of multiple contiguous blocks) + - ZSTD_compressContinue() detects that prior input has been overwritten when `src` buffer overlaps. + In which case, it will "discard" the relevant memory section from its history. + + Finish a frame with ZSTD_compressEnd(), which will write the last block(s) and optional checksum. + It's possible to use srcSize==0, in which case, it will write a final empty block to end the frame. + Without last block mark, frames are considered unfinished (hence corrupted) by compliant decoders. + + `ZSTD_CCtx` object can be reused (ZSTD_compressBegin()) to compress again. +*/ + +/*===== Buffer-less streaming compression functions =====*/ +ZSTD_DEPRECATED("The buffer-less API is deprecated in favor of the normal streaming API. See docs.") +ZSTDLIB_STATIC_API size_t ZSTD_compressBegin(ZSTD_CCtx* cctx, int compressionLevel); +ZSTD_DEPRECATED("The buffer-less API is deprecated in favor of the normal streaming API. See docs.") +ZSTDLIB_STATIC_API size_t ZSTD_compressBegin_usingDict(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, int compressionLevel); +ZSTD_DEPRECATED("The buffer-less API is deprecated in favor of the normal streaming API. See docs.") +ZSTDLIB_STATIC_API size_t ZSTD_compressBegin_usingCDict(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict); /**< note: fails if cdict==NULL */ + +ZSTD_DEPRECATED("This function will likely be removed in a future release. It is misleading and has very limited utility.") +ZSTDLIB_STATIC_API +size_t ZSTD_copyCCtx(ZSTD_CCtx* cctx, const ZSTD_CCtx* preparedCCtx, unsigned long long pledgedSrcSize); /**< note: if pledgedSrcSize is not known, use ZSTD_CONTENTSIZE_UNKNOWN */ + +ZSTD_DEPRECATED("The buffer-less API is deprecated in favor of the normal streaming API. See docs.") +ZSTDLIB_STATIC_API size_t ZSTD_compressContinue(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize); +ZSTD_DEPRECATED("The buffer-less API is deprecated in favor of the normal streaming API. See docs.") +ZSTDLIB_STATIC_API size_t ZSTD_compressEnd(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize); + +/* The ZSTD_compressBegin_advanced() and ZSTD_compressBegin_usingCDict_advanced() are now DEPRECATED and will generate a compiler warning */ +ZSTD_DEPRECATED("use advanced API to access custom parameters") +ZSTDLIB_STATIC_API +size_t ZSTD_compressBegin_advanced(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, ZSTD_parameters params, unsigned long long pledgedSrcSize); /**< pledgedSrcSize : If srcSize is not known at init time, use ZSTD_CONTENTSIZE_UNKNOWN */ +ZSTD_DEPRECATED("use advanced API to access custom parameters") +ZSTDLIB_STATIC_API +size_t ZSTD_compressBegin_usingCDict_advanced(ZSTD_CCtx* const cctx, const ZSTD_CDict* const cdict, ZSTD_frameParameters const fParams, unsigned long long const pledgedSrcSize); /* compression parameters are already set within cdict. pledgedSrcSize must be correct. If srcSize is not known, use macro ZSTD_CONTENTSIZE_UNKNOWN */ +/** + Buffer-less streaming decompression (synchronous mode) + + A ZSTD_DCtx object is required to track streaming operations. + Use ZSTD_createDCtx() / ZSTD_freeDCtx() to manage it. + A ZSTD_DCtx object can be reused multiple times. + + First typical operation is to retrieve frame parameters, using ZSTD_getFrameHeader(). + Frame header is extracted from the beginning of compressed frame, so providing only the frame's beginning is enough. + Data fragment must be large enough to ensure successful decoding. + `ZSTD_frameHeaderSize_max` bytes is guaranteed to always be large enough. + result : 0 : successful decoding, the `ZSTD_frameHeader` structure is correctly filled. + >0 : `srcSize` is too small, please provide at least result bytes on next attempt. + errorCode, which can be tested using ZSTD_isError(). + + It fills a ZSTD_FrameHeader structure with important information to correctly decode the frame, + such as the dictionary ID, content size, or maximum back-reference distance (`windowSize`). + Note that these values could be wrong, either because of data corruption, or because a 3rd party deliberately spoofs false information. + As a consequence, check that values remain within valid application range. + For example, do not allocate memory blindly, check that `windowSize` is within expectation. + Each application can set its own limits, depending on local restrictions. + For extended interoperability, it is recommended to support `windowSize` of at least 8 MB. + + ZSTD_decompressContinue() needs previous data blocks during decompression, up to `windowSize` bytes. + ZSTD_decompressContinue() is very sensitive to contiguity, + if 2 blocks don't follow each other, make sure that either the compressor breaks contiguity at the same place, + or that previous contiguous segment is large enough to properly handle maximum back-reference distance. + There are multiple ways to guarantee this condition. + + The most memory efficient way is to use a round buffer of sufficient size. + Sufficient size is determined by invoking ZSTD_decodingBufferSize_min(), + which can return an error code if required value is too large for current system (in 32-bits mode). + In a round buffer methodology, ZSTD_decompressContinue() decompresses each block next to previous one, + up to the moment there is not enough room left in the buffer to guarantee decoding another full block, + which maximum size is provided in `ZSTD_frameHeader` structure, field `blockSizeMax`. + At which point, decoding can resume from the beginning of the buffer. + Note that already decoded data stored in the buffer should be flushed before being overwritten. + + There are alternatives possible, for example using two or more buffers of size `windowSize` each, though they consume more memory. + + Finally, if you control the compression process, you can also ignore all buffer size rules, + as long as the encoder and decoder progress in "lock-step", + aka use exactly the same buffer sizes, break contiguity at the same place, etc. + + Once buffers are setup, start decompression, with ZSTD_decompressBegin(). + If decompression requires a dictionary, use ZSTD_decompressBegin_usingDict() or ZSTD_decompressBegin_usingDDict(). + + Then use ZSTD_nextSrcSizeToDecompress() and ZSTD_decompressContinue() alternatively. + ZSTD_nextSrcSizeToDecompress() tells how many bytes to provide as 'srcSize' to ZSTD_decompressContinue(). + ZSTD_decompressContinue() requires this _exact_ amount of bytes, or it will fail. + + result of ZSTD_decompressContinue() is the number of bytes regenerated within 'dst' (necessarily <= dstCapacity). + It can be zero : it just means ZSTD_decompressContinue() has decoded some metadata item. + It can also be an error code, which can be tested with ZSTD_isError(). + + A frame is fully decoded when ZSTD_nextSrcSizeToDecompress() returns zero. + Context can then be reset to start a new decompression. + + Note : it's possible to know if next input to present is a header or a block, using ZSTD_nextInputType(). + This information is not required to properly decode a frame. + + == Special case : skippable frames == + + Skippable frames allow integration of user-defined data into a flow of concatenated frames. + Skippable frames will be ignored (skipped) by decompressor. + The format of skippable frames is as follows : + a) Skippable frame ID - 4 Bytes, Little endian format, any value from 0x184D2A50 to 0x184D2A5F + b) Frame Size - 4 Bytes, Little endian format, unsigned 32-bits + c) Frame Content - any content (User Data) of length equal to Frame Size + For skippable frames ZSTD_getFrameHeader() returns zfhPtr->frameType==ZSTD_skippableFrame. + For skippable frames ZSTD_decompressContinue() always returns 0 : it only skips the content. +*/ + +/*===== Buffer-less streaming decompression functions =====*/ + +ZSTDLIB_STATIC_API size_t ZSTD_decodingBufferSize_min(unsigned long long windowSize, unsigned long long frameContentSize); /**< when frame content size is not known, pass in frameContentSize == ZSTD_CONTENTSIZE_UNKNOWN */ + +ZSTDLIB_STATIC_API size_t ZSTD_decompressBegin(ZSTD_DCtx* dctx); +ZSTDLIB_STATIC_API size_t ZSTD_decompressBegin_usingDict(ZSTD_DCtx* dctx, const void* dict, size_t dictSize); +ZSTDLIB_STATIC_API size_t ZSTD_decompressBegin_usingDDict(ZSTD_DCtx* dctx, const ZSTD_DDict* ddict); + +ZSTDLIB_STATIC_API size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx); +ZSTDLIB_STATIC_API size_t ZSTD_decompressContinue(ZSTD_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize); + +/* misc */ +ZSTD_DEPRECATED("This function will likely be removed in the next minor release. It is misleading and has very limited utility.") +ZSTDLIB_STATIC_API void ZSTD_copyDCtx(ZSTD_DCtx* dctx, const ZSTD_DCtx* preparedDCtx); +typedef enum { ZSTDnit_frameHeader, ZSTDnit_blockHeader, ZSTDnit_block, ZSTDnit_lastBlock, ZSTDnit_checksum, ZSTDnit_skippableFrame } ZSTD_nextInputType_e; +ZSTDLIB_STATIC_API ZSTD_nextInputType_e ZSTD_nextInputType(ZSTD_DCtx* dctx); + + + + +/* ========================================= */ +/** Block level API (DEPRECATED) */ +/* ========================================= */ + +/*! + + This API is deprecated in favor of the regular compression API. + You can get the frame header down to 2 bytes by setting: + - ZSTD_c_format = ZSTD_f_zstd1_magicless + - ZSTD_c_contentSizeFlag = 0 + - ZSTD_c_checksumFlag = 0 + - ZSTD_c_dictIDFlag = 0 + + This API is not as well tested as our normal API, so we recommend not using it. + We will be removing it in a future version. If the normal API doesn't provide + the functionality you need, please open a GitHub issue. + + Block functions produce and decode raw zstd blocks, without frame metadata. + Frame metadata cost is typically ~12 bytes, which can be non-negligible for very small blocks (< 100 bytes). + But users will have to take in charge needed metadata to regenerate data, such as compressed and content sizes. + + A few rules to respect : + - Compressing and decompressing require a context structure + + Use ZSTD_createCCtx() and ZSTD_createDCtx() + - It is necessary to init context before starting + + compression : any ZSTD_compressBegin*() variant, including with dictionary + + decompression : any ZSTD_decompressBegin*() variant, including with dictionary + - Block size is limited, it must be <= ZSTD_getBlockSize() <= ZSTD_BLOCKSIZE_MAX == 128 KB + + If input is larger than a block size, it's necessary to split input data into multiple blocks + + For inputs larger than a single block, consider using regular ZSTD_compress() instead. + Frame metadata is not that costly, and quickly becomes negligible as source size grows larger than a block. + - When a block is considered not compressible enough, ZSTD_compressBlock() result will be 0 (zero) ! + ===> In which case, nothing is produced into `dst` ! + + User __must__ test for such outcome and deal directly with uncompressed data + + A block cannot be declared incompressible if ZSTD_compressBlock() return value was != 0. + Doing so would mess up with statistics history, leading to potential data corruption. + + ZSTD_decompressBlock() _doesn't accept uncompressed data as input_ !! + + In case of multiple successive blocks, should some of them be uncompressed, + decoder must be informed of their existence in order to follow proper history. + Use ZSTD_insertBlock() for such a case. +*/ + +/*===== Raw zstd block functions =====*/ +ZSTD_DEPRECATED("The block API is deprecated in favor of the normal compression API. See docs.") +ZSTDLIB_STATIC_API size_t ZSTD_getBlockSize (const ZSTD_CCtx* cctx); +ZSTD_DEPRECATED("The block API is deprecated in favor of the normal compression API. See docs.") +ZSTDLIB_STATIC_API size_t ZSTD_compressBlock (ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize); +ZSTD_DEPRECATED("The block API is deprecated in favor of the normal compression API. See docs.") +ZSTDLIB_STATIC_API size_t ZSTD_decompressBlock(ZSTD_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize); +ZSTD_DEPRECATED("The block API is deprecated in favor of the normal compression API. See docs.") +ZSTDLIB_STATIC_API size_t ZSTD_insertBlock (ZSTD_DCtx* dctx, const void* blockStart, size_t blockSize); /**< insert uncompressed block into `dctx` history. Useful for multi-blocks decompression. */ + +#if defined (__cplusplus) +} +#endif + +#endif /* ZSTD_H_ZSTD_STATIC_LINKING_ONLY */ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/include/zstd_errors.h b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/include/zstd_errors.h new file mode 100644 index 0000000..8ebc95c --- /dev/null +++ b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/include/zstd_errors.h @@ -0,0 +1,107 @@ +/* + * Copyright (c) Meta Platforms, Inc. and affiliates. + * All rights reserved. + * + * This source code is licensed under both the BSD-style license (found in the + * LICENSE file in the root directory of this source tree) and the GPLv2 (found + * in the COPYING file in the root directory of this source tree). + * You may select, at your option, one of the above-listed licenses. + */ + +#ifndef ZSTD_ERRORS_H_398273423 +#define ZSTD_ERRORS_H_398273423 + +#if defined (__cplusplus) +extern "C" { +#endif + +/* ===== ZSTDERRORLIB_API : control library symbols visibility ===== */ +#ifndef ZSTDERRORLIB_VISIBLE + /* Backwards compatibility with old macro name */ +# ifdef ZSTDERRORLIB_VISIBILITY +# define ZSTDERRORLIB_VISIBLE ZSTDERRORLIB_VISIBILITY +# elif defined(__GNUC__) && (__GNUC__ >= 4) && !defined(__MINGW32__) +# define ZSTDERRORLIB_VISIBLE __attribute__ ((visibility ("default"))) +# else +# define ZSTDERRORLIB_VISIBLE +# endif +#endif + +#ifndef ZSTDERRORLIB_HIDDEN +# if defined(__GNUC__) && (__GNUC__ >= 4) && !defined(__MINGW32__) +# define ZSTDERRORLIB_HIDDEN __attribute__ ((visibility ("hidden"))) +# else +# define ZSTDERRORLIB_HIDDEN +# endif +#endif + +#if defined(ZSTD_DLL_EXPORT) && (ZSTD_DLL_EXPORT==1) +# define ZSTDERRORLIB_API __declspec(dllexport) ZSTDERRORLIB_VISIBLE +#elif defined(ZSTD_DLL_IMPORT) && (ZSTD_DLL_IMPORT==1) +# define ZSTDERRORLIB_API __declspec(dllimport) ZSTDERRORLIB_VISIBLE /* It isn't required but allows to generate better code, saving a function pointer load from the IAT and an indirect jump.*/ +#else +# define ZSTDERRORLIB_API ZSTDERRORLIB_VISIBLE +#endif + +/*-********************************************* + * Error codes list + *-********************************************* + * Error codes _values_ are pinned down since v1.3.1 only. + * Therefore, don't rely on values if you may link to any version < v1.3.1. + * + * Only values < 100 are considered stable. + * + * note 1 : this API shall be used with static linking only. + * dynamic linking is not yet officially supported. + * note 2 : Prefer relying on the enum than on its value whenever possible + * This is the only supported way to use the error list < v1.3.1 + * note 3 : ZSTD_isError() is always correct, whatever the library version. + **********************************************/ +typedef enum { + ZSTD_error_no_error = 0, + ZSTD_error_GENERIC = 1, + ZSTD_error_prefix_unknown = 10, + ZSTD_error_version_unsupported = 12, + ZSTD_error_frameParameter_unsupported = 14, + ZSTD_error_frameParameter_windowTooLarge = 16, + ZSTD_error_corruption_detected = 20, + ZSTD_error_checksum_wrong = 22, + ZSTD_error_literals_headerWrong = 24, + ZSTD_error_dictionary_corrupted = 30, + ZSTD_error_dictionary_wrong = 32, + ZSTD_error_dictionaryCreation_failed = 34, + ZSTD_error_parameter_unsupported = 40, + ZSTD_error_parameter_combination_unsupported = 41, + ZSTD_error_parameter_outOfBound = 42, + ZSTD_error_tableLog_tooLarge = 44, + ZSTD_error_maxSymbolValue_tooLarge = 46, + ZSTD_error_maxSymbolValue_tooSmall = 48, + ZSTD_error_cannotProduce_uncompressedBlock = 49, + ZSTD_error_stabilityCondition_notRespected = 50, + ZSTD_error_stage_wrong = 60, + ZSTD_error_init_missing = 62, + ZSTD_error_memory_allocation = 64, + ZSTD_error_workSpace_tooSmall= 66, + ZSTD_error_dstSize_tooSmall = 70, + ZSTD_error_srcSize_wrong = 72, + ZSTD_error_dstBuffer_null = 74, + ZSTD_error_noForwardProgress_destFull = 80, + ZSTD_error_noForwardProgress_inputEmpty = 82, + /* following error codes are __NOT STABLE__, they can be removed or changed in future versions */ + ZSTD_error_frameIndex_tooLarge = 100, + ZSTD_error_seekableIO = 102, + ZSTD_error_dstBuffer_wrong = 104, + ZSTD_error_srcBuffer_wrong = 105, + ZSTD_error_sequenceProducer_failed = 106, + ZSTD_error_externalSequences_invalid = 107, + ZSTD_error_maxCode = 120 /* never EVER use this value directly, it can change in future versions! Use ZSTD_isError() instead */ +} ZSTD_ErrorCode; + +ZSTDERRORLIB_API const char* ZSTD_getErrorString(ZSTD_ErrorCode code); /**< Same as ZSTD_getErrorName, but using a `ZSTD_ErrorCode` enum argument */ + + +#if defined (__cplusplus) +} +#endif + +#endif /* ZSTD_ERRORS_H_398273423 */ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/libzstd.a b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/libzstd.a new file mode 100644 index 0000000..fb6e237 Binary files /dev/null and b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out/libzstd.a differ diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/output b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/output new file mode 100644 index 0000000..935ef42 --- /dev/null +++ b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/output @@ -0,0 +1,792 @@ +cargo:rerun-if-env-changed=ZSTD_SYS_USE_PKG_CONFIG +cargo:rerun-if-env-changed=CC_FORCE_DISABLE +CC_FORCE_DISABLE = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +exit status: 0 +cargo:rerun-if-env-changed=AR_x86_64-unknown-linux-gnu +AR_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=AR_x86_64_unknown_linux_gnu +AR_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_AR +HOST_AR = None +cargo:rerun-if-env-changed=AR +AR = None +cargo:rerun-if-env-changed=ARFLAGS +ARFLAGS = None +cargo:rerun-if-env-changed=HOST_ARFLAGS +HOST_ARFLAGS = None +cargo:rerun-if-env-changed=ARFLAGS_x86_64_unknown_linux_gnu +ARFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=ARFLAGS_x86_64-unknown-linux-gnu +ARFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=AR_x86_64-unknown-linux-gnu +AR_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=AR_x86_64_unknown_linux_gnu +AR_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_AR +HOST_AR = None +cargo:rerun-if-env-changed=AR +AR = None +cargo:rerun-if-env-changed=ARFLAGS +ARFLAGS = None +cargo:rerun-if-env-changed=HOST_ARFLAGS +HOST_ARFLAGS = None +cargo:rerun-if-env-changed=ARFLAGS_x86_64_unknown_linux_gnu +ARFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=ARFLAGS_x86_64-unknown-linux-gnu +ARFLAGS_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=AR_x86_64-unknown-linux-gnu +AR_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=AR_x86_64_unknown_linux_gnu +AR_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_AR +HOST_AR = None +cargo:rerun-if-env-changed=AR +AR = None +cargo:rerun-if-env-changed=ARFLAGS +ARFLAGS = None +cargo:rerun-if-env-changed=HOST_ARFLAGS +HOST_ARFLAGS = None +cargo:rerun-if-env-changed=ARFLAGS_x86_64_unknown_linux_gnu +ARFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=ARFLAGS_x86_64-unknown-linux-gnu +ARFLAGS_x86_64-unknown-linux-gnu = None +cargo:rustc-link-lib=static=zstd +cargo:rustc-link-search=native=/home/z/my-project/projects/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out +cargo:root=/home/z/my-project/projects/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out +cargo:include=/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-sys-2.0.16+zstd.1.5.7/zstd/lib diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/root-output b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/root-output new file mode 100644 index 0000000..d04b637 --- /dev/null +++ b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/root-output @@ -0,0 +1 @@ +/home/z/my-project/projects/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/out \ No newline at end of file diff --git a/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/stderr b/server/target/debug/build/zstd-sys-6e13c138ec74bb9d/stderr new file mode 100644 index 0000000..e69de29 diff --git a/server/target/debug/deps/actix_codec-9be49efe4be5f405.d b/server/target/debug/deps/actix_codec-9be49efe4be5f405.d new file mode 100644 index 0000000..ce82400 --- /dev/null +++ b/server/target/debug/deps/actix_codec-9be49efe4be5f405.d @@ -0,0 +1,8 @@ +/home/z/my-project/projects/server/target/debug/deps/actix_codec-9be49efe4be5f405.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-codec-0.5.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-codec-0.5.2/src/bcodec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-codec-0.5.2/src/framed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-codec-0.5.2/src/lines.rs + +/home/z/my-project/projects/server/target/debug/deps/libactix_codec-9be49efe4be5f405.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-codec-0.5.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-codec-0.5.2/src/bcodec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-codec-0.5.2/src/framed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-codec-0.5.2/src/lines.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-codec-0.5.2/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-codec-0.5.2/src/bcodec.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-codec-0.5.2/src/framed.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-codec-0.5.2/src/lines.rs: diff --git a/server/target/debug/deps/actix_cors-4ab34fad240ef626.d b/server/target/debug/deps/actix_cors-4ab34fad240ef626.d new file mode 100644 index 0000000..37b8916 --- /dev/null +++ b/server/target/debug/deps/actix_cors-4ab34fad240ef626.d @@ -0,0 +1,10 @@ +/home/z/my-project/projects/server/target/debug/deps/actix_cors-4ab34fad240ef626.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/all_or_some.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/inner.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/middleware.rs + +/home/z/my-project/projects/server/target/debug/deps/libactix_cors-4ab34fad240ef626.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/all_or_some.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/inner.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/middleware.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/all_or_some.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/builder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/inner.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-cors-0.7.1/src/middleware.rs: diff --git a/server/target/debug/deps/actix_files-6cb6fd7a505e8e12.d b/server/target/debug/deps/actix_files-6cb6fd7a505e8e12.d new file mode 100644 index 0000000..8cb161a --- /dev/null +++ b/server/target/debug/deps/actix_files-6cb6fd7a505e8e12.d @@ -0,0 +1,14 @@ +/home/z/my-project/projects/server/target/debug/deps/actix_files-6cb6fd7a505e8e12.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/chunked.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/directory.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/encoding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/files.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/named.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/path_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/range.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/service.rs + +/home/z/my-project/projects/server/target/debug/deps/libactix_files-6cb6fd7a505e8e12.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/chunked.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/directory.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/encoding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/files.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/named.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/path_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/range.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/service.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/chunked.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/directory.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/encoding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/files.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/named.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/path_buf.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/range.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-files-0.6.10/src/service.rs: diff --git a/server/target/debug/deps/actix_http-51df65d4b78a71e1.d b/server/target/debug/deps/actix_http-51df65d4b78a71e1.d new file mode 100644 index 0000000..87678b3 --- /dev/null +++ b/server/target/debug/deps/actix_http-51df65d4b78a71e1.d @@ -0,0 +1,72 @@ +/home/z/my-project/projects/server/target/debug/deps/actix_http-51df65d4b78a71e1.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/body_stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/boxed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/either.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/message_body.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/none.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/sized_stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/config.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/date.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/encoding/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/encoding/decoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/encoding/encoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/extensions.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/chunked.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/client.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/codec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/decoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/dispatcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/encoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/expect.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/payload.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/service.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/timer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/upgrade.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h2/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h2/dispatcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h2/service.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/as_name.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/common.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/into_pair.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/into_value.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/charset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/content_encoding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/extended.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/http_date.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/quality.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/quality_item.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/helpers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/http_message.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/keep_alive.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/message.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/payload.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/requests/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/requests/head.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/requests/request.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/responses/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/responses/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/responses/head.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/responses/response.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/service.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/test.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/codec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/dispatcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/frame.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/mask.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/proto.rs + +/home/z/my-project/projects/server/target/debug/deps/libactix_http-51df65d4b78a71e1.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/body_stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/boxed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/either.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/message_body.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/none.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/sized_stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/config.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/date.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/encoding/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/encoding/decoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/encoding/encoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/extensions.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/chunked.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/client.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/codec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/decoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/dispatcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/encoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/expect.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/payload.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/service.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/timer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/upgrade.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h2/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h2/dispatcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h2/service.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/as_name.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/common.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/into_pair.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/into_value.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/charset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/content_encoding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/extended.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/http_date.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/quality.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/quality_item.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/helpers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/http_message.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/keep_alive.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/message.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/payload.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/requests/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/requests/head.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/requests/request.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/responses/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/responses/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/responses/head.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/responses/response.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/service.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/test.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/codec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/dispatcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/frame.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/mask.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/proto.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/body_stream.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/boxed.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/either.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/message_body.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/none.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/sized_stream.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/body/utils.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/builder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/config.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/date.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/encoding/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/encoding/decoder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/encoding/encoder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/extensions.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/chunked.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/client.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/codec.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/decoder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/dispatcher.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/encoder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/expect.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/payload.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/service.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/timer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/upgrade.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h1/utils.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h2/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h2/dispatcher.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/h2/service.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/as_name.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/common.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/into_pair.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/into_value.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/charset.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/content_encoding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/extended.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/http_date.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/quality.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/shared/quality_item.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/header/utils.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/helpers.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/http_message.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/keep_alive.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/message.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/payload.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/requests/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/requests/head.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/requests/request.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/responses/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/responses/builder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/responses/head.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/responses/response.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/service.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/test.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/codec.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/dispatcher.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/frame.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/mask.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-http-3.12.0/src/ws/proto.rs: diff --git a/server/target/debug/deps/actix_macros-b8ce81399f0ba912.d b/server/target/debug/deps/actix_macros-b8ce81399f0ba912.d new file mode 100644 index 0000000..1a45515 --- /dev/null +++ b/server/target/debug/deps/actix_macros-b8ce81399f0ba912.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/actix_macros-b8ce81399f0ba912.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-macros-0.2.4/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libactix_macros-b8ce81399f0ba912.so: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-macros-0.2.4/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-macros-0.2.4/src/lib.rs: diff --git a/server/target/debug/deps/actix_router-3afa00a708d374be.d b/server/target/debug/deps/actix_router-3afa00a708d374be.d new file mode 100644 index 0000000..fd4874b --- /dev/null +++ b/server/target/debug/deps/actix_router-3afa00a708d374be.d @@ -0,0 +1,15 @@ +/home/z/my-project/projects/server/target/debug/deps/actix_router-3afa00a708d374be.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/pattern.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/quoter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/regex_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/resource.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/resource_path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/router.rs + +/home/z/my-project/projects/server/target/debug/deps/libactix_router-3afa00a708d374be.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/pattern.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/quoter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/regex_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/resource.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/resource_path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/router.rs + +/home/z/my-project/projects/server/target/debug/deps/libactix_router-3afa00a708d374be.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/pattern.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/quoter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/regex_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/resource.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/resource_path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/router.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/de.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/path.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/pattern.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/quoter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/regex_set.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/resource.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/resource_path.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/router.rs: diff --git a/server/target/debug/deps/actix_router-d76f38e0a8e64888.d b/server/target/debug/deps/actix_router-d76f38e0a8e64888.d new file mode 100644 index 0000000..03e24dd --- /dev/null +++ b/server/target/debug/deps/actix_router-d76f38e0a8e64888.d @@ -0,0 +1,14 @@ +/home/z/my-project/projects/server/target/debug/deps/actix_router-d76f38e0a8e64888.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/pattern.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/quoter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/regex_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/resource.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/resource_path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/router.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/url.rs + +/home/z/my-project/projects/server/target/debug/deps/libactix_router-d76f38e0a8e64888.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/pattern.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/quoter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/regex_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/resource.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/resource_path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/router.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/url.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/de.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/path.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/pattern.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/quoter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/regex_set.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/resource.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/resource_path.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/router.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-router-0.5.4/src/url.rs: diff --git a/server/target/debug/deps/actix_rt-9ef78d8b4f6ec944.d b/server/target/debug/deps/actix_rt-9ef78d8b4f6ec944.d new file mode 100644 index 0000000..6403b28 --- /dev/null +++ b/server/target/debug/deps/actix_rt-9ef78d8b4f6ec944.d @@ -0,0 +1,8 @@ +/home/z/my-project/projects/server/target/debug/deps/actix_rt-9ef78d8b4f6ec944.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-rt-2.11.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-rt-2.11.0/src/arbiter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-rt-2.11.0/src/runtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-rt-2.11.0/src/system.rs + +/home/z/my-project/projects/server/target/debug/deps/libactix_rt-9ef78d8b4f6ec944.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-rt-2.11.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-rt-2.11.0/src/arbiter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-rt-2.11.0/src/runtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-rt-2.11.0/src/system.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-rt-2.11.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-rt-2.11.0/src/arbiter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-rt-2.11.0/src/runtime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-rt-2.11.0/src/system.rs: diff --git a/server/target/debug/deps/actix_server-3f5e576e2159e48b.d b/server/target/debug/deps/actix_server-3f5e576e2159e48b.d new file mode 100644 index 0000000..bec837c --- /dev/null +++ b/server/target/debug/deps/actix_server-3f5e576e2159e48b.d @@ -0,0 +1,17 @@ +/home/z/my-project/projects/server/target/debug/deps/actix_server-3f5e576e2159e48b.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/accept.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/availability.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/handle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/join_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/server.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/service.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/signals.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/socket.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/test_server.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/waker_queue.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/worker.rs + +/home/z/my-project/projects/server/target/debug/deps/libactix_server-3f5e576e2159e48b.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/accept.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/availability.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/handle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/join_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/server.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/service.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/signals.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/socket.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/test_server.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/waker_queue.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/worker.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/accept.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/availability.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/builder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/handle.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/join_all.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/server.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/service.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/signals.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/socket.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/test_server.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/waker_queue.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-server-2.6.0/src/worker.rs: diff --git a/server/target/debug/deps/actix_service-1140bb22a1523738.d b/server/target/debug/deps/actix_service-1140bb22a1523738.d new file mode 100644 index 0000000..8fda0ee --- /dev/null +++ b/server/target/debug/deps/actix_service-1140bb22a1523738.d @@ -0,0 +1,21 @@ +/home/z/my-project/projects/server/target/debug/deps/actix_service-1140bb22a1523738.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/and_then.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/apply.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/apply_cfg.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/boxed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/fn_service.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/map_config.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/map_err.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/map_init_err.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/pipeline.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/ready.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/then.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/transform.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/transform_err.rs + +/home/z/my-project/projects/server/target/debug/deps/libactix_service-1140bb22a1523738.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/and_then.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/apply.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/apply_cfg.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/boxed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/fn_service.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/map_config.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/map_err.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/map_init_err.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/pipeline.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/ready.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/then.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/transform.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/transform_err.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/and_then.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/apply.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/apply_cfg.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/boxed.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/ext.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/fn_service.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/map_config.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/map_err.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/map_init_err.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/pipeline.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/ready.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/then.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/transform.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-service-2.0.3/src/transform_err.rs: diff --git a/server/target/debug/deps/actix_utils-0a91c3d286f4cced.d b/server/target/debug/deps/actix_utils-0a91c3d286f4cced.d new file mode 100644 index 0000000..2c421d1 --- /dev/null +++ b/server/target/debug/deps/actix_utils-0a91c3d286f4cced.d @@ -0,0 +1,10 @@ +/home/z/my-project/projects/server/target/debug/deps/actix_utils-0a91c3d286f4cced.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/counter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/future/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/future/either.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/future/poll_fn.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/future/ready.rs + +/home/z/my-project/projects/server/target/debug/deps/libactix_utils-0a91c3d286f4cced.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/counter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/future/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/future/either.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/future/poll_fn.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/future/ready.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/counter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/future/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/future/either.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/future/poll_fn.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-utils-3.0.1/src/future/ready.rs: diff --git a/server/target/debug/deps/actix_web-c6a35d4af5058b8e.d b/server/target/debug/deps/actix_web-c6a35d4af5058b8e.d new file mode 100644 index 0000000..bbbde56 --- /dev/null +++ b/server/target/debug/deps/actix_web-c6a35d4af5058b8e.d @@ -0,0 +1,91 @@ +/home/z/my-project/projects/server/target/debug/deps/actix_web-c6a35d4af5058b8e.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/app.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/app_service.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/config.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/data.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/dev.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/error/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/error/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/error/internal.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/error/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/error/response_error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/extract.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/guard/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/guard/acceptable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/guard/host.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/handler.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/helpers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/accept.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/accept_charset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/accept_encoding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/accept_language.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/allow.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/cache_control.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/content_disposition.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/content_language.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/content_length.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/content_range.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/content_type.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/date.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/encoding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/entity.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/etag.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/expires.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/if_match.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/if_modified_since.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/if_none_match.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/if_range.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/if_unmodified_since.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/last_modified.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/preference.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/range.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/info.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/compat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/compress.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/condition.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/default_headers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/err_handlers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/from_fn.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/identity.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/logger.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/normalize.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/redirect.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/request.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/request_data.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/resource.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/customize_responder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/http_codes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/responder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/response.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/rmap.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/route.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/rt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/server.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/service.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/test/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/test/test_request.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/test/test_services.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/test/test_utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/thin_data.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/either.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/form.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/header.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/html.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/json.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/payload.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/query.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/readlines.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/web.rs + +/home/z/my-project/projects/server/target/debug/deps/libactix_web-c6a35d4af5058b8e.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/app.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/app_service.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/config.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/data.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/dev.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/error/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/error/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/error/internal.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/error/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/error/response_error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/extract.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/guard/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/guard/acceptable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/guard/host.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/handler.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/helpers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/accept.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/accept_charset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/accept_encoding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/accept_language.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/allow.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/cache_control.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/content_disposition.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/content_language.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/content_length.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/content_range.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/content_type.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/date.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/encoding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/entity.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/etag.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/expires.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/if_match.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/if_modified_since.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/if_none_match.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/if_range.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/if_unmodified_since.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/last_modified.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/preference.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/range.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/info.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/compat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/compress.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/condition.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/default_headers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/err_handlers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/from_fn.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/identity.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/logger.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/normalize.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/redirect.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/request.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/request_data.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/resource.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/customize_responder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/http_codes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/responder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/response.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/rmap.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/route.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/rt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/server.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/service.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/test/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/test/test_request.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/test/test_services.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/test/test_utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/thin_data.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/either.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/form.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/header.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/html.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/json.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/payload.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/query.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/readlines.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/web.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/app.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/app_service.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/config.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/data.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/dev.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/error/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/error/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/error/internal.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/error/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/error/response_error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/extract.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/guard/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/guard/acceptable.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/guard/host.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/handler.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/helpers.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/accept.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/accept_charset.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/accept_encoding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/accept_language.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/allow.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/cache_control.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/content_disposition.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/content_language.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/content_length.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/content_range.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/content_type.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/date.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/encoding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/entity.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/etag.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/expires.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/if_match.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/if_modified_since.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/if_none_match.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/if_range.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/if_unmodified_since.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/last_modified.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/preference.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/http/header/range.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/info.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/compat.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/compress.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/condition.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/default_headers.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/err_handlers.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/from_fn.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/identity.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/logger.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/middleware/normalize.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/redirect.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/request.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/request_data.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/resource.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/builder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/customize_responder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/http_codes.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/responder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/response/response.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/rmap.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/route.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/rt.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/scope.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/server.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/service.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/test/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/test/test_request.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/test/test_services.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/test/test_utils.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/thin_data.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/either.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/form.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/header.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/html.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/json.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/path.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/payload.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/query.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/types/readlines.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-4.13.0/src/web.rs: diff --git a/server/target/debug/deps/actix_web_codegen-26a926d2164490c4.d b/server/target/debug/deps/actix_web_codegen-26a926d2164490c4.d new file mode 100644 index 0000000..1d88a19 --- /dev/null +++ b/server/target/debug/deps/actix_web_codegen-26a926d2164490c4.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/actix_web_codegen-26a926d2164490c4.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-codegen-4.3.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-codegen-4.3.0/src/route.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-codegen-4.3.0/src/scope.rs + +/home/z/my-project/projects/server/target/debug/deps/libactix_web_codegen-26a926d2164490c4.so: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-codegen-4.3.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-codegen-4.3.0/src/route.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-codegen-4.3.0/src/scope.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-codegen-4.3.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-codegen-4.3.0/src/route.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-web-codegen-4.3.0/src/scope.rs: diff --git a/server/target/debug/deps/actix_ws-7eef1fc358da3dcf.d b/server/target/debug/deps/actix_ws-7eef1fc358da3dcf.d new file mode 100644 index 0000000..dfaabf0 --- /dev/null +++ b/server/target/debug/deps/actix_ws-7eef1fc358da3dcf.d @@ -0,0 +1,9 @@ +/home/z/my-project/projects/server/target/debug/deps/actix_ws-7eef1fc358da3dcf.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-ws-0.4.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-ws-0.4.0/src/aggregated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-ws-0.4.0/src/codec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-ws-0.4.0/src/session.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-ws-0.4.0/src/stream.rs + +/home/z/my-project/projects/server/target/debug/deps/libactix_ws-7eef1fc358da3dcf.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-ws-0.4.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-ws-0.4.0/src/aggregated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-ws-0.4.0/src/codec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-ws-0.4.0/src/session.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-ws-0.4.0/src/stream.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-ws-0.4.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-ws-0.4.0/src/aggregated.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-ws-0.4.0/src/codec.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-ws-0.4.0/src/session.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/actix-ws-0.4.0/src/stream.rs: diff --git a/server/target/debug/deps/adler2-058d5f8fddc817b0.d b/server/target/debug/deps/adler2-058d5f8fddc817b0.d new file mode 100644 index 0000000..c2f3314 --- /dev/null +++ b/server/target/debug/deps/adler2-058d5f8fddc817b0.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/deps/adler2-058d5f8fddc817b0.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.1/src/algo.rs + +/home/z/my-project/projects/server/target/debug/deps/libadler2-058d5f8fddc817b0.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.1/src/algo.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.1/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.1/src/algo.rs: diff --git a/server/target/debug/deps/aho_corasick-8a0f500f228cb24d.d b/server/target/debug/deps/aho_corasick-8a0f500f228cb24d.d new file mode 100644 index 0000000..50564c4 --- /dev/null +++ b/server/target/debug/deps/aho_corasick-8a0f500f228cb24d.d @@ -0,0 +1,33 @@ +/home/z/my-project/projects/server/target/debug/deps/aho_corasick-8a0f500f228cb24d.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/ahocorasick.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/automaton.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/dfa.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/contiguous.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/noncontiguous.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/api.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/pattern.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/rabinkarp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/generic.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/vector.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/alphabet.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/byte_frequencies.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/debug.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/prefilter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/primitives.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/remapper.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/search.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/special.rs + +/home/z/my-project/projects/server/target/debug/deps/libaho_corasick-8a0f500f228cb24d.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/ahocorasick.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/automaton.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/dfa.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/contiguous.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/noncontiguous.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/api.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/pattern.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/rabinkarp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/generic.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/vector.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/alphabet.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/byte_frequencies.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/debug.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/prefilter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/primitives.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/remapper.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/search.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/special.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/ahocorasick.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/automaton.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/dfa.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/contiguous.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/noncontiguous.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/api.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/ext.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/pattern.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/rabinkarp.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/builder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/generic.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/vector.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/alphabet.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/buffer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/byte_frequencies.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/debug.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/int.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/prefilter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/primitives.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/remapper.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/search.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/special.rs: diff --git a/server/target/debug/deps/alloc_no_stdlib-67a0bbe710316a62.d b/server/target/debug/deps/alloc_no_stdlib-67a0bbe710316a62.d new file mode 100644 index 0000000..4831878 --- /dev/null +++ b/server/target/debug/deps/alloc_no_stdlib-67a0bbe710316a62.d @@ -0,0 +1,10 @@ +/home/z/my-project/projects/server/target/debug/deps/alloc_no_stdlib-67a0bbe710316a62.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/allocated_memory/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/allocated_memory/index_macro.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/stack_allocator.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/allocated_stack_memory.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/init.rs + +/home/z/my-project/projects/server/target/debug/deps/liballoc_no_stdlib-67a0bbe710316a62.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/allocated_memory/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/allocated_memory/index_macro.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/stack_allocator.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/allocated_stack_memory.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/init.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/allocated_memory/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/allocated_memory/index_macro.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/stack_allocator.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/allocated_stack_memory.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-no-stdlib-2.0.4/src/init.rs: diff --git a/server/target/debug/deps/alloc_stdlib-c68fad3ba3ed4e44.d b/server/target/debug/deps/alloc_stdlib-c68fad3ba3ed4e44.d new file mode 100644 index 0000000..aab1b24 --- /dev/null +++ b/server/target/debug/deps/alloc_stdlib-c68fad3ba3ed4e44.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/alloc_stdlib-c68fad3ba3ed4e44.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-stdlib-0.2.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-stdlib-0.2.2/src/heap_alloc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-stdlib-0.2.2/src/std_alloc.rs + +/home/z/my-project/projects/server/target/debug/deps/liballoc_stdlib-c68fad3ba3ed4e44.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-stdlib-0.2.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-stdlib-0.2.2/src/heap_alloc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-stdlib-0.2.2/src/std_alloc.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-stdlib-0.2.2/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-stdlib-0.2.2/src/heap_alloc.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/alloc-stdlib-0.2.2/src/std_alloc.rs: diff --git a/server/target/debug/deps/anstream-00fda7c081e998b0.d b/server/target/debug/deps/anstream-00fda7c081e998b0.d new file mode 100644 index 0000000..319265f --- /dev/null +++ b/server/target/debug/deps/anstream-00fda7c081e998b0.d @@ -0,0 +1,14 @@ +/home/z/my-project/projects/server/target/debug/deps/anstream-00fda7c081e998b0.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/adapter/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/adapter/strip.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/adapter/wincon.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/_macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/auto.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/fmt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/strip.rs + +/home/z/my-project/projects/server/target/debug/deps/libanstream-00fda7c081e998b0.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/adapter/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/adapter/strip.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/adapter/wincon.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/_macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/auto.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/fmt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/strip.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/adapter/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/adapter/strip.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/adapter/wincon.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/stream.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/_macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/auto.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/buffer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/fmt.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-1.0.0/src/strip.rs: diff --git a/server/target/debug/deps/anstyle-a8236b7ed4a5a82a.d b/server/target/debug/deps/anstyle-a8236b7ed4a5a82a.d new file mode 100644 index 0000000..4071c64 --- /dev/null +++ b/server/target/debug/deps/anstyle-a8236b7ed4a5a82a.d @@ -0,0 +1,10 @@ +/home/z/my-project/projects/server/target/debug/deps/anstyle-a8236b7ed4a5a82a.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/color.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/effect.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/reset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/style.rs + +/home/z/my-project/projects/server/target/debug/deps/libanstyle-a8236b7ed4a5a82a.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/color.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/effect.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/reset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/style.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/color.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/effect.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/reset.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/style.rs: diff --git a/server/target/debug/deps/anstyle_parse-99a825add116413d.d b/server/target/debug/deps/anstyle_parse-99a825add116413d.d new file mode 100644 index 0000000..63e3a56 --- /dev/null +++ b/server/target/debug/deps/anstyle_parse-99a825add116413d.d @@ -0,0 +1,9 @@ +/home/z/my-project/projects/server/target/debug/deps/anstyle_parse-99a825add116413d.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-1.0.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-1.0.0/src/params.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-1.0.0/src/state/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-1.0.0/src/state/definitions.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-1.0.0/src/state/table.rs + +/home/z/my-project/projects/server/target/debug/deps/libanstyle_parse-99a825add116413d.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-1.0.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-1.0.0/src/params.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-1.0.0/src/state/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-1.0.0/src/state/definitions.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-1.0.0/src/state/table.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-1.0.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-1.0.0/src/params.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-1.0.0/src/state/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-1.0.0/src/state/definitions.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-1.0.0/src/state/table.rs: diff --git a/server/target/debug/deps/anstyle_query-0b8322a96a58150a.d b/server/target/debug/deps/anstyle_query-0b8322a96a58150a.d new file mode 100644 index 0000000..1922a4b --- /dev/null +++ b/server/target/debug/deps/anstyle_query-0b8322a96a58150a.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/deps/anstyle_query-0b8322a96a58150a.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.5/src/windows.rs + +/home/z/my-project/projects/server/target/debug/deps/libanstyle_query-0b8322a96a58150a.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.5/src/windows.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.5/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.5/src/windows.rs: diff --git a/server/target/debug/deps/autocfg-9ef4b25a9bd36cd2.d b/server/target/debug/deps/autocfg-9ef4b25a9bd36cd2.d new file mode 100644 index 0000000..19f10bd --- /dev/null +++ b/server/target/debug/deps/autocfg-9ef4b25a9bd36cd2.d @@ -0,0 +1,10 @@ +/home/z/my-project/projects/server/target/debug/deps/autocfg-9ef4b25a9bd36cd2.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/rustc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/version.rs + +/home/z/my-project/projects/server/target/debug/deps/libautocfg-9ef4b25a9bd36cd2.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/rustc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/version.rs + +/home/z/my-project/projects/server/target/debug/deps/libautocfg-9ef4b25a9bd36cd2.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/rustc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/version.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/rustc.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/version.rs: diff --git a/server/target/debug/deps/base64-05c11f181c9cd5a6.d b/server/target/debug/deps/base64-05c11f181c9cd5a6.d new file mode 100644 index 0000000..c07cbd9 --- /dev/null +++ b/server/target/debug/deps/base64-05c11f181c9cd5a6.d @@ -0,0 +1,20 @@ +/home/z/my-project/projects/server/target/debug/deps/base64-05c11f181c9cd5a6.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/chunked_encoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/display.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/decoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder_string_writer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode_suffix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/alphabet.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/encode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/decode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/prelude.rs + +/home/z/my-project/projects/server/target/debug/deps/libbase64-05c11f181c9cd5a6.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/chunked_encoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/display.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/decoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder_string_writer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode_suffix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/alphabet.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/encode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/decode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/prelude.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/chunked_encoder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/display.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/decoder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder_string_writer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode_suffix.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/alphabet.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/encode.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/decode.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/prelude.rs: diff --git a/server/target/debug/deps/bitflags-ed0768bab984093b.d b/server/target/debug/deps/bitflags-ed0768bab984093b.d new file mode 100644 index 0000000..20ba319 --- /dev/null +++ b/server/target/debug/deps/bitflags-ed0768bab984093b.d @@ -0,0 +1,11 @@ +/home/z/my-project/projects/server/target/debug/deps/bitflags-ed0768bab984093b.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/traits.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/public.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/internal.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/external.rs + +/home/z/my-project/projects/server/target/debug/deps/libbitflags-ed0768bab984093b.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/traits.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/public.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/internal.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/external.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/iter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/parser.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/traits.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/public.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/internal.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.11.0/src/external.rs: diff --git a/server/target/debug/deps/block_buffer-452d03add8deeb96.d b/server/target/debug/deps/block_buffer-452d03add8deeb96.d new file mode 100644 index 0000000..2710755 --- /dev/null +++ b/server/target/debug/deps/block_buffer-452d03add8deeb96.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/deps/block_buffer-452d03add8deeb96.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/sealed.rs + +/home/z/my-project/projects/server/target/debug/deps/libblock_buffer-452d03add8deeb96.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/sealed.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/sealed.rs: diff --git a/server/target/debug/deps/brotli-726acff630457cdb.d b/server/target/debug/deps/brotli-726acff630457cdb.d new file mode 100644 index 0000000..64aefee --- /dev/null +++ b/server/target/debug/deps/brotli-726acff630457cdb.d @@ -0,0 +1,54 @@ +/home/z/my-project/projects/server/target/debug/deps/brotli-726acff630457cdb.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/concat/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/vectorization.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/backward_references/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/backward_references/benchmark.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/backward_references/hash_to_binary_tree.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/backward_references/hq.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/backward_references/test.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/bit_cost.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/block_split.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/block_splitter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/brotli_bit_stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/cluster.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/combined_alloc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/command.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/compat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/compress_fragment.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/compress_fragment_two_pass.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/constants.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/context_map_entropy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/dictionary_hash.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/encode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/entropy_encode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/find_stride.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/fixed_queue.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/histogram.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/input_pair.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/interface.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/ir_interpret.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/literal_cost.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/log_table_16.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/log_table_8.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/metablock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/multithreading.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/parameters.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/pdf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/prior_eval.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/singlethreading.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/static_dict.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/static_dict_lut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/stride_eval.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/test.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/threading.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/utf8_util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/weights.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/worker_pool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/writer.rs + +/home/z/my-project/projects/server/target/debug/deps/libbrotli-726acff630457cdb.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/concat/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/vectorization.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/backward_references/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/backward_references/benchmark.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/backward_references/hash_to_binary_tree.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/backward_references/hq.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/backward_references/test.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/bit_cost.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/block_split.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/block_splitter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/brotli_bit_stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/cluster.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/combined_alloc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/command.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/compat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/compress_fragment.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/compress_fragment_two_pass.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/constants.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/context_map_entropy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/dictionary_hash.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/encode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/entropy_encode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/find_stride.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/fixed_queue.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/histogram.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/input_pair.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/interface.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/ir_interpret.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/literal_cost.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/log_table_16.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/log_table_8.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/metablock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/multithreading.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/parameters.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/pdf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/prior_eval.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/singlethreading.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/static_dict.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/static_dict_lut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/stride_eval.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/test.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/threading.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/utf8_util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/weights.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/worker_pool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/writer.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/concat/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/vectorization.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/backward_references/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/backward_references/benchmark.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/backward_references/hash_to_binary_tree.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/backward_references/hq.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/backward_references/test.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/bit_cost.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/block_split.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/block_splitter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/brotli_bit_stream.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/cluster.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/combined_alloc.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/command.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/compat.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/compress_fragment.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/compress_fragment_two_pass.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/constants.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/context_map_entropy.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/dictionary_hash.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/encode.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/entropy_encode.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/find_stride.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/fixed_queue.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/histogram.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/input_pair.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/interface.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/ir_interpret.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/literal_cost.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/log_table_16.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/log_table_8.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/metablock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/multithreading.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/parameters.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/pdf.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/prior_eval.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/reader.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/singlethreading.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/static_dict.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/static_dict_lut.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/stride_eval.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/test.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/threading.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/utf8_util.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/util.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/weights.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/worker_pool.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-8.0.2/src/enc/writer.rs: diff --git a/server/target/debug/deps/brotli_decompressor-7f35dec671a12241.d b/server/target/debug/deps/brotli_decompressor-7f35dec671a12241.d new file mode 100644 index 0000000..dfb7274 --- /dev/null +++ b/server/target/debug/deps/brotli_decompressor-7f35dec671a12241.d @@ -0,0 +1,20 @@ +/home/z/my-project/projects/server/target/debug/deps/brotli_decompressor-7f35dec671a12241.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/memory.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/dictionary/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/brotli_alloc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/bit_reader/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/huffman/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/huffman/tests.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/state.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/prefix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/context.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/transform.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/test.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/decode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/io_wrappers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/writer.rs + +/home/z/my-project/projects/server/target/debug/deps/libbrotli_decompressor-7f35dec671a12241.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/memory.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/dictionary/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/brotli_alloc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/bit_reader/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/huffman/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/huffman/tests.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/state.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/prefix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/context.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/transform.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/test.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/decode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/io_wrappers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/writer.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/memory.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/dictionary/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/brotli_alloc.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/bit_reader/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/huffman/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/huffman/tests.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/state.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/prefix.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/context.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/transform.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/test.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/decode.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/io_wrappers.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/reader.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/brotli-decompressor-5.0.0/src/writer.rs: diff --git a/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.d b/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.d new file mode 100644 index 0000000..3ee1fec --- /dev/null +++ b/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.d @@ -0,0 +1,17 @@ +/home/z/my-project/projects/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.d: src/main.rs src/api/mod.rs src/api/health.rs src/api/sessions.rs src/config.rs src/models.rs src/state.rs src/stream/mod.rs src/stream/media.rs src/ws/mod.rs src/ws/handler.rs + +/home/z/my-project/projects/server/target/debug/deps/libbutterfly_server-44a930d20c6d99e6.rmeta: src/main.rs src/api/mod.rs src/api/health.rs src/api/sessions.rs src/config.rs src/models.rs src/state.rs src/stream/mod.rs src/stream/media.rs src/ws/mod.rs src/ws/handler.rs + +src/main.rs: +src/api/mod.rs: +src/api/health.rs: +src/api/sessions.rs: +src/config.rs: +src/models.rs: +src/state.rs: +src/stream/mod.rs: +src/stream/media.rs: +src/ws/mod.rs: +src/ws/handler.rs: + +# env-dep:CARGO_PKG_VERSION=0.1.0 diff --git a/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-1533165293553270266.txt b/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-1533165293553270266.txt new file mode 100644 index 0000000..55d245f --- /dev/null +++ b/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-1533165293553270266.txt @@ -0,0 +1,2 @@ +fn(actix_web::web::Data>, actix_web::web::Path) -> impl futures::Future {delete_session} +fn(actix_web::web::Data>, actix_web::web::Path) -> impl futures::Future {delete_session}: HttpServiceFactory diff --git a/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-15422885921286665779.txt b/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-15422885921286665779.txt new file mode 100644 index 0000000..b41c8c7 --- /dev/null +++ b/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-15422885921286665779.txt @@ -0,0 +1,2 @@ +fn(actix_web::web::Data>) -> impl futures::Future {create_session} +fn(actix_web::web::Data>) -> impl futures::Future {create_session}: HttpServiceFactory diff --git a/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-2609923016590404324.txt b/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-2609923016590404324.txt new file mode 100644 index 0000000..bd2607a --- /dev/null +++ b/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-2609923016590404324.txt @@ -0,0 +1,2 @@ +fn(actix_web::web::Data>) -> impl futures::Future {list_sessions} +fn(actix_web::web::Data>) -> impl futures::Future {list_sessions}: HttpServiceFactory diff --git a/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-2803338379466717253.txt b/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-2803338379466717253.txt new file mode 100644 index 0000000..294cba3 --- /dev/null +++ b/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-2803338379466717253.txt @@ -0,0 +1,2 @@ +fn(actix_web::web::Data>) -> impl futures::Future {health} +fn(actix_web::web::Data>) -> impl futures::Future {health}: HttpServiceFactory diff --git a/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-3794530726528928362.txt b/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-3794530726528928362.txt new file mode 100644 index 0000000..efbc2df --- /dev/null +++ b/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-3794530726528928362.txt @@ -0,0 +1,2 @@ +fn(actix_web::web::Data>, actix_web::web::Path, Json) -> impl futures::Future {send_hud_command} +fn(actix_web::web::Data>, actix_web::web::Path, Json) -> impl futures::Future {send_hud_command}: HttpServiceFactory diff --git a/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-5810549072949164016.txt b/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-5810549072949164016.txt new file mode 100644 index 0000000..588b81d --- /dev/null +++ b/server/target/debug/deps/butterfly_server-44a930d20c6d99e6.long-type-5810549072949164016.txt @@ -0,0 +1,2 @@ +fn(actix_web::web::Data>, actix_web::web::Path) -> impl futures::Future {get_session} +fn(actix_web::web::Data>, actix_web::web::Path) -> impl futures::Future {get_session}: HttpServiceFactory diff --git a/server/target/debug/deps/bytes-4b8b75d566ddd537.d b/server/target/debug/deps/bytes-4b8b75d566ddd537.d new file mode 100644 index 0000000..e42392e --- /dev/null +++ b/server/target/debug/deps/bytes-4b8b75d566ddd537.d @@ -0,0 +1,22 @@ +/home/z/my-project/projects/server/target/debug/deps/bytes-4b8b75d566ddd537.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_impl.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/chain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/limit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/take.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/uninit_slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/vec_deque.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/writer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes_mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/debug.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/hex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/loom.rs + +/home/z/my-project/projects/server/target/debug/deps/libbytes-4b8b75d566ddd537.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_impl.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/chain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/limit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/take.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/uninit_slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/vec_deque.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/writer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes_mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/debug.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/hex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/loom.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_impl.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_mut.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/chain.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/iter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/limit.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/reader.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/take.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/uninit_slice.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/vec_deque.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/writer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes_mut.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/debug.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/hex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/loom.rs: diff --git a/server/target/debug/deps/bytes-934b421c0e78c798.d b/server/target/debug/deps/bytes-934b421c0e78c798.d new file mode 100644 index 0000000..ce5f8eb --- /dev/null +++ b/server/target/debug/deps/bytes-934b421c0e78c798.d @@ -0,0 +1,22 @@ +/home/z/my-project/projects/server/target/debug/deps/bytes-934b421c0e78c798.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_impl.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/chain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/limit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/take.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/uninit_slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/vec_deque.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes_mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/debug.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/hex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/loom.rs + +/home/z/my-project/projects/server/target/debug/deps/libbytes-934b421c0e78c798.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_impl.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/chain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/limit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/take.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/uninit_slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/vec_deque.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes_mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/debug.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/hex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/loom.rs + +/home/z/my-project/projects/server/target/debug/deps/libbytes-934b421c0e78c798.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_impl.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/chain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/limit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/take.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/uninit_slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/vec_deque.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes_mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/debug.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/hex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/loom.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_impl.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/buf_mut.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/chain.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/iter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/limit.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/take.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/uninit_slice.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/buf/vec_deque.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/bytes_mut.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/debug.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/fmt/hex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.11.1/src/loom.rs: diff --git a/server/target/debug/deps/bytestring-8132529e8ead8757.d b/server/target/debug/deps/bytestring-8132529e8ead8757.d new file mode 100644 index 0000000..e284625 --- /dev/null +++ b/server/target/debug/deps/bytestring-8132529e8ead8757.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/bytestring-8132529e8ead8757.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytestring-1.5.0/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libbytestring-8132529e8ead8757.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytestring-1.5.0/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libbytestring-8132529e8ead8757.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytestring-1.5.0/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytestring-1.5.0/src/lib.rs: diff --git a/server/target/debug/deps/bytestring-d686ff26992177f3.d b/server/target/debug/deps/bytestring-d686ff26992177f3.d new file mode 100644 index 0000000..a17b0c2 --- /dev/null +++ b/server/target/debug/deps/bytestring-d686ff26992177f3.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/bytestring-d686ff26992177f3.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytestring-1.5.0/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libbytestring-d686ff26992177f3.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytestring-1.5.0/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytestring-1.5.0/src/lib.rs: diff --git a/server/target/debug/deps/cc-671d93a892ec8434.d b/server/target/debug/deps/cc-671d93a892ec8434.d new file mode 100644 index 0000000..0ee4236 --- /dev/null +++ b/server/target/debug/deps/cc-671d93a892ec8434.d @@ -0,0 +1,23 @@ +/home/z/my-project/projects/server/target/debug/deps/cc-671d93a892ec8434.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/async_executor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/command_runner.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/job_token.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/stderr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target/apple.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target/generated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target/llvm.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/command_helpers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/tool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/tempfile.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/utilities.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/flags.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/detect_compiler_family.c + +/home/z/my-project/projects/server/target/debug/deps/libcc-671d93a892ec8434.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/async_executor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/command_runner.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/job_token.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/stderr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target/apple.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target/generated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target/llvm.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/command_helpers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/tool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/tempfile.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/utilities.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/flags.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/detect_compiler_family.c + +/home/z/my-project/projects/server/target/debug/deps/libcc-671d93a892ec8434.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/async_executor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/command_runner.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/job_token.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/stderr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target/apple.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target/generated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target/llvm.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/command_helpers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/tool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/tempfile.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/utilities.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/flags.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/detect_compiler_family.c + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/async_executor.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/command_runner.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/job_token.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/parallel/stderr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target/apple.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target/generated.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target/llvm.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/target/parser.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/command_helpers.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/tool.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/tempfile.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/utilities.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/flags.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.59/src/detect_compiler_family.c: diff --git a/server/target/debug/deps/cfg_if-e7f3f42eb79a8477.d b/server/target/debug/deps/cfg_if-e7f3f42eb79a8477.d new file mode 100644 index 0000000..1bc28ac --- /dev/null +++ b/server/target/debug/deps/cfg_if-e7f3f42eb79a8477.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/cfg_if-e7f3f42eb79a8477.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libcfg_if-e7f3f42eb79a8477.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs: diff --git a/server/target/debug/deps/cfg_if-ea139eb6b6bdeb93.d b/server/target/debug/deps/cfg_if-ea139eb6b6bdeb93.d new file mode 100644 index 0000000..4cca8a3 --- /dev/null +++ b/server/target/debug/deps/cfg_if-ea139eb6b6bdeb93.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/cfg_if-ea139eb6b6bdeb93.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libcfg_if-ea139eb6b6bdeb93.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libcfg_if-ea139eb6b6bdeb93.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs: diff --git a/server/target/debug/deps/chrono-23fc8a73c22da5dc.d b/server/target/debug/deps/chrono-23fc8a73c22da5dc.d new file mode 100644 index 0000000..8fa8a02 --- /dev/null +++ b/server/target/debug/deps/chrono-23fc8a73c22da5dc.d @@ -0,0 +1,38 @@ +/home/z/my-project/projects/server/target/debug/deps/chrono-23fc8a73c22da5dc.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/time_delta.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/date.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/datetime/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/datetime/serde.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/formatting.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/parsed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/scan.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/strftime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/locales.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/date/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/datetime/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/datetime/serde.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/internals.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/isoweek.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/time/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/time/serde.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/fixed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/unix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/tz_info/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/tz_info/timezone.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/tz_info/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/tz_info/rule.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/utc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/round.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/weekday.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/weekday_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/month.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/traits.rs + +/home/z/my-project/projects/server/target/debug/deps/libchrono-23fc8a73c22da5dc.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/time_delta.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/date.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/datetime/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/datetime/serde.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/formatting.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/parsed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/scan.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/strftime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/locales.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/date/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/datetime/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/datetime/serde.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/internals.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/isoweek.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/time/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/time/serde.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/fixed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/unix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/tz_info/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/tz_info/timezone.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/tz_info/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/tz_info/rule.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/utc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/round.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/weekday.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/weekday_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/month.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/traits.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/time_delta.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/date.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/datetime/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/datetime/serde.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/formatting.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/parsed.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/parse.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/scan.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/strftime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/format/locales.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/date/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/datetime/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/datetime/serde.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/internals.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/isoweek.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/time/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/naive/time/serde.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/fixed.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/unix.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/tz_info/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/tz_info/timezone.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/tz_info/parser.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/local/tz_info/rule.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/offset/utc.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/round.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/weekday.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/weekday_set.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/month.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/chrono-0.4.44/src/traits.rs: diff --git a/server/target/debug/deps/colorchoice-9ca51bc4fd4a1951.d b/server/target/debug/deps/colorchoice-9ca51bc4fd4a1951.d new file mode 100644 index 0000000..596aec7 --- /dev/null +++ b/server/target/debug/deps/colorchoice-9ca51bc4fd4a1951.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/colorchoice-9ca51bc4fd4a1951.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.5/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libcolorchoice-9ca51bc4fd4a1951.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.5/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.5/src/lib.rs: diff --git a/server/target/debug/deps/convert_case-a45097cb563b0977.d b/server/target/debug/deps/convert_case-a45097cb563b0977.d new file mode 100644 index 0000000..177a721 --- /dev/null +++ b/server/target/debug/deps/convert_case-a45097cb563b0977.d @@ -0,0 +1,11 @@ +/home/z/my-project/projects/server/target/debug/deps/convert_case-a45097cb563b0977.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/boundary.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/case.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/converter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/pattern.rs + +/home/z/my-project/projects/server/target/debug/deps/libconvert_case-a45097cb563b0977.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/boundary.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/case.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/converter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/pattern.rs + +/home/z/my-project/projects/server/target/debug/deps/libconvert_case-a45097cb563b0977.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/boundary.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/case.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/converter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/pattern.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/boundary.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/case.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/converter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.10.0/src/pattern.rs: diff --git a/server/target/debug/deps/cookie-d99cf81ae3daa0bb.d b/server/target/debug/deps/cookie-d99cf81ae3daa0bb.d new file mode 100644 index 0000000..d6fa55e --- /dev/null +++ b/server/target/debug/deps/cookie-d99cf81ae3daa0bb.d @@ -0,0 +1,11 @@ +/home/z/my-project/projects/server/target/debug/deps/cookie-d99cf81ae3daa0bb.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/jar.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/delta.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/draft.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/expiration.rs + +/home/z/my-project/projects/server/target/debug/deps/libcookie-d99cf81ae3daa0bb.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/jar.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/delta.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/draft.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/expiration.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/builder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/parse.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/jar.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/delta.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/draft.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cookie-0.16.2/src/expiration.rs: diff --git a/server/target/debug/deps/cpufeatures-bcdb2005199d2b73.d b/server/target/debug/deps/cpufeatures-bcdb2005199d2b73.d new file mode 100644 index 0000000..8a2e16b --- /dev/null +++ b/server/target/debug/deps/cpufeatures-bcdb2005199d2b73.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/deps/cpufeatures-bcdb2005199d2b73.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/x86.rs + +/home/z/my-project/projects/server/target/debug/deps/libcpufeatures-bcdb2005199d2b73.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/x86.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/x86.rs: diff --git a/server/target/debug/deps/crc32fast-40fb1b1245edb67f.d b/server/target/debug/deps/crc32fast-40fb1b1245edb67f.d new file mode 100644 index 0000000..de50c17 --- /dev/null +++ b/server/target/debug/deps/crc32fast-40fb1b1245edb67f.d @@ -0,0 +1,10 @@ +/home/z/my-project/projects/server/target/debug/deps/crc32fast-40fb1b1245edb67f.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/baseline.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/combine.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/specialized/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/table.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/specialized/pclmulqdq.rs + +/home/z/my-project/projects/server/target/debug/deps/libcrc32fast-40fb1b1245edb67f.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/baseline.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/combine.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/specialized/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/table.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/specialized/pclmulqdq.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/baseline.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/combine.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/specialized/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/table.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/specialized/pclmulqdq.rs: diff --git a/server/target/debug/deps/crossbeam_utils-20a9bf10360256b6.d b/server/target/debug/deps/crossbeam_utils-20a9bf10360256b6.d new file mode 100644 index 0000000..62b83d6 --- /dev/null +++ b/server/target/debug/deps/crossbeam_utils-20a9bf10360256b6.d @@ -0,0 +1,17 @@ +/home/z/my-project/projects/server/target/debug/deps/crossbeam_utils-20a9bf10360256b6.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/seq_lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/atomic_cell.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/consume.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/cache_padded.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/backoff.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/once_lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/parker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/sharded_lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/wait_group.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/thread.rs + +/home/z/my-project/projects/server/target/debug/deps/libcrossbeam_utils-20a9bf10360256b6.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/seq_lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/atomic_cell.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/consume.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/cache_padded.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/backoff.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/once_lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/parker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/sharded_lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/wait_group.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/thread.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/seq_lock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/atomic_cell.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/consume.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/cache_padded.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/backoff.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/once_lock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/parker.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/sharded_lock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/wait_group.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/thread.rs: diff --git a/server/target/debug/deps/crypto_common-a8d1172f317582cf.d b/server/target/debug/deps/crypto_common-a8d1172f317582cf.d new file mode 100644 index 0000000..65d916a --- /dev/null +++ b/server/target/debug/deps/crypto_common-a8d1172f317582cf.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/crypto_common-a8d1172f317582cf.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libcrypto_common-a8d1172f317582cf.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/src/lib.rs: diff --git a/server/target/debug/deps/dashmap-7d5f8ee79891437c.d b/server/target/debug/deps/dashmap-7d5f8ee79891437c.d new file mode 100644 index 0000000..c65a0f2 --- /dev/null +++ b/server/target/debug/deps/dashmap-7d5f8ee79891437c.d @@ -0,0 +1,20 @@ +/home/z/my-project/projects/server/target/debug/deps/dashmap-7d5f8ee79891437c.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/iter_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/mapref/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/mapref/entry.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/mapref/multiple.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/mapref/one.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/read_only.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/setref/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/setref/multiple.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/setref/one.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/t.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/try_result.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/util.rs + +/home/z/my-project/projects/server/target/debug/deps/libdashmap-7d5f8ee79891437c.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/iter_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/mapref/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/mapref/entry.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/mapref/multiple.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/mapref/one.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/read_only.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/setref/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/setref/multiple.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/setref/one.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/t.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/try_result.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/util.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/iter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/iter_set.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/lock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/mapref/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/mapref/entry.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/mapref/multiple.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/mapref/one.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/read_only.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/set.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/setref/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/setref/multiple.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/setref/one.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/t.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/try_result.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dashmap-6.1.0/src/util.rs: diff --git a/server/target/debug/deps/deranged-a0cb6f0e7c0d1075.d b/server/target/debug/deps/deranged-a0cb6f0e7c0d1075.d new file mode 100644 index 0000000..d2736fe --- /dev/null +++ b/server/target/debug/deps/deranged-a0cb6f0e7c0d1075.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/deps/deranged-a0cb6f0e7c0d1075.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/deranged-0.5.8/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/deranged-0.5.8/src/unsafe_wrapper.rs + +/home/z/my-project/projects/server/target/debug/deps/libderanged-a0cb6f0e7c0d1075.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/deranged-0.5.8/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/deranged-0.5.8/src/unsafe_wrapper.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/deranged-0.5.8/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/deranged-0.5.8/src/unsafe_wrapper.rs: diff --git a/server/target/debug/deps/derive_more-933abf9cf5a819d3.d b/server/target/debug/deps/derive_more-933abf9cf5a819d3.d new file mode 100644 index 0000000..33f8a21 --- /dev/null +++ b/server/target/debug/deps/derive_more-933abf9cf5a819d3.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/derive_more-933abf9cf5a819d3.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-2.1.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-2.1.1/src/as.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-2.1.1/src/as_dyn_error.rs + +/home/z/my-project/projects/server/target/debug/deps/libderive_more-933abf9cf5a819d3.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-2.1.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-2.1.1/src/as.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-2.1.1/src/as_dyn_error.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-2.1.1/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-2.1.1/src/as.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-2.1.1/src/as_dyn_error.rs: diff --git a/server/target/debug/deps/derive_more_impl-b3d3069484fc3004.d b/server/target/debug/deps/derive_more_impl-b3d3069484fc3004.d new file mode 100644 index 0000000..a6e95ea --- /dev/null +++ b/server/target/debug/deps/derive_more_impl-b3d3069484fc3004.d @@ -0,0 +1,24 @@ +/home/z/my-project/projects/server/target/debug/deps/derive_more_impl-b3d3069484fc3004.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/as/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/as/mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/as/ref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/deref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/deref_mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/fmt/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/fmt/display.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/fmt/parsing.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/from.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/parsing.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../README.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/as_ref.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/deref.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/deref_mut.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/display.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/error.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/from.md + +/home/z/my-project/projects/server/target/debug/deps/libderive_more_impl-b3d3069484fc3004.so: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/as/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/as/mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/as/ref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/deref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/deref_mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/fmt/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/fmt/display.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/fmt/parsing.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/from.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/parsing.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../README.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/as_ref.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/deref.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/deref_mut.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/display.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/error.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/from.md + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/utils.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/as/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/as/mut.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/as/ref.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/deref.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/deref_mut.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/fmt/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/fmt/display.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/fmt/parsing.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/from.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/parsing.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../README.md: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/as_ref.md: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/deref.md: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/deref_mut.md: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/display.md: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/error.md: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-impl-2.1.1/src/../doc/from.md: diff --git a/server/target/debug/deps/digest-e2bbb19e0ee0d5a3.d b/server/target/debug/deps/digest-e2bbb19e0ee0d5a3.d new file mode 100644 index 0000000..420c69c --- /dev/null +++ b/server/target/debug/deps/digest-e2bbb19e0ee0d5a3.d @@ -0,0 +1,11 @@ +/home/z/my-project/projects/server/target/debug/deps/digest-e2bbb19e0ee0d5a3.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/ct_variable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/rt_variable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/wrapper.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/xof_reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/digest.rs + +/home/z/my-project/projects/server/target/debug/deps/libdigest-e2bbb19e0ee0d5a3.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/ct_variable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/rt_variable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/wrapper.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/xof_reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/digest.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/ct_variable.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/rt_variable.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/wrapper.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/xof_reader.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/digest.rs: diff --git a/server/target/debug/deps/displaydoc-ff85fd5314252f02.d b/server/target/debug/deps/displaydoc-ff85fd5314252f02.d new file mode 100644 index 0000000..79d9b05 --- /dev/null +++ b/server/target/debug/deps/displaydoc-ff85fd5314252f02.d @@ -0,0 +1,8 @@ +/home/z/my-project/projects/server/target/debug/deps/displaydoc-ff85fd5314252f02.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/attr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/expand.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/fmt.rs + +/home/z/my-project/projects/server/target/debug/deps/libdisplaydoc-ff85fd5314252f02.so: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/attr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/expand.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/fmt.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/attr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/expand.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/fmt.rs: diff --git a/server/target/debug/deps/encoding_rs-001d828871cedfd2.d b/server/target/debug/deps/encoding_rs-001d828871cedfd2.d new file mode 100644 index 0000000..27dc8cc --- /dev/null +++ b/server/target/debug/deps/encoding_rs-001d828871cedfd2.d @@ -0,0 +1,23 @@ +/home/z/my-project/projects/server/target/debug/deps/encoding_rs-001d828871cedfd2.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/big5.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/euc_jp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/euc_kr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/gb18030.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/gb18030_2022.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/iso_2022_jp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/replacement.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/shift_jis.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/single_byte.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/utf_16.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/utf_8.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/x_user_defined.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/ascii.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/data.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/handles.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/variant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/mem.rs + +/home/z/my-project/projects/server/target/debug/deps/libencoding_rs-001d828871cedfd2.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/big5.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/euc_jp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/euc_kr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/gb18030.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/gb18030_2022.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/iso_2022_jp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/replacement.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/shift_jis.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/single_byte.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/utf_16.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/utf_8.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/x_user_defined.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/ascii.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/data.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/handles.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/variant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/mem.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/big5.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/euc_jp.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/euc_kr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/gb18030.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/gb18030_2022.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/iso_2022_jp.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/replacement.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/shift_jis.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/single_byte.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/utf_16.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/utf_8.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/x_user_defined.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/ascii.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/data.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/handles.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/variant.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/mem.rs: diff --git a/server/target/debug/deps/env_filter-730007a9d8c1ee41.d b/server/target/debug/deps/env_filter-730007a9d8c1ee41.d new file mode 100644 index 0000000..adb88f6 --- /dev/null +++ b/server/target/debug/deps/env_filter-730007a9d8c1ee41.d @@ -0,0 +1,10 @@ +/home/z/my-project/projects/server/target/debug/deps/env_filter-730007a9d8c1ee41.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/directive.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/filter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/filtered_log.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/op.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/parser.rs + +/home/z/my-project/projects/server/target/debug/deps/libenv_filter-730007a9d8c1ee41.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/directive.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/filter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/filtered_log.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/op.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/parser.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/directive.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/filter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/filtered_log.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/op.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_filter-1.0.1/src/parser.rs: diff --git a/server/target/debug/deps/env_logger-c692726bb662edc1.d b/server/target/debug/deps/env_logger-c692726bb662edc1.d new file mode 100644 index 0000000..a66ad70 --- /dev/null +++ b/server/target/debug/deps/env_logger-c692726bb662edc1.d @@ -0,0 +1,11 @@ +/home/z/my-project/projects/server/target/debug/deps/env_logger-c692726bb662edc1.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/logger.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/writer/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/writer/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/writer/target.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/fmt/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/fmt/humantime.rs + +/home/z/my-project/projects/server/target/debug/deps/libenv_logger-c692726bb662edc1.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/logger.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/writer/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/writer/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/writer/target.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/fmt/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/fmt/humantime.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/logger.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/writer/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/writer/buffer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/writer/target.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/fmt/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/env_logger-0.11.10/src/fmt/humantime.rs: diff --git a/server/target/debug/deps/equivalent-2756b7cee286c32d.d b/server/target/debug/deps/equivalent-2756b7cee286c32d.d new file mode 100644 index 0000000..835e6e2 --- /dev/null +++ b/server/target/debug/deps/equivalent-2756b7cee286c32d.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/equivalent-2756b7cee286c32d.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libequivalent-2756b7cee286c32d.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs: diff --git a/server/target/debug/deps/errno-ff1bed9838992472.d b/server/target/debug/deps/errno-ff1bed9838992472.d new file mode 100644 index 0000000..15d0e34 --- /dev/null +++ b/server/target/debug/deps/errno-ff1bed9838992472.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/deps/errno-ff1bed9838992472.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/unix.rs + +/home/z/my-project/projects/server/target/debug/deps/liberrno-ff1bed9838992472.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/unix.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/unix.rs: diff --git a/server/target/debug/deps/find_msvc_tools-0523a17391f19ae0.d b/server/target/debug/deps/find_msvc_tools-0523a17391f19ae0.d new file mode 100644 index 0000000..dc3092b --- /dev/null +++ b/server/target/debug/deps/find_msvc_tools-0523a17391f19ae0.d @@ -0,0 +1,9 @@ +/home/z/my-project/projects/server/target/debug/deps/find_msvc_tools-0523a17391f19ae0.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/find_tools.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/tool.rs + +/home/z/my-project/projects/server/target/debug/deps/libfind_msvc_tools-0523a17391f19ae0.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/find_tools.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/tool.rs + +/home/z/my-project/projects/server/target/debug/deps/libfind_msvc_tools-0523a17391f19ae0.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/find_tools.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/tool.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/find_tools.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/tool.rs: diff --git a/server/target/debug/deps/flate2-6ffae8702e07e1a1.d b/server/target/debug/deps/flate2-6ffae8702e07e1a1.d new file mode 100644 index 0000000..d131c92 --- /dev/null +++ b/server/target/debug/deps/flate2-6ffae8702e07e1a1.d @@ -0,0 +1,23 @@ +/home/z/my-project/projects/server/target/debug/deps/flate2-6ffae8702e07e1a1.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/bufreader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/crc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/deflate/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/deflate/bufread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/deflate/read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/deflate/write.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/ffi/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/ffi/miniz_oxide.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/gz/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/gz/bufread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/gz/read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/gz/write.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/mem.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/zio.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/zlib/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/zlib/bufread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/zlib/read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/zlib/write.rs + +/home/z/my-project/projects/server/target/debug/deps/libflate2-6ffae8702e07e1a1.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/bufreader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/crc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/deflate/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/deflate/bufread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/deflate/read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/deflate/write.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/ffi/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/ffi/miniz_oxide.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/gz/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/gz/bufread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/gz/read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/gz/write.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/mem.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/zio.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/zlib/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/zlib/bufread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/zlib/read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/zlib/write.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/bufreader.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/crc.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/deflate/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/deflate/bufread.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/deflate/read.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/deflate/write.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/ffi/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/ffi/miniz_oxide.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/gz/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/gz/bufread.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/gz/read.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/gz/write.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/mem.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/zio.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/zlib/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/zlib/bufread.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/zlib/read.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.9/src/zlib/write.rs: diff --git a/server/target/debug/deps/fnv-bfb966cefab7ffbd.d b/server/target/debug/deps/fnv-bfb966cefab7ffbd.d new file mode 100644 index 0000000..bbfba64 --- /dev/null +++ b/server/target/debug/deps/fnv-bfb966cefab7ffbd.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/fnv-bfb966cefab7ffbd.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libfnv-bfb966cefab7ffbd.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs: diff --git a/server/target/debug/deps/foldhash-c82b54d8cb0eeb5d.d b/server/target/debug/deps/foldhash-c82b54d8cb0eeb5d.d new file mode 100644 index 0000000..f4f28bd --- /dev/null +++ b/server/target/debug/deps/foldhash-c82b54d8cb0eeb5d.d @@ -0,0 +1,9 @@ +/home/z/my-project/projects/server/target/debug/deps/foldhash-c82b54d8cb0eeb5d.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/fast.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/quality.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/seed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/convenience.rs + +/home/z/my-project/projects/server/target/debug/deps/libfoldhash-c82b54d8cb0eeb5d.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/fast.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/quality.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/seed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/convenience.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/fast.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/quality.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/seed.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/convenience.rs: diff --git a/server/target/debug/deps/form_urlencoded-42d2b8476f4f1da3.d b/server/target/debug/deps/form_urlencoded-42d2b8476f4f1da3.d new file mode 100644 index 0000000..f0ee009 --- /dev/null +++ b/server/target/debug/deps/form_urlencoded-42d2b8476f4f1da3.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/form_urlencoded-42d2b8476f4f1da3.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.2/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libform_urlencoded-42d2b8476f4f1da3.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.2/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.2/src/lib.rs: diff --git a/server/target/debug/deps/futures-ebf41c02f68175ae.d b/server/target/debug/deps/futures-ebf41c02f68175ae.d new file mode 100644 index 0000000..3ca7d96 --- /dev/null +++ b/server/target/debug/deps/futures-ebf41c02f68175ae.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/futures-ebf41c02f68175ae.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.32/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libfutures-ebf41c02f68175ae.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.32/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.32/src/lib.rs: diff --git a/server/target/debug/deps/futures_channel-e944fdf21782c068.d b/server/target/debug/deps/futures_channel-e944fdf21782c068.d new file mode 100644 index 0000000..8c018da --- /dev/null +++ b/server/target/debug/deps/futures_channel-e944fdf21782c068.d @@ -0,0 +1,10 @@ +/home/z/my-project/projects/server/target/debug/deps/futures_channel-e944fdf21782c068.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/mpsc/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/mpsc/queue.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/mpsc/sink_impl.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/oneshot.rs + +/home/z/my-project/projects/server/target/debug/deps/libfutures_channel-e944fdf21782c068.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/mpsc/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/mpsc/queue.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/mpsc/sink_impl.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/oneshot.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/lock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/mpsc/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/mpsc/queue.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/mpsc/sink_impl.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.32/src/oneshot.rs: diff --git a/server/target/debug/deps/futures_core-e83920f47bfcd7f8.d b/server/target/debug/deps/futures_core-e83920f47bfcd7f8.d new file mode 100644 index 0000000..c345dea --- /dev/null +++ b/server/target/debug/deps/futures_core-e83920f47bfcd7f8.d @@ -0,0 +1,11 @@ +/home/z/my-project/projects/server/target/debug/deps/futures_core-e83920f47bfcd7f8.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/future.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/poll.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/__internal/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/__internal/atomic_waker.rs + +/home/z/my-project/projects/server/target/debug/deps/libfutures_core-e83920f47bfcd7f8.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/future.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/poll.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/__internal/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/__internal/atomic_waker.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/future.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/stream.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/poll.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/__internal/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.32/src/task/__internal/atomic_waker.rs: diff --git a/server/target/debug/deps/futures_executor-38a4aa07b9732c70.d b/server/target/debug/deps/futures_executor-38a4aa07b9732c70.d new file mode 100644 index 0000000..e6f7a2f --- /dev/null +++ b/server/target/debug/deps/futures_executor-38a4aa07b9732c70.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/futures_executor-38a4aa07b9732c70.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.32/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.32/src/local_pool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.32/src/enter.rs + +/home/z/my-project/projects/server/target/debug/deps/libfutures_executor-38a4aa07b9732c70.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.32/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.32/src/local_pool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.32/src/enter.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.32/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.32/src/local_pool.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.32/src/enter.rs: diff --git a/server/target/debug/deps/futures_io-bd1e5593ba9dde72.d b/server/target/debug/deps/futures_io-bd1e5593ba9dde72.d new file mode 100644 index 0000000..5086dc6 --- /dev/null +++ b/server/target/debug/deps/futures_io-bd1e5593ba9dde72.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/futures_io-bd1e5593ba9dde72.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.32/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libfutures_io-bd1e5593ba9dde72.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.32/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.32/src/lib.rs: diff --git a/server/target/debug/deps/futures_macro-7d2d5f7ca4ca763c.d b/server/target/debug/deps/futures_macro-7d2d5f7ca4ca763c.d new file mode 100644 index 0000000..5fa8586 --- /dev/null +++ b/server/target/debug/deps/futures_macro-7d2d5f7ca4ca763c.d @@ -0,0 +1,9 @@ +/home/z/my-project/projects/server/target/debug/deps/futures_macro-7d2d5f7ca4ca763c.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.32/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.32/src/executor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.32/src/join.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.32/src/select.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.32/src/stream_select.rs + +/home/z/my-project/projects/server/target/debug/deps/libfutures_macro-7d2d5f7ca4ca763c.so: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.32/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.32/src/executor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.32/src/join.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.32/src/select.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.32/src/stream_select.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.32/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.32/src/executor.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.32/src/join.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.32/src/select.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.32/src/stream_select.rs: diff --git a/server/target/debug/deps/futures_sink-18cbfc6237452294.d b/server/target/debug/deps/futures_sink-18cbfc6237452294.d new file mode 100644 index 0000000..8ff0548 --- /dev/null +++ b/server/target/debug/deps/futures_sink-18cbfc6237452294.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/futures_sink-18cbfc6237452294.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.32/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libfutures_sink-18cbfc6237452294.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.32/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.32/src/lib.rs: diff --git a/server/target/debug/deps/futures_task-af9699ce74df53d5.d b/server/target/debug/deps/futures_task-af9699ce74df53d5.d new file mode 100644 index 0000000..1099bde --- /dev/null +++ b/server/target/debug/deps/futures_task-af9699ce74df53d5.d @@ -0,0 +1,11 @@ +/home/z/my-project/projects/server/target/debug/deps/futures_task-af9699ce74df53d5.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/spawn.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/arc_wake.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/waker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/waker_ref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/future_obj.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/noop_waker.rs + +/home/z/my-project/projects/server/target/debug/deps/libfutures_task-af9699ce74df53d5.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/spawn.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/arc_wake.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/waker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/waker_ref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/future_obj.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/noop_waker.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/spawn.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/arc_wake.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/waker.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/waker_ref.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/future_obj.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.32/src/noop_waker.rs: diff --git a/server/target/debug/deps/futures_util-fcaa8b6175a75930.d b/server/target/debug/deps/futures_util-fcaa8b6175a75930.d new file mode 100644 index 0000000..6dd3628 --- /dev/null +++ b/server/target/debug/deps/futures_util-fcaa8b6175a75930.d @@ -0,0 +1,181 @@ +/home/z/my-project/projects/server/target/debug/deps/futures_util-fcaa8b6175a75930.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/poll.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/pending.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/join_mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/select_mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/stream_select_mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/random.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/flatten.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/fuse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/catch_unwind.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/remote_handle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/shared.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/into_future.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/try_flatten.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/try_flatten_err.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/lazy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/pending.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/maybe_done.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_maybe_done.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/option.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/poll_fn.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/poll_immediate.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/ready.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/always_ready.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/join.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/join_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_join.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_join_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_select.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select_ok.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/either.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/abortable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/chain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/collect.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/unzip.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/concat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/count.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/cycle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/enumerate.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/filter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/filter_map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/flatten.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/fold.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/any.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/forward.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/for_each.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/fuse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/into_future.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/next.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/select_next_some.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/peek.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/skip.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/skip_while.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take_while.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take_until.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/then.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/zip.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/chunks.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/ready_chunks.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/scan.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/buffer_unordered.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/buffered.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/flatten_unordered.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/for_each_concurrent.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/split.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/catch_unwind.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/and_then.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/into_stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/or_else.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_next.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_for_each.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_filter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_filter_map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_flatten.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_flatten_unordered.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_collect.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_concat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_chunks.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_ready_chunks.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_fold.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_unfold.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_skip_while.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_take_while.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_buffer_unordered.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_buffered.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_for_each_concurrent.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/into_async_read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_any.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/repeat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/repeat_with.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/empty.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/once.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/pending.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/poll_fn.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/poll_immediate.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select_with_strategy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/unfold.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_ordered.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/abort.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/task.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/ready_to_run_queue.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/abortable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/close.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/drain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/fanout.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/feed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/flush.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/err_into.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/map_err.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/send.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/send_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/unfold.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/with.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/with_flat_map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/task/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/task/spawn.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/never.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/allow_std.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/buf_reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/buf_writer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/line_writer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/chain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/close.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/copy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/copy_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/copy_buf_abortable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/cursor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/empty.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/fill_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/flush.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/into_sink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/lines.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_vectored.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_exact.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_line.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_to_end.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_to_string.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_until.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/repeat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/seek.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/sink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/split.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/take.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/window.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/write.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/write_vectored.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/write_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lock/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lock/bilock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lock/mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/abortable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/fns.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/unfold_state.rs + +/home/z/my-project/projects/server/target/debug/deps/libfutures_util-fcaa8b6175a75930.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/poll.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/pending.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/join_mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/select_mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/stream_select_mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/random.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/flatten.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/fuse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/catch_unwind.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/remote_handle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/shared.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/into_future.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/try_flatten.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/try_flatten_err.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/lazy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/pending.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/maybe_done.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_maybe_done.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/option.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/poll_fn.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/poll_immediate.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/ready.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/always_ready.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/join.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/join_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_join.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_join_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_select.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select_ok.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/either.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/abortable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/chain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/collect.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/unzip.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/concat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/count.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/cycle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/enumerate.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/filter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/filter_map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/flatten.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/fold.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/any.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/forward.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/for_each.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/fuse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/into_future.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/next.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/select_next_some.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/peek.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/skip.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/skip_while.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take_while.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take_until.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/then.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/zip.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/chunks.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/ready_chunks.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/scan.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/buffer_unordered.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/buffered.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/flatten_unordered.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/for_each_concurrent.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/split.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/catch_unwind.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/and_then.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/into_stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/or_else.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_next.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_for_each.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_filter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_filter_map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_flatten.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_flatten_unordered.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_collect.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_concat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_chunks.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_ready_chunks.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_fold.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_unfold.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_skip_while.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_take_while.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_buffer_unordered.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_buffered.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_for_each_concurrent.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/into_async_read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_any.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/repeat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/repeat_with.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/empty.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/once.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/pending.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/poll_fn.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/poll_immediate.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select_with_strategy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/unfold.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_ordered.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/abort.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/task.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/ready_to_run_queue.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/abortable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/close.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/drain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/fanout.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/feed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/flush.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/err_into.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/map_err.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/send.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/send_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/unfold.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/with.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/with_flat_map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/task/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/task/spawn.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/never.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/allow_std.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/buf_reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/buf_writer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/line_writer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/chain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/close.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/copy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/copy_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/copy_buf_abortable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/cursor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/empty.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/fill_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/flush.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/into_sink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/lines.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_vectored.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_exact.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_line.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_to_end.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_to_string.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_until.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/repeat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/seek.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/sink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/split.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/take.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/window.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/write.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/write_vectored.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/write_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lock/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lock/bilock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lock/mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/abortable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/fns.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/unfold_state.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/poll.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/pending.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/join_mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/select_mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/stream_select_mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/async_await/random.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/flatten.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/fuse.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/catch_unwind.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/remote_handle.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/future/shared.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/into_future.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/try_flatten.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_future/try_flatten_err.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/lazy.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/pending.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/maybe_done.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_maybe_done.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/option.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/poll_fn.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/poll_immediate.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/ready.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/always_ready.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/join.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/join_all.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select_all.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_join.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_join_all.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/try_select.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/select_ok.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/either.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/future/abortable.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/chain.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/collect.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/unzip.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/concat.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/count.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/cycle.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/enumerate.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/filter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/filter_map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/flatten.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/fold.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/any.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/all.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/forward.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/for_each.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/fuse.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/into_future.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/next.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/select_next_some.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/peek.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/skip.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/skip_while.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take_while.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/take_until.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/then.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/zip.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/chunks.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/ready_chunks.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/scan.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/buffer_unordered.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/buffered.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/flatten_unordered.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/for_each_concurrent.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/split.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/stream/catch_unwind.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/and_then.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/into_stream.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/or_else.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_next.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_for_each.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_filter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_filter_map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_flatten.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_flatten_unordered.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_collect.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_concat.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_chunks.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_ready_chunks.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_fold.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_unfold.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_skip_while.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_take_while.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_buffer_unordered.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_buffered.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_for_each_concurrent.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/into_async_read.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_all.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/try_stream/try_any.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/iter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/repeat.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/repeat_with.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/empty.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/once.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/pending.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/poll_fn.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/poll_immediate.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select_with_strategy.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/unfold.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_ordered.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/abort.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/iter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/task.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/futures_unordered/ready_to_run_queue.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/select_all.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/stream/abortable.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/close.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/drain.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/fanout.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/feed.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/flush.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/err_into.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/map_err.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/send.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/send_all.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/unfold.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/with.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/with_flat_map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/sink/buffer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/task/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/task/spawn.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/never.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/allow_std.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/buf_reader.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/buf_writer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/line_writer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/chain.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/close.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/copy.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/copy_buf.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/copy_buf_abortable.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/cursor.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/empty.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/fill_buf.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/flush.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/into_sink.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/lines.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_vectored.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_exact.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_line.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_to_end.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_to_string.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/read_until.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/repeat.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/seek.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/sink.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/split.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/take.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/window.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/write.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/write_vectored.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/io/write_all.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lock/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lock/bilock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/lock/mutex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/abortable.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/fns.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.32/src/unfold_state.rs: diff --git a/server/target/debug/deps/generic_array-dc61c3363f471d59.d b/server/target/debug/deps/generic_array-dc61c3363f471d59.d new file mode 100644 index 0000000..e692207 --- /dev/null +++ b/server/target/debug/deps/generic_array-dc61c3363f471d59.d @@ -0,0 +1,11 @@ +/home/z/my-project/projects/server/target/debug/deps/generic_array-dc61c3363f471d59.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/hex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/arr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/functional.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/sequence.rs + +/home/z/my-project/projects/server/target/debug/deps/libgeneric_array-dc61c3363f471d59.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/hex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/arr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/functional.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/sequence.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/hex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/impls.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/arr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/functional.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/iter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/sequence.rs: diff --git a/server/target/debug/deps/getrandom-962d43d3c1c6fac9.d b/server/target/debug/deps/getrandom-962d43d3c1c6fac9.d new file mode 100644 index 0000000..6249b66 --- /dev/null +++ b/server/target/debug/deps/getrandom-962d43d3c1c6fac9.d @@ -0,0 +1,15 @@ +/home/z/my-project/projects/server/target/debug/deps/getrandom-962d43d3c1c6fac9.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/../README.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/use_file.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/../utils/sys_fill_exact.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/../utils/get_errno.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/../utils/sanitizer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/linux_android_with_fallback.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/../utils/lazy_ptr.rs + +/home/z/my-project/projects/server/target/debug/deps/libgetrandom-962d43d3c1c6fac9.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/../README.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/use_file.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/../utils/sys_fill_exact.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/../utils/get_errno.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/../utils/sanitizer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/linux_android_with_fallback.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/../utils/lazy_ptr.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/util.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/../README.md: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/use_file.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/../utils/sys_fill_exact.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/../utils/get_errno.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/../utils/sanitizer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/linux_android_with_fallback.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.2/src/backends/../utils/lazy_ptr.rs: diff --git a/server/target/debug/deps/getrandom-b3889fd5f65bfec2.d b/server/target/debug/deps/getrandom-b3889fd5f65bfec2.d new file mode 100644 index 0000000..ed5a8a0 --- /dev/null +++ b/server/target/debug/deps/getrandom-b3889fd5f65bfec2.d @@ -0,0 +1,14 @@ +/home/z/my-project/projects/server/target/debug/deps/getrandom-b3889fd5f65bfec2.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/error_std_impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/../README.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/use_file.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/../util_libc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/linux_android_with_fallback.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/sanitizer.rs + +/home/z/my-project/projects/server/target/debug/deps/libgetrandom-b3889fd5f65bfec2.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/error_std_impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/../README.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/use_file.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/../util_libc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/linux_android_with_fallback.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/sanitizer.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/util.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/error_std_impls.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/../README.md: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/use_file.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/../util_libc.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/linux_android_with_fallback.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/backends/sanitizer.rs: diff --git a/server/target/debug/deps/getrandom-be1233102bc28025.d b/server/target/debug/deps/getrandom-be1233102bc28025.d new file mode 100644 index 0000000..4014fde --- /dev/null +++ b/server/target/debug/deps/getrandom-be1233102bc28025.d @@ -0,0 +1,12 @@ +/home/z/my-project/projects/server/target/debug/deps/getrandom-be1233102bc28025.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error_impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util_libc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/use_file.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lazy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/linux_android_with_fallback.rs + +/home/z/my-project/projects/server/target/debug/deps/libgetrandom-be1233102bc28025.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error_impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util_libc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/use_file.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lazy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/linux_android_with_fallback.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error_impls.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util_libc.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/use_file.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lazy.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/linux_android_with_fallback.rs: diff --git a/server/target/debug/deps/h2-e2fd7f76e10767d0.d b/server/target/debug/deps/h2-e2fd7f76e10767d0.d new file mode 100644 index 0000000..c831fb6 --- /dev/null +++ b/server/target/debug/deps/h2-e2fd7f76e10767d0.d @@ -0,0 +1,52 @@ +/home/z/my-project/projects/server/target/debug/deps/h2-e2fd7f76e10767d0.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/codec/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/codec/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/codec/framed_read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/codec/framed_write.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/decoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/encoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/header.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/huffman/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/huffman/table.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/table.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/connection.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/go_away.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/peer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/ping_pong.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/settings.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/counts.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/flow_control.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/prioritize.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/recv.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/send.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/state.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/store.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/streams.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/data.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/go_away.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/head.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/headers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/ping.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/priority.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/reason.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/reset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/settings.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/stream_id.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/window_update.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/client.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/server.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/share.rs + +/home/z/my-project/projects/server/target/debug/deps/libh2-e2fd7f76e10767d0.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/codec/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/codec/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/codec/framed_read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/codec/framed_write.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/decoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/encoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/header.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/huffman/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/huffman/table.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/table.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/connection.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/go_away.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/peer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/ping_pong.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/settings.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/counts.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/flow_control.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/prioritize.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/recv.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/send.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/state.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/store.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/streams.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/data.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/go_away.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/head.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/headers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/ping.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/priority.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/reason.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/reset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/settings.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/stream_id.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/window_update.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/client.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/server.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/share.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/codec/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/codec/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/codec/framed_read.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/codec/framed_write.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/decoder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/encoder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/header.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/huffman/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/huffman/table.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/hpack/table.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/connection.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/go_away.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/peer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/ping_pong.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/settings.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/buffer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/counts.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/flow_control.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/prioritize.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/recv.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/send.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/state.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/store.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/stream.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/proto/streams/streams.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/data.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/go_away.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/head.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/headers.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/ping.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/priority.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/reason.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/reset.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/settings.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/stream_id.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/util.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/frame/window_update.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/client.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/ext.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/server.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.3.27/src/share.rs: diff --git a/server/target/debug/deps/hashbrown-086f503f29587ce4.d b/server/target/debug/deps/hashbrown-086f503f29587ce4.d new file mode 100644 index 0000000..f7d94e4 --- /dev/null +++ b/server/target/debug/deps/hashbrown-086f503f29587ce4.d @@ -0,0 +1,20 @@ +/home/z/my-project/projects/server/target/debug/deps/hashbrown-086f503f29587ce4.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/sse2.rs + +/home/z/my-project/projects/server/target/debug/deps/libhashbrown-086f503f29587ce4.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/sse2.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/sse2.rs: diff --git a/server/target/debug/deps/hashbrown-90aa0807193b9849.d b/server/target/debug/deps/hashbrown-90aa0807193b9849.d new file mode 100644 index 0000000..30dbcbf --- /dev/null +++ b/server/target/debug/deps/hashbrown-90aa0807193b9849.d @@ -0,0 +1,15 @@ +/home/z/my-project/projects/server/target/debug/deps/hashbrown-90aa0807193b9849.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/alloc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/bitmask.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/external_trait_impls/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/scopeguard.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/table.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/sse2.rs + +/home/z/my-project/projects/server/target/debug/deps/libhashbrown-90aa0807193b9849.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/alloc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/bitmask.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/external_trait_impls/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/scopeguard.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/table.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/sse2.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/alloc.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/bitmask.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/external_trait_impls/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/scopeguard.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/set.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/table.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/sse2.rs: diff --git a/server/target/debug/deps/http-8cc0f90952a94539.d b/server/target/debug/deps/http-8cc0f90952a94539.d new file mode 100644 index 0000000..3e29d74 --- /dev/null +++ b/server/target/debug/deps/http-8cc0f90952a94539.d @@ -0,0 +1,24 @@ +/home/z/my-project/projects/server/target/debug/deps/http-8cc0f90952a94539.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/convert.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/header/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/header/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/header/name.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/header/value.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/method.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/request.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/response.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/status.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/authority.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/port.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/scheme.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/version.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/byte_str.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/extensions.rs + +/home/z/my-project/projects/server/target/debug/deps/libhttp-8cc0f90952a94539.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/convert.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/header/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/header/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/header/name.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/header/value.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/method.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/request.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/response.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/status.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/authority.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/port.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/scheme.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/version.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/byte_str.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/extensions.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/convert.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/header/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/header/map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/header/name.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/header/value.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/method.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/request.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/response.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/status.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/authority.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/builder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/path.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/port.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/uri/scheme.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/version.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/byte_str.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-0.2.12/src/extensions.rs: diff --git a/server/target/debug/deps/http_range-5b4ea6f89def8e3e.d b/server/target/debug/deps/http_range-5b4ea6f89def8e3e.d new file mode 100644 index 0000000..cd34474 --- /dev/null +++ b/server/target/debug/deps/http_range-5b4ea6f89def8e3e.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/http_range-5b4ea6f89def8e3e.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-range-0.1.5/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libhttp_range-5b4ea6f89def8e3e.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-range-0.1.5/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-range-0.1.5/src/lib.rs: diff --git a/server/target/debug/deps/httparse-a8ec7c153a3faeea.d b/server/target/debug/deps/httparse-a8ec7c153a3faeea.d new file mode 100644 index 0000000..2df9a44 --- /dev/null +++ b/server/target/debug/deps/httparse-a8ec7c153a3faeea.d @@ -0,0 +1,12 @@ +/home/z/my-project/projects/server/target/debug/deps/httparse-a8ec7c153a3faeea.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/swar.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/sse42.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/avx2.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/runtime.rs + +/home/z/my-project/projects/server/target/debug/deps/libhttparse-a8ec7c153a3faeea.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/swar.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/sse42.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/avx2.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/runtime.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/iter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/swar.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/sse42.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/avx2.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/runtime.rs: diff --git a/server/target/debug/deps/httpdate-b488394b8eb3fda5.d b/server/target/debug/deps/httpdate-b488394b8eb3fda5.d new file mode 100644 index 0000000..bcc444b --- /dev/null +++ b/server/target/debug/deps/httpdate-b488394b8eb3fda5.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/deps/httpdate-b488394b8eb3fda5.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httpdate-1.0.3/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httpdate-1.0.3/src/date.rs + +/home/z/my-project/projects/server/target/debug/deps/libhttpdate-b488394b8eb3fda5.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httpdate-1.0.3/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httpdate-1.0.3/src/date.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httpdate-1.0.3/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httpdate-1.0.3/src/date.rs: diff --git a/server/target/debug/deps/iana_time_zone-0d6162f939426278.d b/server/target/debug/deps/iana_time_zone-0d6162f939426278.d new file mode 100644 index 0000000..23acf10 --- /dev/null +++ b/server/target/debug/deps/iana_time_zone-0d6162f939426278.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/iana_time_zone-0d6162f939426278.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.65/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.65/src/ffi_utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.65/src/tz_linux.rs + +/home/z/my-project/projects/server/target/debug/deps/libiana_time_zone-0d6162f939426278.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.65/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.65/src/ffi_utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.65/src/tz_linux.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.65/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.65/src/ffi_utils.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iana-time-zone-0.1.65/src/tz_linux.rs: diff --git a/server/target/debug/deps/icu_collections-fa262f2c90f179b1.d b/server/target/debug/deps/icu_collections-fa262f2c90f179b1.d new file mode 100644 index 0000000..02f0b9a --- /dev/null +++ b/server/target/debug/deps/icu_collections-fa262f2c90f179b1.d @@ -0,0 +1,17 @@ +/home/z/my-project/projects/server/target/debug/deps/icu_collections-fa262f2c90f179b1.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/trie.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/cpinvlist.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvliststringlist/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/cptrie.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/impl_const.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/planes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/iterator_utils.rs + +/home/z/my-project/projects/server/target/debug/deps/libicu_collections-fa262f2c90f179b1.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/trie.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/cpinvlist.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvliststringlist/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/cptrie.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/impl_const.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/planes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/iterator_utils.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/trie.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/cpinvlist.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/utils.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvliststringlist/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/cptrie.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/impl_const.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/planes.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/iterator_utils.rs: diff --git a/server/target/debug/deps/icu_locale_core-9b1bba3cd6c778b5.d b/server/target/debug/deps/icu_locale_core-9b1bba3cd6c778b5.d new file mode 100644 index 0000000..3b38a2c --- /dev/null +++ b/server/target/debug/deps/icu_locale_core-9b1bba3cd6c778b5.d @@ -0,0 +1,64 @@ +/home/z/my-project/projects/server/target/debug/deps/icu_locale_core-9b1bba3cd6c778b5.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/helpers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/data.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/langid.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/locale.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/errors.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/langid.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/locale.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/litemap.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/other/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/other.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/fields.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/key.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/value.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attribute.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attributes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/key.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/keywords.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/subdivision.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/value.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/language.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/region.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/script.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variants.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/errors.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/calendar.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/collation.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency_format.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/emoji.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/first_day.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/hour_cycle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break_word.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_system.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_unit_override.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/numbering_system.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/region_override.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/regional_subdivision.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/sentence_supression.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/timezone.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/variant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/enum_keyword.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/struct_keyword.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/locale.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/zerovec.rs + +/home/z/my-project/projects/server/target/debug/deps/libicu_locale_core-9b1bba3cd6c778b5.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/helpers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/data.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/langid.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/locale.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/errors.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/langid.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/locale.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/litemap.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/other/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/other.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/fields.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/key.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/value.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attribute.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attributes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/key.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/keywords.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/subdivision.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/value.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/language.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/region.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/script.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variants.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/errors.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/calendar.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/collation.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency_format.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/emoji.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/first_day.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/hour_cycle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break_word.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_system.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_unit_override.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/numbering_system.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/region_override.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/regional_subdivision.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/sentence_supression.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/timezone.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/variant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/enum_keyword.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/struct_keyword.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/locale.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/zerovec.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/helpers.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/data.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/langid.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/locale.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/errors.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/langid.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/locale.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/litemap.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/other/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/other.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/fields.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/key.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/value.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attribute.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attributes.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/key.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/keywords.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/subdivision.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/value.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/language.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/region.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/script.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variant.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variants.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/errors.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/calendar.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/collation.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency_format.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/emoji.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/first_day.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/hour_cycle.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break_word.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_system.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_unit_override.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/numbering_system.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/region_override.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/regional_subdivision.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/sentence_supression.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/timezone.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/variant.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/enum_keyword.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/struct_keyword.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/locale.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/zerovec.rs: diff --git a/server/target/debug/deps/icu_normalizer-5f9d6fc65fca7bd3.d b/server/target/debug/deps/icu_normalizer-5f9d6fc65fca7bd3.d new file mode 100644 index 0000000..f41550f --- /dev/null +++ b/server/target/debug/deps/icu_normalizer-5f9d6fc65fca7bd3.d @@ -0,0 +1,8 @@ +/home/z/my-project/projects/server/target/debug/deps/icu_normalizer-5f9d6fc65fca7bd3.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/properties.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/provider.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/uts46.rs + +/home/z/my-project/projects/server/target/debug/deps/libicu_normalizer-5f9d6fc65fca7bd3.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/properties.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/provider.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/uts46.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/properties.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/provider.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/uts46.rs: diff --git a/server/target/debug/deps/icu_normalizer_data-c58011b549a78ed1.d b/server/target/debug/deps/icu_normalizer_data-c58011b549a78ed1.d new file mode 100644 index 0000000..dc9b6b3 --- /dev/null +++ b/server/target/debug/deps/icu_normalizer_data-c58011b549a78ed1.d @@ -0,0 +1,13 @@ +/home/z/my-project/projects/server/target/debug/deps/icu_normalizer_data-c58011b549a78ed1.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_tables_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_supplement_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_data_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_tables_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfc_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_data_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_uts46_data_v1.rs.data + +/home/z/my-project/projects/server/target/debug/deps/libicu_normalizer_data-c58011b549a78ed1.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_tables_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_supplement_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_data_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_tables_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfc_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_data_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_uts46_data_v1.rs.data + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_tables_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_supplement_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_data_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_tables_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfc_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_data_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_uts46_data_v1.rs.data: diff --git a/server/target/debug/deps/icu_properties-66cf275404c2dd4d.d b/server/target/debug/deps/icu_properties-66cf275404c2dd4d.d new file mode 100644 index 0000000..e185c89 --- /dev/null +++ b/server/target/debug/deps/icu_properties-66cf275404c2dd4d.d @@ -0,0 +1,16 @@ +/home/z/my-project/projects/server/target/debug/deps/icu_properties-66cf275404c2dd4d.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/emoji.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/names.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/runtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/props.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider/names.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/script.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/bidi.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/trievalue.rs + +/home/z/my-project/projects/server/target/debug/deps/libicu_properties-66cf275404c2dd4d.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/emoji.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/names.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/runtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/props.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider/names.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/script.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/bidi.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/trievalue.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_set.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/emoji.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/names.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/runtime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/props.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider/names.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/script.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/bidi.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/trievalue.rs: diff --git a/server/target/debug/deps/icu_properties_data-051a7c8a616a6b56.d b/server/target/debug/deps/icu_properties_data-051a7c8a616a6b56.d new file mode 100644 index 0000000..fc33fdc --- /dev/null +++ b/server/target/debug/deps/icu_properties_data-051a7c8a616a6b56.d @@ -0,0 +1,143 @@ +/home/z/my-project/projects/server/target/debug/deps/icu_properties_data-051a7c8a616a6b56.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_syllabic_category_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_syntax_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_lowercased_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_trinary_operator_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_regional_indicator_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_uppercased_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casemapped_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_script_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_syllabic_category_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_binary_operator_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_radical_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extender_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_syllabic_category_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_component_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_continue_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_dash_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_general_category_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_grapheme_cluster_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_presentation_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_sensitive_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_bidi_class_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfd_inert_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_graph_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_control_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_hangul_syllable_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_word_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_line_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_white_space_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_unified_ideograph_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_noncharacter_code_point_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_grapheme_cluster_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_syllabic_category_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_east_asian_width_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_script_with_extensions_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_hangul_syllable_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_line_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_bidi_class_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_mirrored_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_link_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_script_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_east_asian_width_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_sentence_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alnum_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_general_category_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_vertical_orientation_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casefolded_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_hangul_syllable_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_sentence_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_quotation_mark_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_deprecated_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_start_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_segment_starter_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_numeric_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hyphen_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_variation_selector_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_word_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_east_asian_width_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_sentence_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_modifier_combining_mark_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_group_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_conjunct_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_bidi_class_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_prepended_concatenation_mark_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_print_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_canonical_combining_class_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_terminal_punctuation_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_vertical_orientation_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_cased_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_numeric_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkc_inert_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_continue_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_basic_emoji_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_start_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_uppercase_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_script_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_numeric_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_hangul_syllable_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xdigit_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_full_composition_exclusion_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_vertical_orientation_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_nfkc_casefolded_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hex_digit_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_continue_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_soft_dotted_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ideographic_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_canonical_combining_class_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_word_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_titlecased_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_class_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_sentence_terminal_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_conjunct_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_general_category_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ascii_hex_digit_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_line_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_east_asian_width_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_grapheme_cluster_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_conjunct_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_logical_order_exception_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_ignorable_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_diacritic_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_group_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_extend_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_mirroring_glyph_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_mask_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfc_inert_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_group_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_numeric_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_group_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_conjunct_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_script_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_lowercase_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_base_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_sentence_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_base_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_canonical_combining_class_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_join_control_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_line_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_unary_operator_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_word_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_math_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_white_space_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkd_inert_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_start_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alphabetic_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_grapheme_cluster_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_blank_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_default_ignorable_code_point_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extended_pictographic_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_vertical_orientation_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_canonical_combining_class_v1.rs.data + +/home/z/my-project/projects/server/target/debug/deps/libicu_properties_data-051a7c8a616a6b56.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_syllabic_category_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_syntax_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_lowercased_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_trinary_operator_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_regional_indicator_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_uppercased_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casemapped_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_script_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_syllabic_category_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_binary_operator_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_radical_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extender_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_syllabic_category_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_component_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_continue_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_dash_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_general_category_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_grapheme_cluster_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_presentation_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_sensitive_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_bidi_class_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfd_inert_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_graph_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_control_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_hangul_syllable_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_word_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_line_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_white_space_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_unified_ideograph_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_noncharacter_code_point_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_grapheme_cluster_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_syllabic_category_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_east_asian_width_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_script_with_extensions_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_hangul_syllable_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_line_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_bidi_class_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_mirrored_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_link_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_script_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_east_asian_width_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_sentence_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alnum_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_general_category_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_vertical_orientation_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casefolded_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_hangul_syllable_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_sentence_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_quotation_mark_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_deprecated_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_start_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_segment_starter_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_numeric_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hyphen_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_variation_selector_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_word_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_east_asian_width_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_sentence_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_modifier_combining_mark_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_group_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_conjunct_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_bidi_class_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_prepended_concatenation_mark_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_print_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_canonical_combining_class_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_terminal_punctuation_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_vertical_orientation_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_cased_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_numeric_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkc_inert_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_continue_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_basic_emoji_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_start_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_uppercase_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_script_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_numeric_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_hangul_syllable_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xdigit_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_full_composition_exclusion_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_vertical_orientation_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_nfkc_casefolded_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hex_digit_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_continue_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_soft_dotted_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ideographic_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_canonical_combining_class_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_word_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_titlecased_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_class_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_sentence_terminal_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_conjunct_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_general_category_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ascii_hex_digit_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_line_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_east_asian_width_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_grapheme_cluster_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_conjunct_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_logical_order_exception_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_ignorable_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_diacritic_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_group_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_extend_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_mirroring_glyph_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_mask_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfc_inert_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_group_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_numeric_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_group_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_conjunct_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_script_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_lowercase_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_base_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_sentence_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_base_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_canonical_combining_class_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_join_control_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_type_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_line_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_unary_operator_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_word_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_math_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_white_space_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkd_inert_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_start_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alphabetic_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_grapheme_cluster_break_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_blank_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_default_ignorable_code_point_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extended_pictographic_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_vertical_orientation_v1.rs.data /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_canonical_combining_class_v1.rs.data + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_syllabic_category_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_syntax_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_lowercased_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_trinary_operator_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_regional_indicator_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_uppercased_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casemapped_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_script_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_syllabic_category_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_binary_operator_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_radical_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extender_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_syllabic_category_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_component_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_continue_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_dash_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_general_category_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_grapheme_cluster_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_presentation_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_sensitive_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_bidi_class_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfd_inert_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_graph_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_control_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_hangul_syllable_type_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_word_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_line_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_white_space_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_unified_ideograph_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_noncharacter_code_point_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_grapheme_cluster_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_syllabic_category_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_east_asian_width_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_script_with_extensions_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_hangul_syllable_type_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_line_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_bidi_class_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_mirrored_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_link_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_script_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_east_asian_width_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_sentence_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alnum_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_general_category_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_vertical_orientation_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casefolded_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_hangul_syllable_type_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_sentence_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_quotation_mark_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_deprecated_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_start_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_segment_starter_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_numeric_type_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hyphen_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_variation_selector_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_word_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_east_asian_width_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_sentence_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_modifier_combining_mark_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_group_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_conjunct_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_bidi_class_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_prepended_concatenation_mark_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_type_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_print_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_canonical_combining_class_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_terminal_punctuation_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_vertical_orientation_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_cased_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_numeric_type_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkc_inert_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_continue_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_basic_emoji_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_start_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_uppercase_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_script_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_numeric_type_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_hangul_syllable_type_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xdigit_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_full_composition_exclusion_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_vertical_orientation_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_nfkc_casefolded_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hex_digit_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_type_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_continue_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_soft_dotted_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ideographic_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_canonical_combining_class_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_word_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_titlecased_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_class_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_sentence_terminal_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_conjunct_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_general_category_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ascii_hex_digit_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_line_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_east_asian_width_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_grapheme_cluster_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_conjunct_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_logical_order_exception_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_ignorable_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_diacritic_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_group_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_extend_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_mirroring_glyph_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_mask_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfc_inert_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_group_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_numeric_type_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_group_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_conjunct_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_script_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_lowercase_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_type_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_base_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_sentence_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_base_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_canonical_combining_class_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_join_control_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_type_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_line_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_unary_operator_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_word_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_math_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_white_space_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkd_inert_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_start_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alphabetic_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_grapheme_cluster_break_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_blank_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_default_ignorable_code_point_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extended_pictographic_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_vertical_orientation_v1.rs.data: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_canonical_combining_class_v1.rs.data: diff --git a/server/target/debug/deps/icu_provider-e3cfd454ae7bec4f.d b/server/target/debug/deps/icu_provider-e3cfd454ae7bec4f.d new file mode 100644 index 0000000..bb7ec5c --- /dev/null +++ b/server/target/debug/deps/icu_provider-e3cfd454ae7bec4f.d @@ -0,0 +1,17 @@ +/home/z/my-project/projects/server/target/debug/deps/icu_provider-e3cfd454ae7bec4f.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked/zerotrie.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/constructors.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/dynutil.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/data_provider.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/request.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/response.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/marker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/varule_traits.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/fallback.rs + +/home/z/my-project/projects/server/target/debug/deps/libicu_provider-e3cfd454ae7bec4f.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked/zerotrie.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/constructors.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/dynutil.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/data_provider.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/request.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/response.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/marker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/varule_traits.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/fallback.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked/zerotrie.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/buf.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/constructors.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/dynutil.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/data_provider.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/request.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/response.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/marker.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/varule_traits.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/fallback.rs: diff --git a/server/target/debug/deps/idna-6c8efbcbc044c3d5.d b/server/target/debug/deps/idna-6c8efbcbc044c3d5.d new file mode 100644 index 0000000..7182346 --- /dev/null +++ b/server/target/debug/deps/idna-6c8efbcbc044c3d5.d @@ -0,0 +1,8 @@ +/home/z/my-project/projects/server/target/debug/deps/idna-6c8efbcbc044c3d5.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/deprecated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/punycode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/uts46.rs + +/home/z/my-project/projects/server/target/debug/deps/libidna-6c8efbcbc044c3d5.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/deprecated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/punycode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/uts46.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/deprecated.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/punycode.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/uts46.rs: diff --git a/server/target/debug/deps/idna_adapter-818f0d431beba66d.d b/server/target/debug/deps/idna_adapter-818f0d431beba66d.d new file mode 100644 index 0000000..02a1a3d --- /dev/null +++ b/server/target/debug/deps/idna_adapter-818f0d431beba66d.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/idna_adapter-818f0d431beba66d.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.1/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libidna_adapter-818f0d431beba66d.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.1/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.1/src/lib.rs: diff --git a/server/target/debug/deps/impl_more-55171a48d86b1836.d b/server/target/debug/deps/impl_more-55171a48d86b1836.d new file mode 100644 index 0000000..3a292f0 --- /dev/null +++ b/server/target/debug/deps/impl_more-55171a48d86b1836.d @@ -0,0 +1,10 @@ +/home/z/my-project/projects/server/target/debug/deps/impl_more-55171a48d86b1836.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/as_ref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/deref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/display.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/from.rs + +/home/z/my-project/projects/server/target/debug/deps/libimpl_more-55171a48d86b1836.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/as_ref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/deref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/display.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/from.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/as_ref.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/deref.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/display.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/impl-more-0.1.9/src/from.rs: diff --git a/server/target/debug/deps/indexmap-62979d31bee7d64d.d b/server/target/debug/deps/indexmap-62979d31bee7d64d.d new file mode 100644 index 0000000..5903ca1 --- /dev/null +++ b/server/target/debug/deps/indexmap-62979d31bee7d64d.d @@ -0,0 +1,21 @@ +/home/z/my-project/projects/server/target/debug/deps/indexmap-62979d31bee7d64d.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/arbitrary.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/inner.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/inner/entry.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/inner/extract.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map/entry.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map/mutable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map/slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map/raw_entry_v1.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/set/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/set/mutable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/set/slice.rs + +/home/z/my-project/projects/server/target/debug/deps/libindexmap-62979d31bee7d64d.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/arbitrary.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/inner.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/inner/entry.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/inner/extract.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map/entry.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map/mutable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map/slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map/raw_entry_v1.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/set/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/set/mutable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/set/slice.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/arbitrary.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/inner.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/inner/entry.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/inner/extract.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/util.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map/entry.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map/iter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map/mutable.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map/slice.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/map/raw_entry_v1.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/set.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/set/iter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/set/mutable.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.1/src/set/slice.rs: diff --git a/server/target/debug/deps/is_terminal_polyfill-cb311c9f413aefae.d b/server/target/debug/deps/is_terminal_polyfill-cb311c9f413aefae.d new file mode 100644 index 0000000..8aee833 --- /dev/null +++ b/server/target/debug/deps/is_terminal_polyfill-cb311c9f413aefae.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/is_terminal_polyfill-cb311c9f413aefae.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.2/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libis_terminal_polyfill-cb311c9f413aefae.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.2/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.2/src/lib.rs: diff --git a/server/target/debug/deps/itoa-2c16ec70efb38979.d b/server/target/debug/deps/itoa-2c16ec70efb38979.d new file mode 100644 index 0000000..d618e19 --- /dev/null +++ b/server/target/debug/deps/itoa-2c16ec70efb38979.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/deps/itoa-2c16ec70efb38979.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/u128_ext.rs + +/home/z/my-project/projects/server/target/debug/deps/libitoa-2c16ec70efb38979.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/u128_ext.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/u128_ext.rs: diff --git a/server/target/debug/deps/jiff-48c2790bf48be624.d b/server/target/debug/deps/jiff-48c2790bf48be624.d new file mode 100644 index 0000000..a7cb8db --- /dev/null +++ b/server/target/debug/deps/jiff-48c2790bf48be624.d @@ -0,0 +1,97 @@ +/home/z/my-project/projects/server/target/debug/deps/jiff-48c2790bf48be624.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/logging.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/date.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/datetime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/iso_week_date.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/time.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/weekday.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/duration.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/civil.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/duration.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/friendly.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/offset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/rfc2822.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/rfc9557.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/strtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/temporal.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/signed_duration.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/timestamp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/ambiguous.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/concatenated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/db.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/offset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/posix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/system.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/timezone.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/zic.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/unit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/zoned.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/friendly/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/friendly/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/friendly/parser_label.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/friendly/printer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/offset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/rfc2822.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/rfc9557.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/strtime/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/strtime/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/strtime/printer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/temporal/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/temporal/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/temporal/pieces.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/temporal/printer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/now.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/crc32/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/crc32/table.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/posix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/tzif.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/util/array_str.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/util/itime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/signed_duration.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/timestamp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/ambiguous.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/bundled/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/bundled/disabled.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/concatenated/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/concatenated/disabled.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/zoneinfo/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/zoneinfo/disabled.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/offset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/posix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/timezone.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/tzif.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/array_str.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/b.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/borrow.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/constant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/escape.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/fs.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/round.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/sync.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/utf8.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/zoned.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/../COMPARE.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/../DESIGN.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/../PLATFORM.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/../CHANGELOG.md + +/home/z/my-project/projects/server/target/debug/deps/libjiff-48c2790bf48be624.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/logging.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/date.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/datetime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/iso_week_date.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/time.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/weekday.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/duration.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/civil.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/duration.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/friendly.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/offset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/rfc2822.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/rfc9557.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/strtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/temporal.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/signed_duration.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/timestamp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/ambiguous.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/concatenated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/db.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/offset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/posix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/system.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/timezone.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/zic.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/unit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/zoned.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/friendly/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/friendly/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/friendly/parser_label.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/friendly/printer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/offset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/rfc2822.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/rfc9557.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/strtime/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/strtime/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/strtime/printer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/temporal/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/temporal/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/temporal/pieces.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/temporal/printer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/now.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/crc32/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/crc32/table.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/posix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/tzif.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/util/array_str.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/util/itime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/signed_duration.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/timestamp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/ambiguous.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/bundled/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/bundled/disabled.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/concatenated/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/concatenated/disabled.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/zoneinfo/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/zoneinfo/disabled.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/offset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/posix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/timezone.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/tzif.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/array_str.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/b.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/borrow.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/constant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/escape.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/fs.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/round.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/sync.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/utf8.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/zoned.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/../COMPARE.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/../DESIGN.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/../PLATFORM.md /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/../CHANGELOG.md + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/logging.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/date.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/datetime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/iso_week_date.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/time.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/civil/weekday.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/duration.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/civil.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/duration.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/friendly.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/offset.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/rfc2822.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/rfc9557.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/strtime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/temporal.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/fmt/util.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/signed_duration.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/span.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/timestamp.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/ambiguous.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/concatenated.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/db.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/offset.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/posix.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/system.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/timezone.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/tz/zic.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/unit.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/util.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/error/zoned.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/buffer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/friendly/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/friendly/parser.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/friendly/parser_label.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/friendly/printer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/offset.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/rfc2822.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/rfc9557.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/strtime/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/strtime/parse.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/strtime/printer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/temporal/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/temporal/parser.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/temporal/pieces.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/temporal/printer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/fmt/util.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/now.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/crc32/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/crc32/table.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/posix.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/tzif.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/util/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/util/array_str.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/shared/util/itime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/signed_duration.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/span.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/timestamp.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/ambiguous.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/bundled/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/bundled/disabled.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/concatenated/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/concatenated/disabled.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/zoneinfo/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/db/zoneinfo/disabled.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/offset.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/posix.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/timezone.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/tz/tzif.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/array_str.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/b.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/borrow.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/constant.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/escape.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/fs.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/parse.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/round.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/sync.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/util/utf8.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/zoned.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/../COMPARE.md: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/../DESIGN.md: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/../PLATFORM.md: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jiff-0.2.23/src/../CHANGELOG.md: diff --git a/server/target/debug/deps/jobserver-83a08429a9631bed.d b/server/target/debug/deps/jobserver-83a08429a9631bed.d new file mode 100644 index 0000000..0382237 --- /dev/null +++ b/server/target/debug/deps/jobserver-83a08429a9631bed.d @@ -0,0 +1,9 @@ +/home/z/my-project/projects/server/target/debug/deps/jobserver-83a08429a9631bed.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jobserver-0.1.34/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jobserver-0.1.34/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jobserver-0.1.34/src/unix.rs + +/home/z/my-project/projects/server/target/debug/deps/libjobserver-83a08429a9631bed.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jobserver-0.1.34/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jobserver-0.1.34/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jobserver-0.1.34/src/unix.rs + +/home/z/my-project/projects/server/target/debug/deps/libjobserver-83a08429a9631bed.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jobserver-0.1.34/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jobserver-0.1.34/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jobserver-0.1.34/src/unix.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jobserver-0.1.34/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jobserver-0.1.34/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/jobserver-0.1.34/src/unix.rs: diff --git a/server/target/debug/deps/language_tags-923b633db01eec30.d b/server/target/debug/deps/language_tags-923b633db01eec30.d new file mode 100644 index 0000000..b34a3da --- /dev/null +++ b/server/target/debug/deps/language_tags-923b633db01eec30.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/deps/language_tags-923b633db01eec30.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/language-tags-0.3.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/language-tags-0.3.2/src/iana_registry.rs + +/home/z/my-project/projects/server/target/debug/deps/liblanguage_tags-923b633db01eec30.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/language-tags-0.3.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/language-tags-0.3.2/src/iana_registry.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/language-tags-0.3.2/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/language-tags-0.3.2/src/iana_registry.rs: diff --git a/server/target/debug/deps/libactix_codec-9be49efe4be5f405.rmeta b/server/target/debug/deps/libactix_codec-9be49efe4be5f405.rmeta new file mode 100644 index 0000000..3349220 Binary files /dev/null and b/server/target/debug/deps/libactix_codec-9be49efe4be5f405.rmeta differ diff --git a/server/target/debug/deps/libactix_cors-4ab34fad240ef626.rmeta b/server/target/debug/deps/libactix_cors-4ab34fad240ef626.rmeta new file mode 100644 index 0000000..d8bea2a Binary files /dev/null and b/server/target/debug/deps/libactix_cors-4ab34fad240ef626.rmeta differ diff --git a/server/target/debug/deps/libactix_files-6cb6fd7a505e8e12.rmeta b/server/target/debug/deps/libactix_files-6cb6fd7a505e8e12.rmeta new file mode 100644 index 0000000..b133802 Binary files /dev/null and b/server/target/debug/deps/libactix_files-6cb6fd7a505e8e12.rmeta differ diff --git a/server/target/debug/deps/libactix_http-51df65d4b78a71e1.rmeta b/server/target/debug/deps/libactix_http-51df65d4b78a71e1.rmeta new file mode 100644 index 0000000..d49e53a Binary files /dev/null and b/server/target/debug/deps/libactix_http-51df65d4b78a71e1.rmeta differ diff --git a/server/target/debug/deps/libactix_macros-b8ce81399f0ba912.so b/server/target/debug/deps/libactix_macros-b8ce81399f0ba912.so new file mode 100755 index 0000000..f5813e4 Binary files /dev/null and b/server/target/debug/deps/libactix_macros-b8ce81399f0ba912.so differ diff --git a/server/target/debug/deps/libactix_router-3afa00a708d374be.rlib b/server/target/debug/deps/libactix_router-3afa00a708d374be.rlib new file mode 100644 index 0000000..b118762 Binary files /dev/null and b/server/target/debug/deps/libactix_router-3afa00a708d374be.rlib differ diff --git a/server/target/debug/deps/libactix_router-3afa00a708d374be.rmeta b/server/target/debug/deps/libactix_router-3afa00a708d374be.rmeta new file mode 100644 index 0000000..1f777e9 Binary files /dev/null and b/server/target/debug/deps/libactix_router-3afa00a708d374be.rmeta differ diff --git a/server/target/debug/deps/libactix_router-d76f38e0a8e64888.rmeta b/server/target/debug/deps/libactix_router-d76f38e0a8e64888.rmeta new file mode 100644 index 0000000..92fa767 Binary files /dev/null and b/server/target/debug/deps/libactix_router-d76f38e0a8e64888.rmeta differ diff --git a/server/target/debug/deps/libactix_rt-9ef78d8b4f6ec944.rmeta b/server/target/debug/deps/libactix_rt-9ef78d8b4f6ec944.rmeta new file mode 100644 index 0000000..5d34987 Binary files /dev/null and b/server/target/debug/deps/libactix_rt-9ef78d8b4f6ec944.rmeta differ diff --git a/server/target/debug/deps/libactix_server-3f5e576e2159e48b.rmeta b/server/target/debug/deps/libactix_server-3f5e576e2159e48b.rmeta new file mode 100644 index 0000000..9c0c4a6 Binary files /dev/null and b/server/target/debug/deps/libactix_server-3f5e576e2159e48b.rmeta differ diff --git a/server/target/debug/deps/libactix_service-1140bb22a1523738.rmeta b/server/target/debug/deps/libactix_service-1140bb22a1523738.rmeta new file mode 100644 index 0000000..8761b35 Binary files /dev/null and b/server/target/debug/deps/libactix_service-1140bb22a1523738.rmeta differ diff --git a/server/target/debug/deps/libactix_utils-0a91c3d286f4cced.rmeta b/server/target/debug/deps/libactix_utils-0a91c3d286f4cced.rmeta new file mode 100644 index 0000000..a72376f Binary files /dev/null and b/server/target/debug/deps/libactix_utils-0a91c3d286f4cced.rmeta differ diff --git a/server/target/debug/deps/libactix_web-c6a35d4af5058b8e.rmeta b/server/target/debug/deps/libactix_web-c6a35d4af5058b8e.rmeta new file mode 100644 index 0000000..d689846 Binary files /dev/null and b/server/target/debug/deps/libactix_web-c6a35d4af5058b8e.rmeta differ diff --git a/server/target/debug/deps/libactix_web_codegen-26a926d2164490c4.so b/server/target/debug/deps/libactix_web_codegen-26a926d2164490c4.so new file mode 100755 index 0000000..0995f22 Binary files /dev/null and b/server/target/debug/deps/libactix_web_codegen-26a926d2164490c4.so differ diff --git a/server/target/debug/deps/libactix_ws-7eef1fc358da3dcf.rmeta b/server/target/debug/deps/libactix_ws-7eef1fc358da3dcf.rmeta new file mode 100644 index 0000000..9d0c1bd Binary files /dev/null and b/server/target/debug/deps/libactix_ws-7eef1fc358da3dcf.rmeta differ diff --git a/server/target/debug/deps/libadler2-058d5f8fddc817b0.rmeta b/server/target/debug/deps/libadler2-058d5f8fddc817b0.rmeta new file mode 100644 index 0000000..f942367 Binary files /dev/null and b/server/target/debug/deps/libadler2-058d5f8fddc817b0.rmeta differ diff --git a/server/target/debug/deps/libaho_corasick-8a0f500f228cb24d.rmeta b/server/target/debug/deps/libaho_corasick-8a0f500f228cb24d.rmeta new file mode 100644 index 0000000..530610c Binary files /dev/null and b/server/target/debug/deps/libaho_corasick-8a0f500f228cb24d.rmeta differ diff --git a/server/target/debug/deps/liballoc_no_stdlib-67a0bbe710316a62.rmeta b/server/target/debug/deps/liballoc_no_stdlib-67a0bbe710316a62.rmeta new file mode 100644 index 0000000..722a9f4 Binary files /dev/null and b/server/target/debug/deps/liballoc_no_stdlib-67a0bbe710316a62.rmeta differ diff --git a/server/target/debug/deps/liballoc_stdlib-c68fad3ba3ed4e44.rmeta b/server/target/debug/deps/liballoc_stdlib-c68fad3ba3ed4e44.rmeta new file mode 100644 index 0000000..2c09bec Binary files /dev/null and b/server/target/debug/deps/liballoc_stdlib-c68fad3ba3ed4e44.rmeta differ diff --git a/server/target/debug/deps/libanstream-00fda7c081e998b0.rmeta b/server/target/debug/deps/libanstream-00fda7c081e998b0.rmeta new file mode 100644 index 0000000..a26a348 Binary files /dev/null and b/server/target/debug/deps/libanstream-00fda7c081e998b0.rmeta differ diff --git a/server/target/debug/deps/libanstyle-a8236b7ed4a5a82a.rmeta b/server/target/debug/deps/libanstyle-a8236b7ed4a5a82a.rmeta new file mode 100644 index 0000000..42a5353 Binary files /dev/null and b/server/target/debug/deps/libanstyle-a8236b7ed4a5a82a.rmeta differ diff --git a/server/target/debug/deps/libanstyle_parse-99a825add116413d.rmeta b/server/target/debug/deps/libanstyle_parse-99a825add116413d.rmeta new file mode 100644 index 0000000..1762006 Binary files /dev/null and b/server/target/debug/deps/libanstyle_parse-99a825add116413d.rmeta differ diff --git a/server/target/debug/deps/libanstyle_query-0b8322a96a58150a.rmeta b/server/target/debug/deps/libanstyle_query-0b8322a96a58150a.rmeta new file mode 100644 index 0000000..84c18a1 Binary files /dev/null and b/server/target/debug/deps/libanstyle_query-0b8322a96a58150a.rmeta differ diff --git a/server/target/debug/deps/libautocfg-9ef4b25a9bd36cd2.rlib b/server/target/debug/deps/libautocfg-9ef4b25a9bd36cd2.rlib new file mode 100644 index 0000000..77b2d37 Binary files /dev/null and b/server/target/debug/deps/libautocfg-9ef4b25a9bd36cd2.rlib differ diff --git a/server/target/debug/deps/libautocfg-9ef4b25a9bd36cd2.rmeta b/server/target/debug/deps/libautocfg-9ef4b25a9bd36cd2.rmeta new file mode 100644 index 0000000..4a31579 Binary files /dev/null and b/server/target/debug/deps/libautocfg-9ef4b25a9bd36cd2.rmeta differ diff --git a/server/target/debug/deps/libbase64-05c11f181c9cd5a6.rmeta b/server/target/debug/deps/libbase64-05c11f181c9cd5a6.rmeta new file mode 100644 index 0000000..d2c25ad Binary files /dev/null and b/server/target/debug/deps/libbase64-05c11f181c9cd5a6.rmeta differ diff --git a/server/target/debug/deps/libbitflags-ed0768bab984093b.rmeta b/server/target/debug/deps/libbitflags-ed0768bab984093b.rmeta new file mode 100644 index 0000000..16fa11a Binary files /dev/null and b/server/target/debug/deps/libbitflags-ed0768bab984093b.rmeta differ diff --git a/server/target/debug/deps/libblock_buffer-452d03add8deeb96.rmeta b/server/target/debug/deps/libblock_buffer-452d03add8deeb96.rmeta new file mode 100644 index 0000000..cc86223 Binary files /dev/null and b/server/target/debug/deps/libblock_buffer-452d03add8deeb96.rmeta differ diff --git a/server/target/debug/deps/libbrotli-726acff630457cdb.rmeta b/server/target/debug/deps/libbrotli-726acff630457cdb.rmeta new file mode 100644 index 0000000..8e7d6b9 Binary files /dev/null and b/server/target/debug/deps/libbrotli-726acff630457cdb.rmeta differ diff --git a/server/target/debug/deps/libbrotli_decompressor-7f35dec671a12241.rmeta b/server/target/debug/deps/libbrotli_decompressor-7f35dec671a12241.rmeta new file mode 100644 index 0000000..87d2307 Binary files /dev/null and b/server/target/debug/deps/libbrotli_decompressor-7f35dec671a12241.rmeta differ diff --git a/server/target/debug/deps/libbytes-4b8b75d566ddd537.rmeta b/server/target/debug/deps/libbytes-4b8b75d566ddd537.rmeta new file mode 100644 index 0000000..82d8bbf Binary files /dev/null and b/server/target/debug/deps/libbytes-4b8b75d566ddd537.rmeta differ diff --git a/server/target/debug/deps/libbytes-934b421c0e78c798.rlib b/server/target/debug/deps/libbytes-934b421c0e78c798.rlib new file mode 100644 index 0000000..43ac6d8 Binary files /dev/null and b/server/target/debug/deps/libbytes-934b421c0e78c798.rlib differ diff --git a/server/target/debug/deps/libbytes-934b421c0e78c798.rmeta b/server/target/debug/deps/libbytes-934b421c0e78c798.rmeta new file mode 100644 index 0000000..86f13e4 Binary files /dev/null and b/server/target/debug/deps/libbytes-934b421c0e78c798.rmeta differ diff --git a/server/target/debug/deps/libbytestring-8132529e8ead8757.rlib b/server/target/debug/deps/libbytestring-8132529e8ead8757.rlib new file mode 100644 index 0000000..33f77e5 Binary files /dev/null and b/server/target/debug/deps/libbytestring-8132529e8ead8757.rlib differ diff --git a/server/target/debug/deps/libbytestring-8132529e8ead8757.rmeta b/server/target/debug/deps/libbytestring-8132529e8ead8757.rmeta new file mode 100644 index 0000000..dd0fd40 Binary files /dev/null and b/server/target/debug/deps/libbytestring-8132529e8ead8757.rmeta differ diff --git a/server/target/debug/deps/libbytestring-d686ff26992177f3.rmeta b/server/target/debug/deps/libbytestring-d686ff26992177f3.rmeta new file mode 100644 index 0000000..bf6ac3c Binary files /dev/null and b/server/target/debug/deps/libbytestring-d686ff26992177f3.rmeta differ diff --git a/server/target/debug/deps/libc-79c4c445bce82087.d b/server/target/debug/deps/libc-79c4c445bce82087.d new file mode 100644 index 0000000..7fca41e --- /dev/null +++ b/server/target/debug/deps/libc-79c4c445bce82087.d @@ -0,0 +1,44 @@ +/home/z/my-project/projects/server/target/debug/deps/libc-79c4c445bce82087.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/linux_like/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/linux_like/pthread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/pthread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/unistd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/bcm.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/j1939.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/netlink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/raw.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/keyctl.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/membarrier.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/netlink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/pidfd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/posix/unistd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/nptl/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/nptl/pthread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/linux/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/primitives.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/arch/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux_l4re_shared.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/arch/generic/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/types.rs + +/home/z/my-project/projects/server/target/debug/deps/liblibc-79c4c445bce82087.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/linux_like/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/linux_like/pthread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/pthread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/unistd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/bcm.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/j1939.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/netlink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/raw.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/keyctl.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/membarrier.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/netlink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/pidfd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/posix/unistd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/nptl/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/nptl/pthread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/linux/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/primitives.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/arch/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux_l4re_shared.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/arch/generic/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/types.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/linux_like/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/linux_like/pthread.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/pthread.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/unistd.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/bcm.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/j1939.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/netlink.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/raw.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/keyctl.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/membarrier.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/netlink.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/pidfd.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/posix/unistd.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/nptl/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/nptl/pthread.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/linux/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/linux/net/route.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/primitives.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/arch/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux_l4re_shared.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/arch/generic/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/types.rs: diff --git a/server/target/debug/deps/libc-f771bdf5247e5968.d b/server/target/debug/deps/libc-f771bdf5247e5968.d new file mode 100644 index 0000000..22836cd --- /dev/null +++ b/server/target/debug/deps/libc-f771bdf5247e5968.d @@ -0,0 +1,46 @@ +/home/z/my-project/projects/server/target/debug/deps/libc-f771bdf5247e5968.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/linux_like/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/linux_like/pthread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/pthread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/unistd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/bcm.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/j1939.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/netlink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/raw.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/keyctl.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/membarrier.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/netlink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/pidfd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/posix/unistd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/nptl/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/nptl/pthread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/linux/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/primitives.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/arch/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux_l4re_shared.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/arch/generic/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/types.rs + +/home/z/my-project/projects/server/target/debug/deps/liblibc-f771bdf5247e5968.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/linux_like/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/linux_like/pthread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/pthread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/unistd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/bcm.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/j1939.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/netlink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/raw.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/keyctl.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/membarrier.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/netlink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/pidfd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/posix/unistd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/nptl/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/nptl/pthread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/linux/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/primitives.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/arch/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux_l4re_shared.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/arch/generic/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/types.rs + +/home/z/my-project/projects/server/target/debug/deps/liblibc-f771bdf5247e5968.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/linux_like/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/linux_like/pthread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/pthread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/unistd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/bcm.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/j1939.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/netlink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/raw.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/keyctl.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/membarrier.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/netlink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/pidfd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/posix/unistd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/nptl/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/nptl/pthread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/linux/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/primitives.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/arch/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux_l4re_shared.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/arch/generic/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/types.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/linux_like/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/linux_like/pthread.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/pthread.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/common/posix/unistd.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/bcm.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/j1939.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/netlink.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/can/raw.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/keyctl.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/membarrier.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/netlink.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/linux_uapi/linux/pidfd.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/posix/unistd.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/nptl/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/nptl/pthread.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/linux/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/new/glibc/sysdeps/unix/linux/net/route.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/primitives.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/arch/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux_l4re_shared.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/unix/linux_like/linux/arch/generic/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.184/src/types.rs: diff --git a/server/target/debug/deps/libcc-671d93a892ec8434.rlib b/server/target/debug/deps/libcc-671d93a892ec8434.rlib new file mode 100644 index 0000000..9c54b4b Binary files /dev/null and b/server/target/debug/deps/libcc-671d93a892ec8434.rlib differ diff --git a/server/target/debug/deps/libcc-671d93a892ec8434.rmeta b/server/target/debug/deps/libcc-671d93a892ec8434.rmeta new file mode 100644 index 0000000..d8c5467 Binary files /dev/null and b/server/target/debug/deps/libcc-671d93a892ec8434.rmeta differ diff --git a/server/target/debug/deps/libcfg_if-e7f3f42eb79a8477.rmeta b/server/target/debug/deps/libcfg_if-e7f3f42eb79a8477.rmeta new file mode 100644 index 0000000..6db6c42 Binary files /dev/null and b/server/target/debug/deps/libcfg_if-e7f3f42eb79a8477.rmeta differ diff --git a/server/target/debug/deps/libcfg_if-ea139eb6b6bdeb93.rlib b/server/target/debug/deps/libcfg_if-ea139eb6b6bdeb93.rlib new file mode 100644 index 0000000..9481cee Binary files /dev/null and b/server/target/debug/deps/libcfg_if-ea139eb6b6bdeb93.rlib differ diff --git a/server/target/debug/deps/libcfg_if-ea139eb6b6bdeb93.rmeta b/server/target/debug/deps/libcfg_if-ea139eb6b6bdeb93.rmeta new file mode 100644 index 0000000..fe4ab47 Binary files /dev/null and b/server/target/debug/deps/libcfg_if-ea139eb6b6bdeb93.rmeta differ diff --git a/server/target/debug/deps/libchrono-23fc8a73c22da5dc.rmeta b/server/target/debug/deps/libchrono-23fc8a73c22da5dc.rmeta new file mode 100644 index 0000000..0fc5a1d Binary files /dev/null and b/server/target/debug/deps/libchrono-23fc8a73c22da5dc.rmeta differ diff --git a/server/target/debug/deps/libcolorchoice-9ca51bc4fd4a1951.rmeta b/server/target/debug/deps/libcolorchoice-9ca51bc4fd4a1951.rmeta new file mode 100644 index 0000000..8a484a7 Binary files /dev/null and b/server/target/debug/deps/libcolorchoice-9ca51bc4fd4a1951.rmeta differ diff --git a/server/target/debug/deps/libconvert_case-a45097cb563b0977.rlib b/server/target/debug/deps/libconvert_case-a45097cb563b0977.rlib new file mode 100644 index 0000000..73ee144 Binary files /dev/null and b/server/target/debug/deps/libconvert_case-a45097cb563b0977.rlib differ diff --git a/server/target/debug/deps/libconvert_case-a45097cb563b0977.rmeta b/server/target/debug/deps/libconvert_case-a45097cb563b0977.rmeta new file mode 100644 index 0000000..cb3056a Binary files /dev/null and b/server/target/debug/deps/libconvert_case-a45097cb563b0977.rmeta differ diff --git a/server/target/debug/deps/libcookie-d99cf81ae3daa0bb.rmeta b/server/target/debug/deps/libcookie-d99cf81ae3daa0bb.rmeta new file mode 100644 index 0000000..cf46d41 Binary files /dev/null and b/server/target/debug/deps/libcookie-d99cf81ae3daa0bb.rmeta differ diff --git a/server/target/debug/deps/libcpufeatures-bcdb2005199d2b73.rmeta b/server/target/debug/deps/libcpufeatures-bcdb2005199d2b73.rmeta new file mode 100644 index 0000000..f554f9f Binary files /dev/null and b/server/target/debug/deps/libcpufeatures-bcdb2005199d2b73.rmeta differ diff --git a/server/target/debug/deps/libcrc32fast-40fb1b1245edb67f.rmeta b/server/target/debug/deps/libcrc32fast-40fb1b1245edb67f.rmeta new file mode 100644 index 0000000..2a176c4 Binary files /dev/null and b/server/target/debug/deps/libcrc32fast-40fb1b1245edb67f.rmeta differ diff --git a/server/target/debug/deps/libcrossbeam_utils-20a9bf10360256b6.rmeta b/server/target/debug/deps/libcrossbeam_utils-20a9bf10360256b6.rmeta new file mode 100644 index 0000000..65a0a28 Binary files /dev/null and b/server/target/debug/deps/libcrossbeam_utils-20a9bf10360256b6.rmeta differ diff --git a/server/target/debug/deps/libcrypto_common-a8d1172f317582cf.rmeta b/server/target/debug/deps/libcrypto_common-a8d1172f317582cf.rmeta new file mode 100644 index 0000000..fc1d76c Binary files /dev/null and b/server/target/debug/deps/libcrypto_common-a8d1172f317582cf.rmeta differ diff --git a/server/target/debug/deps/libdashmap-7d5f8ee79891437c.rmeta b/server/target/debug/deps/libdashmap-7d5f8ee79891437c.rmeta new file mode 100644 index 0000000..6625759 Binary files /dev/null and b/server/target/debug/deps/libdashmap-7d5f8ee79891437c.rmeta differ diff --git a/server/target/debug/deps/libderanged-a0cb6f0e7c0d1075.rmeta b/server/target/debug/deps/libderanged-a0cb6f0e7c0d1075.rmeta new file mode 100644 index 0000000..870bfa2 Binary files /dev/null and b/server/target/debug/deps/libderanged-a0cb6f0e7c0d1075.rmeta differ diff --git a/server/target/debug/deps/libderive_more-933abf9cf5a819d3.rmeta b/server/target/debug/deps/libderive_more-933abf9cf5a819d3.rmeta new file mode 100644 index 0000000..17eafd6 Binary files /dev/null and b/server/target/debug/deps/libderive_more-933abf9cf5a819d3.rmeta differ diff --git a/server/target/debug/deps/libderive_more_impl-b3d3069484fc3004.so b/server/target/debug/deps/libderive_more_impl-b3d3069484fc3004.so new file mode 100755 index 0000000..eef8283 Binary files /dev/null and b/server/target/debug/deps/libderive_more_impl-b3d3069484fc3004.so differ diff --git a/server/target/debug/deps/libdigest-e2bbb19e0ee0d5a3.rmeta b/server/target/debug/deps/libdigest-e2bbb19e0ee0d5a3.rmeta new file mode 100644 index 0000000..3343a18 Binary files /dev/null and b/server/target/debug/deps/libdigest-e2bbb19e0ee0d5a3.rmeta differ diff --git a/server/target/debug/deps/libdisplaydoc-ff85fd5314252f02.so b/server/target/debug/deps/libdisplaydoc-ff85fd5314252f02.so new file mode 100755 index 0000000..bf370a1 Binary files /dev/null and b/server/target/debug/deps/libdisplaydoc-ff85fd5314252f02.so differ diff --git a/server/target/debug/deps/libencoding_rs-001d828871cedfd2.rmeta b/server/target/debug/deps/libencoding_rs-001d828871cedfd2.rmeta new file mode 100644 index 0000000..316d152 Binary files /dev/null and b/server/target/debug/deps/libencoding_rs-001d828871cedfd2.rmeta differ diff --git a/server/target/debug/deps/libenv_filter-730007a9d8c1ee41.rmeta b/server/target/debug/deps/libenv_filter-730007a9d8c1ee41.rmeta new file mode 100644 index 0000000..174fceb Binary files /dev/null and b/server/target/debug/deps/libenv_filter-730007a9d8c1ee41.rmeta differ diff --git a/server/target/debug/deps/libenv_logger-c692726bb662edc1.rmeta b/server/target/debug/deps/libenv_logger-c692726bb662edc1.rmeta new file mode 100644 index 0000000..f5e0c93 Binary files /dev/null and b/server/target/debug/deps/libenv_logger-c692726bb662edc1.rmeta differ diff --git a/server/target/debug/deps/libequivalent-2756b7cee286c32d.rmeta b/server/target/debug/deps/libequivalent-2756b7cee286c32d.rmeta new file mode 100644 index 0000000..85241dd Binary files /dev/null and b/server/target/debug/deps/libequivalent-2756b7cee286c32d.rmeta differ diff --git a/server/target/debug/deps/liberrno-ff1bed9838992472.rmeta b/server/target/debug/deps/liberrno-ff1bed9838992472.rmeta new file mode 100644 index 0000000..86a9076 Binary files /dev/null and b/server/target/debug/deps/liberrno-ff1bed9838992472.rmeta differ diff --git a/server/target/debug/deps/libfind_msvc_tools-0523a17391f19ae0.rlib b/server/target/debug/deps/libfind_msvc_tools-0523a17391f19ae0.rlib new file mode 100644 index 0000000..73819be Binary files /dev/null and b/server/target/debug/deps/libfind_msvc_tools-0523a17391f19ae0.rlib differ diff --git a/server/target/debug/deps/libfind_msvc_tools-0523a17391f19ae0.rmeta b/server/target/debug/deps/libfind_msvc_tools-0523a17391f19ae0.rmeta new file mode 100644 index 0000000..4618339 Binary files /dev/null and b/server/target/debug/deps/libfind_msvc_tools-0523a17391f19ae0.rmeta differ diff --git a/server/target/debug/deps/libflate2-6ffae8702e07e1a1.rmeta b/server/target/debug/deps/libflate2-6ffae8702e07e1a1.rmeta new file mode 100644 index 0000000..c63dcc3 Binary files /dev/null and b/server/target/debug/deps/libflate2-6ffae8702e07e1a1.rmeta differ diff --git a/server/target/debug/deps/libfnv-bfb966cefab7ffbd.rmeta b/server/target/debug/deps/libfnv-bfb966cefab7ffbd.rmeta new file mode 100644 index 0000000..490e049 Binary files /dev/null and b/server/target/debug/deps/libfnv-bfb966cefab7ffbd.rmeta differ diff --git a/server/target/debug/deps/libfoldhash-c82b54d8cb0eeb5d.rmeta b/server/target/debug/deps/libfoldhash-c82b54d8cb0eeb5d.rmeta new file mode 100644 index 0000000..76a2594 Binary files /dev/null and b/server/target/debug/deps/libfoldhash-c82b54d8cb0eeb5d.rmeta differ diff --git a/server/target/debug/deps/libform_urlencoded-42d2b8476f4f1da3.rmeta b/server/target/debug/deps/libform_urlencoded-42d2b8476f4f1da3.rmeta new file mode 100644 index 0000000..8029f4b Binary files /dev/null and b/server/target/debug/deps/libform_urlencoded-42d2b8476f4f1da3.rmeta differ diff --git a/server/target/debug/deps/libfutures-ebf41c02f68175ae.rmeta b/server/target/debug/deps/libfutures-ebf41c02f68175ae.rmeta new file mode 100644 index 0000000..5c183fa Binary files /dev/null and b/server/target/debug/deps/libfutures-ebf41c02f68175ae.rmeta differ diff --git a/server/target/debug/deps/libfutures_channel-e944fdf21782c068.rmeta b/server/target/debug/deps/libfutures_channel-e944fdf21782c068.rmeta new file mode 100644 index 0000000..c8b38ad Binary files /dev/null and b/server/target/debug/deps/libfutures_channel-e944fdf21782c068.rmeta differ diff --git a/server/target/debug/deps/libfutures_core-e83920f47bfcd7f8.rmeta b/server/target/debug/deps/libfutures_core-e83920f47bfcd7f8.rmeta new file mode 100644 index 0000000..b248e9f Binary files /dev/null and b/server/target/debug/deps/libfutures_core-e83920f47bfcd7f8.rmeta differ diff --git a/server/target/debug/deps/libfutures_executor-38a4aa07b9732c70.rmeta b/server/target/debug/deps/libfutures_executor-38a4aa07b9732c70.rmeta new file mode 100644 index 0000000..2587cea Binary files /dev/null and b/server/target/debug/deps/libfutures_executor-38a4aa07b9732c70.rmeta differ diff --git a/server/target/debug/deps/libfutures_io-bd1e5593ba9dde72.rmeta b/server/target/debug/deps/libfutures_io-bd1e5593ba9dde72.rmeta new file mode 100644 index 0000000..f4d2b66 Binary files /dev/null and b/server/target/debug/deps/libfutures_io-bd1e5593ba9dde72.rmeta differ diff --git a/server/target/debug/deps/libfutures_macro-7d2d5f7ca4ca763c.so b/server/target/debug/deps/libfutures_macro-7d2d5f7ca4ca763c.so new file mode 100755 index 0000000..d388ba5 Binary files /dev/null and b/server/target/debug/deps/libfutures_macro-7d2d5f7ca4ca763c.so differ diff --git a/server/target/debug/deps/libfutures_sink-18cbfc6237452294.rmeta b/server/target/debug/deps/libfutures_sink-18cbfc6237452294.rmeta new file mode 100644 index 0000000..f5e94da Binary files /dev/null and b/server/target/debug/deps/libfutures_sink-18cbfc6237452294.rmeta differ diff --git a/server/target/debug/deps/libfutures_task-af9699ce74df53d5.rmeta b/server/target/debug/deps/libfutures_task-af9699ce74df53d5.rmeta new file mode 100644 index 0000000..7759687 Binary files /dev/null and b/server/target/debug/deps/libfutures_task-af9699ce74df53d5.rmeta differ diff --git a/server/target/debug/deps/libfutures_util-fcaa8b6175a75930.rmeta b/server/target/debug/deps/libfutures_util-fcaa8b6175a75930.rmeta new file mode 100644 index 0000000..ec29fb4 Binary files /dev/null and b/server/target/debug/deps/libfutures_util-fcaa8b6175a75930.rmeta differ diff --git a/server/target/debug/deps/libgeneric_array-dc61c3363f471d59.rmeta b/server/target/debug/deps/libgeneric_array-dc61c3363f471d59.rmeta new file mode 100644 index 0000000..74573a3 Binary files /dev/null and b/server/target/debug/deps/libgeneric_array-dc61c3363f471d59.rmeta differ diff --git a/server/target/debug/deps/libgetrandom-962d43d3c1c6fac9.rmeta b/server/target/debug/deps/libgetrandom-962d43d3c1c6fac9.rmeta new file mode 100644 index 0000000..611abb1 Binary files /dev/null and b/server/target/debug/deps/libgetrandom-962d43d3c1c6fac9.rmeta differ diff --git a/server/target/debug/deps/libgetrandom-b3889fd5f65bfec2.rmeta b/server/target/debug/deps/libgetrandom-b3889fd5f65bfec2.rmeta new file mode 100644 index 0000000..c9a94d4 Binary files /dev/null and b/server/target/debug/deps/libgetrandom-b3889fd5f65bfec2.rmeta differ diff --git a/server/target/debug/deps/libgetrandom-be1233102bc28025.rmeta b/server/target/debug/deps/libgetrandom-be1233102bc28025.rmeta new file mode 100644 index 0000000..dd0f98f Binary files /dev/null and b/server/target/debug/deps/libgetrandom-be1233102bc28025.rmeta differ diff --git a/server/target/debug/deps/libh2-e2fd7f76e10767d0.rmeta b/server/target/debug/deps/libh2-e2fd7f76e10767d0.rmeta new file mode 100644 index 0000000..db5f15d Binary files /dev/null and b/server/target/debug/deps/libh2-e2fd7f76e10767d0.rmeta differ diff --git a/server/target/debug/deps/libhashbrown-086f503f29587ce4.rmeta b/server/target/debug/deps/libhashbrown-086f503f29587ce4.rmeta new file mode 100644 index 0000000..15a291f Binary files /dev/null and b/server/target/debug/deps/libhashbrown-086f503f29587ce4.rmeta differ diff --git a/server/target/debug/deps/libhashbrown-90aa0807193b9849.rmeta b/server/target/debug/deps/libhashbrown-90aa0807193b9849.rmeta new file mode 100644 index 0000000..2e84d95 Binary files /dev/null and b/server/target/debug/deps/libhashbrown-90aa0807193b9849.rmeta differ diff --git a/server/target/debug/deps/libhttp-8cc0f90952a94539.rmeta b/server/target/debug/deps/libhttp-8cc0f90952a94539.rmeta new file mode 100644 index 0000000..4809a93 Binary files /dev/null and b/server/target/debug/deps/libhttp-8cc0f90952a94539.rmeta differ diff --git a/server/target/debug/deps/libhttp_range-5b4ea6f89def8e3e.rmeta b/server/target/debug/deps/libhttp_range-5b4ea6f89def8e3e.rmeta new file mode 100644 index 0000000..475b0bf Binary files /dev/null and b/server/target/debug/deps/libhttp_range-5b4ea6f89def8e3e.rmeta differ diff --git a/server/target/debug/deps/libhttparse-a8ec7c153a3faeea.rmeta b/server/target/debug/deps/libhttparse-a8ec7c153a3faeea.rmeta new file mode 100644 index 0000000..34c723e Binary files /dev/null and b/server/target/debug/deps/libhttparse-a8ec7c153a3faeea.rmeta differ diff --git a/server/target/debug/deps/libhttpdate-b488394b8eb3fda5.rmeta b/server/target/debug/deps/libhttpdate-b488394b8eb3fda5.rmeta new file mode 100644 index 0000000..1653cff Binary files /dev/null and b/server/target/debug/deps/libhttpdate-b488394b8eb3fda5.rmeta differ diff --git a/server/target/debug/deps/libiana_time_zone-0d6162f939426278.rmeta b/server/target/debug/deps/libiana_time_zone-0d6162f939426278.rmeta new file mode 100644 index 0000000..eba7c18 Binary files /dev/null and b/server/target/debug/deps/libiana_time_zone-0d6162f939426278.rmeta differ diff --git a/server/target/debug/deps/libicu_collections-fa262f2c90f179b1.rmeta b/server/target/debug/deps/libicu_collections-fa262f2c90f179b1.rmeta new file mode 100644 index 0000000..774dff1 Binary files /dev/null and b/server/target/debug/deps/libicu_collections-fa262f2c90f179b1.rmeta differ diff --git a/server/target/debug/deps/libicu_locale_core-9b1bba3cd6c778b5.rmeta b/server/target/debug/deps/libicu_locale_core-9b1bba3cd6c778b5.rmeta new file mode 100644 index 0000000..d6ab8aa Binary files /dev/null and b/server/target/debug/deps/libicu_locale_core-9b1bba3cd6c778b5.rmeta differ diff --git a/server/target/debug/deps/libicu_normalizer-5f9d6fc65fca7bd3.rmeta b/server/target/debug/deps/libicu_normalizer-5f9d6fc65fca7bd3.rmeta new file mode 100644 index 0000000..c31f015 Binary files /dev/null and b/server/target/debug/deps/libicu_normalizer-5f9d6fc65fca7bd3.rmeta differ diff --git a/server/target/debug/deps/libicu_normalizer_data-c58011b549a78ed1.rmeta b/server/target/debug/deps/libicu_normalizer_data-c58011b549a78ed1.rmeta new file mode 100644 index 0000000..f02a8c0 Binary files /dev/null and b/server/target/debug/deps/libicu_normalizer_data-c58011b549a78ed1.rmeta differ diff --git a/server/target/debug/deps/libicu_properties-66cf275404c2dd4d.rmeta b/server/target/debug/deps/libicu_properties-66cf275404c2dd4d.rmeta new file mode 100644 index 0000000..afd8de3 Binary files /dev/null and b/server/target/debug/deps/libicu_properties-66cf275404c2dd4d.rmeta differ diff --git a/server/target/debug/deps/libicu_properties_data-051a7c8a616a6b56.rmeta b/server/target/debug/deps/libicu_properties_data-051a7c8a616a6b56.rmeta new file mode 100644 index 0000000..6771d09 Binary files /dev/null and b/server/target/debug/deps/libicu_properties_data-051a7c8a616a6b56.rmeta differ diff --git a/server/target/debug/deps/libicu_provider-e3cfd454ae7bec4f.rmeta b/server/target/debug/deps/libicu_provider-e3cfd454ae7bec4f.rmeta new file mode 100644 index 0000000..21dfe43 Binary files /dev/null and b/server/target/debug/deps/libicu_provider-e3cfd454ae7bec4f.rmeta differ diff --git a/server/target/debug/deps/libidna-6c8efbcbc044c3d5.rmeta b/server/target/debug/deps/libidna-6c8efbcbc044c3d5.rmeta new file mode 100644 index 0000000..34e24c9 Binary files /dev/null and b/server/target/debug/deps/libidna-6c8efbcbc044c3d5.rmeta differ diff --git a/server/target/debug/deps/libidna_adapter-818f0d431beba66d.rmeta b/server/target/debug/deps/libidna_adapter-818f0d431beba66d.rmeta new file mode 100644 index 0000000..438c4bb Binary files /dev/null and b/server/target/debug/deps/libidna_adapter-818f0d431beba66d.rmeta differ diff --git a/server/target/debug/deps/libimpl_more-55171a48d86b1836.rmeta b/server/target/debug/deps/libimpl_more-55171a48d86b1836.rmeta new file mode 100644 index 0000000..b66e2c7 Binary files /dev/null and b/server/target/debug/deps/libimpl_more-55171a48d86b1836.rmeta differ diff --git a/server/target/debug/deps/libindexmap-62979d31bee7d64d.rmeta b/server/target/debug/deps/libindexmap-62979d31bee7d64d.rmeta new file mode 100644 index 0000000..4cf5960 Binary files /dev/null and b/server/target/debug/deps/libindexmap-62979d31bee7d64d.rmeta differ diff --git a/server/target/debug/deps/libis_terminal_polyfill-cb311c9f413aefae.rmeta b/server/target/debug/deps/libis_terminal_polyfill-cb311c9f413aefae.rmeta new file mode 100644 index 0000000..61559e4 Binary files /dev/null and b/server/target/debug/deps/libis_terminal_polyfill-cb311c9f413aefae.rmeta differ diff --git a/server/target/debug/deps/libitoa-2c16ec70efb38979.rmeta b/server/target/debug/deps/libitoa-2c16ec70efb38979.rmeta new file mode 100644 index 0000000..28f5159 Binary files /dev/null and b/server/target/debug/deps/libitoa-2c16ec70efb38979.rmeta differ diff --git a/server/target/debug/deps/libjiff-48c2790bf48be624.rmeta b/server/target/debug/deps/libjiff-48c2790bf48be624.rmeta new file mode 100644 index 0000000..2a02251 Binary files /dev/null and b/server/target/debug/deps/libjiff-48c2790bf48be624.rmeta differ diff --git a/server/target/debug/deps/libjobserver-83a08429a9631bed.rlib b/server/target/debug/deps/libjobserver-83a08429a9631bed.rlib new file mode 100644 index 0000000..6bbc219 Binary files /dev/null and b/server/target/debug/deps/libjobserver-83a08429a9631bed.rlib differ diff --git a/server/target/debug/deps/libjobserver-83a08429a9631bed.rmeta b/server/target/debug/deps/libjobserver-83a08429a9631bed.rmeta new file mode 100644 index 0000000..80d4dce Binary files /dev/null and b/server/target/debug/deps/libjobserver-83a08429a9631bed.rmeta differ diff --git a/server/target/debug/deps/liblanguage_tags-923b633db01eec30.rmeta b/server/target/debug/deps/liblanguage_tags-923b633db01eec30.rmeta new file mode 100644 index 0000000..8d37de6 Binary files /dev/null and b/server/target/debug/deps/liblanguage_tags-923b633db01eec30.rmeta differ diff --git a/server/target/debug/deps/liblibc-79c4c445bce82087.rmeta b/server/target/debug/deps/liblibc-79c4c445bce82087.rmeta new file mode 100644 index 0000000..24506af Binary files /dev/null and b/server/target/debug/deps/liblibc-79c4c445bce82087.rmeta differ diff --git a/server/target/debug/deps/liblibc-f771bdf5247e5968.rlib b/server/target/debug/deps/liblibc-f771bdf5247e5968.rlib new file mode 100644 index 0000000..ee3aeab Binary files /dev/null and b/server/target/debug/deps/liblibc-f771bdf5247e5968.rlib differ diff --git a/server/target/debug/deps/liblibc-f771bdf5247e5968.rmeta b/server/target/debug/deps/liblibc-f771bdf5247e5968.rmeta new file mode 100644 index 0000000..32a550f Binary files /dev/null and b/server/target/debug/deps/liblibc-f771bdf5247e5968.rmeta differ diff --git a/server/target/debug/deps/liblitemap-71b455a851390e48.rmeta b/server/target/debug/deps/liblitemap-71b455a851390e48.rmeta new file mode 100644 index 0000000..b5c3a2e Binary files /dev/null and b/server/target/debug/deps/liblitemap-71b455a851390e48.rmeta differ diff --git a/server/target/debug/deps/liblocal_channel-c8e97449d34ae9e1.rmeta b/server/target/debug/deps/liblocal_channel-c8e97449d34ae9e1.rmeta new file mode 100644 index 0000000..23dda87 Binary files /dev/null and b/server/target/debug/deps/liblocal_channel-c8e97449d34ae9e1.rmeta differ diff --git a/server/target/debug/deps/liblocal_waker-1e4b07ea5bf0ccda.rmeta b/server/target/debug/deps/liblocal_waker-1e4b07ea5bf0ccda.rmeta new file mode 100644 index 0000000..d8ad283 Binary files /dev/null and b/server/target/debug/deps/liblocal_waker-1e4b07ea5bf0ccda.rmeta differ diff --git a/server/target/debug/deps/liblock_api-ed3dbd93df9a6b25.rmeta b/server/target/debug/deps/liblock_api-ed3dbd93df9a6b25.rmeta new file mode 100644 index 0000000..f8e714e Binary files /dev/null and b/server/target/debug/deps/liblock_api-ed3dbd93df9a6b25.rmeta differ diff --git a/server/target/debug/deps/liblog-3b71213746445865.rlib b/server/target/debug/deps/liblog-3b71213746445865.rlib new file mode 100644 index 0000000..2ff236e Binary files /dev/null and b/server/target/debug/deps/liblog-3b71213746445865.rlib differ diff --git a/server/target/debug/deps/liblog-3b71213746445865.rmeta b/server/target/debug/deps/liblog-3b71213746445865.rmeta new file mode 100644 index 0000000..7bb514f Binary files /dev/null and b/server/target/debug/deps/liblog-3b71213746445865.rmeta differ diff --git a/server/target/debug/deps/liblog-b309183b5a1bb05e.rmeta b/server/target/debug/deps/liblog-b309183b5a1bb05e.rmeta new file mode 100644 index 0000000..4f971fe Binary files /dev/null and b/server/target/debug/deps/liblog-b309183b5a1bb05e.rmeta differ diff --git a/server/target/debug/deps/libmemchr-aff27760c037fde7.rmeta b/server/target/debug/deps/libmemchr-aff27760c037fde7.rmeta new file mode 100644 index 0000000..ae389f6 Binary files /dev/null and b/server/target/debug/deps/libmemchr-aff27760c037fde7.rmeta differ diff --git a/server/target/debug/deps/libmime-c04131c2cb6bc619.rmeta b/server/target/debug/deps/libmime-c04131c2cb6bc619.rmeta new file mode 100644 index 0000000..13b37e5 Binary files /dev/null and b/server/target/debug/deps/libmime-c04131c2cb6bc619.rmeta differ diff --git a/server/target/debug/deps/libmime_guess-5bbdcd00817a2228.rmeta b/server/target/debug/deps/libmime_guess-5bbdcd00817a2228.rmeta new file mode 100644 index 0000000..ba77d4e Binary files /dev/null and b/server/target/debug/deps/libmime_guess-5bbdcd00817a2228.rmeta differ diff --git a/server/target/debug/deps/libminiz_oxide-4e882d942c23dc07.rmeta b/server/target/debug/deps/libminiz_oxide-4e882d942c23dc07.rmeta new file mode 100644 index 0000000..a7082de Binary files /dev/null and b/server/target/debug/deps/libminiz_oxide-4e882d942c23dc07.rmeta differ diff --git a/server/target/debug/deps/libmio-d488354276225ad0.rmeta b/server/target/debug/deps/libmio-d488354276225ad0.rmeta new file mode 100644 index 0000000..afb5a20 Binary files /dev/null and b/server/target/debug/deps/libmio-d488354276225ad0.rmeta differ diff --git a/server/target/debug/deps/libnum_conv-96d07c508cc7b742.rmeta b/server/target/debug/deps/libnum_conv-96d07c508cc7b742.rmeta new file mode 100644 index 0000000..76590dc Binary files /dev/null and b/server/target/debug/deps/libnum_conv-96d07c508cc7b742.rmeta differ diff --git a/server/target/debug/deps/libnum_conv-c4923f863fd16db5.rlib b/server/target/debug/deps/libnum_conv-c4923f863fd16db5.rlib new file mode 100644 index 0000000..e842bde Binary files /dev/null and b/server/target/debug/deps/libnum_conv-c4923f863fd16db5.rlib differ diff --git a/server/target/debug/deps/libnum_conv-c4923f863fd16db5.rmeta b/server/target/debug/deps/libnum_conv-c4923f863fd16db5.rmeta new file mode 100644 index 0000000..97ba05e Binary files /dev/null and b/server/target/debug/deps/libnum_conv-c4923f863fd16db5.rmeta differ diff --git a/server/target/debug/deps/libnum_traits-8ca7a5faf9aeb92a.rmeta b/server/target/debug/deps/libnum_traits-8ca7a5faf9aeb92a.rmeta new file mode 100644 index 0000000..5be25e9 Binary files /dev/null and b/server/target/debug/deps/libnum_traits-8ca7a5faf9aeb92a.rmeta differ diff --git a/server/target/debug/deps/libonce_cell-dc700a0db4d40c33.rmeta b/server/target/debug/deps/libonce_cell-dc700a0db4d40c33.rmeta new file mode 100644 index 0000000..e461be4 Binary files /dev/null and b/server/target/debug/deps/libonce_cell-dc700a0db4d40c33.rmeta differ diff --git a/server/target/debug/deps/libparking_lot-347d3476e9677771.rmeta b/server/target/debug/deps/libparking_lot-347d3476e9677771.rmeta new file mode 100644 index 0000000..edc5722 Binary files /dev/null and b/server/target/debug/deps/libparking_lot-347d3476e9677771.rmeta differ diff --git a/server/target/debug/deps/libparking_lot_core-bcca45860b45ef76.rmeta b/server/target/debug/deps/libparking_lot_core-bcca45860b45ef76.rmeta new file mode 100644 index 0000000..8c7e74a Binary files /dev/null and b/server/target/debug/deps/libparking_lot_core-bcca45860b45ef76.rmeta differ diff --git a/server/target/debug/deps/libpercent_encoding-d25155148e7c3ea3.rmeta b/server/target/debug/deps/libpercent_encoding-d25155148e7c3ea3.rmeta new file mode 100644 index 0000000..2166658 Binary files /dev/null and b/server/target/debug/deps/libpercent_encoding-d25155148e7c3ea3.rmeta differ diff --git a/server/target/debug/deps/libpin_project_lite-8b988ba6c9f72f5b.rlib b/server/target/debug/deps/libpin_project_lite-8b988ba6c9f72f5b.rlib new file mode 100644 index 0000000..92658f1 Binary files /dev/null and b/server/target/debug/deps/libpin_project_lite-8b988ba6c9f72f5b.rlib differ diff --git a/server/target/debug/deps/libpin_project_lite-8b988ba6c9f72f5b.rmeta b/server/target/debug/deps/libpin_project_lite-8b988ba6c9f72f5b.rmeta new file mode 100644 index 0000000..8272743 Binary files /dev/null and b/server/target/debug/deps/libpin_project_lite-8b988ba6c9f72f5b.rmeta differ diff --git a/server/target/debug/deps/libpin_project_lite-a61eee401cfe4d00.rmeta b/server/target/debug/deps/libpin_project_lite-a61eee401cfe4d00.rmeta new file mode 100644 index 0000000..95a2a10 Binary files /dev/null and b/server/target/debug/deps/libpin_project_lite-a61eee401cfe4d00.rmeta differ diff --git a/server/target/debug/deps/libpkg_config-f481c1c51f21f55d.rlib b/server/target/debug/deps/libpkg_config-f481c1c51f21f55d.rlib new file mode 100644 index 0000000..b23be7b Binary files /dev/null and b/server/target/debug/deps/libpkg_config-f481c1c51f21f55d.rlib differ diff --git a/server/target/debug/deps/libpkg_config-f481c1c51f21f55d.rmeta b/server/target/debug/deps/libpkg_config-f481c1c51f21f55d.rmeta new file mode 100644 index 0000000..d70516a Binary files /dev/null and b/server/target/debug/deps/libpkg_config-f481c1c51f21f55d.rmeta differ diff --git a/server/target/debug/deps/libpotential_utf-0f9b10e58c9340ac.rmeta b/server/target/debug/deps/libpotential_utf-0f9b10e58c9340ac.rmeta new file mode 100644 index 0000000..35c7f11 Binary files /dev/null and b/server/target/debug/deps/libpotential_utf-0f9b10e58c9340ac.rmeta differ diff --git a/server/target/debug/deps/libpowerfmt-77d7e4a078e3c049.rmeta b/server/target/debug/deps/libpowerfmt-77d7e4a078e3c049.rmeta new file mode 100644 index 0000000..56d9258 Binary files /dev/null and b/server/target/debug/deps/libpowerfmt-77d7e4a078e3c049.rmeta differ diff --git a/server/target/debug/deps/libppv_lite86-02fd091ba5b69964.rmeta b/server/target/debug/deps/libppv_lite86-02fd091ba5b69964.rmeta new file mode 100644 index 0000000..d0456f9 Binary files /dev/null and b/server/target/debug/deps/libppv_lite86-02fd091ba5b69964.rmeta differ diff --git a/server/target/debug/deps/libproc_macro2-8b947d10cfa3dc7d.rlib b/server/target/debug/deps/libproc_macro2-8b947d10cfa3dc7d.rlib new file mode 100644 index 0000000..60cbbde Binary files /dev/null and b/server/target/debug/deps/libproc_macro2-8b947d10cfa3dc7d.rlib differ diff --git a/server/target/debug/deps/libproc_macro2-8b947d10cfa3dc7d.rmeta b/server/target/debug/deps/libproc_macro2-8b947d10cfa3dc7d.rmeta new file mode 100644 index 0000000..3dfe983 Binary files /dev/null and b/server/target/debug/deps/libproc_macro2-8b947d10cfa3dc7d.rmeta differ diff --git a/server/target/debug/deps/libquote-117ea8ba3d8931af.rlib b/server/target/debug/deps/libquote-117ea8ba3d8931af.rlib new file mode 100644 index 0000000..6aec694 Binary files /dev/null and b/server/target/debug/deps/libquote-117ea8ba3d8931af.rlib differ diff --git a/server/target/debug/deps/libquote-117ea8ba3d8931af.rmeta b/server/target/debug/deps/libquote-117ea8ba3d8931af.rmeta new file mode 100644 index 0000000..a91f99a Binary files /dev/null and b/server/target/debug/deps/libquote-117ea8ba3d8931af.rmeta differ diff --git a/server/target/debug/deps/librand-25ec97ffd940b728.rmeta b/server/target/debug/deps/librand-25ec97ffd940b728.rmeta new file mode 100644 index 0000000..32f4599 Binary files /dev/null and b/server/target/debug/deps/librand-25ec97ffd940b728.rmeta differ diff --git a/server/target/debug/deps/librand-3386ff06806e5b30.rmeta b/server/target/debug/deps/librand-3386ff06806e5b30.rmeta new file mode 100644 index 0000000..30e8d14 Binary files /dev/null and b/server/target/debug/deps/librand-3386ff06806e5b30.rmeta differ diff --git a/server/target/debug/deps/librand_chacha-2853c95e5a3f5795.rmeta b/server/target/debug/deps/librand_chacha-2853c95e5a3f5795.rmeta new file mode 100644 index 0000000..950865c Binary files /dev/null and b/server/target/debug/deps/librand_chacha-2853c95e5a3f5795.rmeta differ diff --git a/server/target/debug/deps/librand_chacha-306a6853a00b0af4.rmeta b/server/target/debug/deps/librand_chacha-306a6853a00b0af4.rmeta new file mode 100644 index 0000000..258064a Binary files /dev/null and b/server/target/debug/deps/librand_chacha-306a6853a00b0af4.rmeta differ diff --git a/server/target/debug/deps/librand_core-57e641724a17c916.rmeta b/server/target/debug/deps/librand_core-57e641724a17c916.rmeta new file mode 100644 index 0000000..29178d5 Binary files /dev/null and b/server/target/debug/deps/librand_core-57e641724a17c916.rmeta differ diff --git a/server/target/debug/deps/librand_core-eb58fd436e06fdeb.rmeta b/server/target/debug/deps/librand_core-eb58fd436e06fdeb.rmeta new file mode 100644 index 0000000..aee385d Binary files /dev/null and b/server/target/debug/deps/librand_core-eb58fd436e06fdeb.rmeta differ diff --git a/server/target/debug/deps/libregex-f7c445cd394d0691.rmeta b/server/target/debug/deps/libregex-f7c445cd394d0691.rmeta new file mode 100644 index 0000000..82050b7 Binary files /dev/null and b/server/target/debug/deps/libregex-f7c445cd394d0691.rmeta differ diff --git a/server/target/debug/deps/libregex_automata-26c72ccac949279a.rmeta b/server/target/debug/deps/libregex_automata-26c72ccac949279a.rmeta new file mode 100644 index 0000000..ed8fbe2 Binary files /dev/null and b/server/target/debug/deps/libregex_automata-26c72ccac949279a.rmeta differ diff --git a/server/target/debug/deps/libregex_lite-70fc10b20a1d64f3.rmeta b/server/target/debug/deps/libregex_lite-70fc10b20a1d64f3.rmeta new file mode 100644 index 0000000..d9fd378 Binary files /dev/null and b/server/target/debug/deps/libregex_lite-70fc10b20a1d64f3.rmeta differ diff --git a/server/target/debug/deps/libregex_lite-95a42a74d9f31bac.rlib b/server/target/debug/deps/libregex_lite-95a42a74d9f31bac.rlib new file mode 100644 index 0000000..935e16a Binary files /dev/null and b/server/target/debug/deps/libregex_lite-95a42a74d9f31bac.rlib differ diff --git a/server/target/debug/deps/libregex_lite-95a42a74d9f31bac.rmeta b/server/target/debug/deps/libregex_lite-95a42a74d9f31bac.rmeta new file mode 100644 index 0000000..41cbeae Binary files /dev/null and b/server/target/debug/deps/libregex_lite-95a42a74d9f31bac.rmeta differ diff --git a/server/target/debug/deps/libregex_syntax-d08731c9e14afbee.rmeta b/server/target/debug/deps/libregex_syntax-d08731c9e14afbee.rmeta new file mode 100644 index 0000000..e5ab988 Binary files /dev/null and b/server/target/debug/deps/libregex_syntax-d08731c9e14afbee.rmeta differ diff --git a/server/target/debug/deps/libryu-4311754d5ac1e9e4.rmeta b/server/target/debug/deps/libryu-4311754d5ac1e9e4.rmeta new file mode 100644 index 0000000..421d166 Binary files /dev/null and b/server/target/debug/deps/libryu-4311754d5ac1e9e4.rmeta differ diff --git a/server/target/debug/deps/libscopeguard-5f5d74d42e3f7fac.rmeta b/server/target/debug/deps/libscopeguard-5f5d74d42e3f7fac.rmeta new file mode 100644 index 0000000..a77a165 Binary files /dev/null and b/server/target/debug/deps/libscopeguard-5f5d74d42e3f7fac.rmeta differ diff --git a/server/target/debug/deps/libserde-26ece2303ac8a3b5.rlib b/server/target/debug/deps/libserde-26ece2303ac8a3b5.rlib new file mode 100644 index 0000000..ed48c59 Binary files /dev/null and b/server/target/debug/deps/libserde-26ece2303ac8a3b5.rlib differ diff --git a/server/target/debug/deps/libserde-26ece2303ac8a3b5.rmeta b/server/target/debug/deps/libserde-26ece2303ac8a3b5.rmeta new file mode 100644 index 0000000..ec0f035 Binary files /dev/null and b/server/target/debug/deps/libserde-26ece2303ac8a3b5.rmeta differ diff --git a/server/target/debug/deps/libserde-9c8b6d6f9285a874.rmeta b/server/target/debug/deps/libserde-9c8b6d6f9285a874.rmeta new file mode 100644 index 0000000..d6d63e4 Binary files /dev/null and b/server/target/debug/deps/libserde-9c8b6d6f9285a874.rmeta differ diff --git a/server/target/debug/deps/libserde_core-07f62aa92e7cee58.rmeta b/server/target/debug/deps/libserde_core-07f62aa92e7cee58.rmeta new file mode 100644 index 0000000..235aee5 Binary files /dev/null and b/server/target/debug/deps/libserde_core-07f62aa92e7cee58.rmeta differ diff --git a/server/target/debug/deps/libserde_core-d6815a25a682173f.rlib b/server/target/debug/deps/libserde_core-d6815a25a682173f.rlib new file mode 100644 index 0000000..8d1d45d Binary files /dev/null and b/server/target/debug/deps/libserde_core-d6815a25a682173f.rlib differ diff --git a/server/target/debug/deps/libserde_core-d6815a25a682173f.rmeta b/server/target/debug/deps/libserde_core-d6815a25a682173f.rmeta new file mode 100644 index 0000000..d4f7e4a Binary files /dev/null and b/server/target/debug/deps/libserde_core-d6815a25a682173f.rmeta differ diff --git a/server/target/debug/deps/libserde_derive-6dc42ac9ff14fe0b.so b/server/target/debug/deps/libserde_derive-6dc42ac9ff14fe0b.so new file mode 100755 index 0000000..4339ea6 Binary files /dev/null and b/server/target/debug/deps/libserde_derive-6dc42ac9ff14fe0b.so differ diff --git a/server/target/debug/deps/libserde_json-372dae96d9312c69.rmeta b/server/target/debug/deps/libserde_json-372dae96d9312c69.rmeta new file mode 100644 index 0000000..b42e0a2 Binary files /dev/null and b/server/target/debug/deps/libserde_json-372dae96d9312c69.rmeta differ diff --git a/server/target/debug/deps/libserde_urlencoded-a80aa6db2c7456fc.rmeta b/server/target/debug/deps/libserde_urlencoded-a80aa6db2c7456fc.rmeta new file mode 100644 index 0000000..23fbfd7 Binary files /dev/null and b/server/target/debug/deps/libserde_urlencoded-a80aa6db2c7456fc.rmeta differ diff --git a/server/target/debug/deps/libsha1-3c138eab508fb52f.rmeta b/server/target/debug/deps/libsha1-3c138eab508fb52f.rmeta new file mode 100644 index 0000000..379ed9a Binary files /dev/null and b/server/target/debug/deps/libsha1-3c138eab508fb52f.rmeta differ diff --git a/server/target/debug/deps/libshlex-ce973efa54fd88d8.rlib b/server/target/debug/deps/libshlex-ce973efa54fd88d8.rlib new file mode 100644 index 0000000..299041f Binary files /dev/null and b/server/target/debug/deps/libshlex-ce973efa54fd88d8.rlib differ diff --git a/server/target/debug/deps/libshlex-ce973efa54fd88d8.rmeta b/server/target/debug/deps/libshlex-ce973efa54fd88d8.rmeta new file mode 100644 index 0000000..76f1bac Binary files /dev/null and b/server/target/debug/deps/libshlex-ce973efa54fd88d8.rmeta differ diff --git a/server/target/debug/deps/libsignal_hook_registry-aaa116fc060d4191.rmeta b/server/target/debug/deps/libsignal_hook_registry-aaa116fc060d4191.rmeta new file mode 100644 index 0000000..810f291 Binary files /dev/null and b/server/target/debug/deps/libsignal_hook_registry-aaa116fc060d4191.rmeta differ diff --git a/server/target/debug/deps/libsimd_adler32-f782a128a7da4c28.rmeta b/server/target/debug/deps/libsimd_adler32-f782a128a7da4c28.rmeta new file mode 100644 index 0000000..de8b1ab Binary files /dev/null and b/server/target/debug/deps/libsimd_adler32-f782a128a7da4c28.rmeta differ diff --git a/server/target/debug/deps/libslab-c76132a80a233406.rmeta b/server/target/debug/deps/libslab-c76132a80a233406.rmeta new file mode 100644 index 0000000..18cc2af Binary files /dev/null and b/server/target/debug/deps/libslab-c76132a80a233406.rmeta differ diff --git a/server/target/debug/deps/libsmallvec-33ecc30efeb3e270.rmeta b/server/target/debug/deps/libsmallvec-33ecc30efeb3e270.rmeta new file mode 100644 index 0000000..9edffb5 Binary files /dev/null and b/server/target/debug/deps/libsmallvec-33ecc30efeb3e270.rmeta differ diff --git a/server/target/debug/deps/libsocket2-5c6468c58041f61f.rmeta b/server/target/debug/deps/libsocket2-5c6468c58041f61f.rmeta new file mode 100644 index 0000000..f64bbc1 Binary files /dev/null and b/server/target/debug/deps/libsocket2-5c6468c58041f61f.rmeta differ diff --git a/server/target/debug/deps/libsocket2-cc1150982e127da5.rmeta b/server/target/debug/deps/libsocket2-cc1150982e127da5.rmeta new file mode 100644 index 0000000..85d25dd Binary files /dev/null and b/server/target/debug/deps/libsocket2-cc1150982e127da5.rmeta differ diff --git a/server/target/debug/deps/libstable_deref_trait-4338ea27e4f4ee16.rmeta b/server/target/debug/deps/libstable_deref_trait-4338ea27e4f4ee16.rmeta new file mode 100644 index 0000000..b40be69 Binary files /dev/null and b/server/target/debug/deps/libstable_deref_trait-4338ea27e4f4ee16.rmeta differ diff --git a/server/target/debug/deps/libsyn-88c9cf438a869065.rlib b/server/target/debug/deps/libsyn-88c9cf438a869065.rlib new file mode 100644 index 0000000..fcf576b Binary files /dev/null and b/server/target/debug/deps/libsyn-88c9cf438a869065.rlib differ diff --git a/server/target/debug/deps/libsyn-88c9cf438a869065.rmeta b/server/target/debug/deps/libsyn-88c9cf438a869065.rmeta new file mode 100644 index 0000000..77fe274 Binary files /dev/null and b/server/target/debug/deps/libsyn-88c9cf438a869065.rmeta differ diff --git a/server/target/debug/deps/libsynstructure-444040a19a662d08.rlib b/server/target/debug/deps/libsynstructure-444040a19a662d08.rlib new file mode 100644 index 0000000..c02273c Binary files /dev/null and b/server/target/debug/deps/libsynstructure-444040a19a662d08.rlib differ diff --git a/server/target/debug/deps/libsynstructure-444040a19a662d08.rmeta b/server/target/debug/deps/libsynstructure-444040a19a662d08.rmeta new file mode 100644 index 0000000..72d0ed4 Binary files /dev/null and b/server/target/debug/deps/libsynstructure-444040a19a662d08.rmeta differ diff --git a/server/target/debug/deps/libtime-08b4323066e5ba60.rmeta b/server/target/debug/deps/libtime-08b4323066e5ba60.rmeta new file mode 100644 index 0000000..77e3a2c Binary files /dev/null and b/server/target/debug/deps/libtime-08b4323066e5ba60.rmeta differ diff --git a/server/target/debug/deps/libtime_core-34128e7d4eed9e7c.rlib b/server/target/debug/deps/libtime_core-34128e7d4eed9e7c.rlib new file mode 100644 index 0000000..32eeaca Binary files /dev/null and b/server/target/debug/deps/libtime_core-34128e7d4eed9e7c.rlib differ diff --git a/server/target/debug/deps/libtime_core-34128e7d4eed9e7c.rmeta b/server/target/debug/deps/libtime_core-34128e7d4eed9e7c.rmeta new file mode 100644 index 0000000..f05bf46 Binary files /dev/null and b/server/target/debug/deps/libtime_core-34128e7d4eed9e7c.rmeta differ diff --git a/server/target/debug/deps/libtime_core-867d88cbfa098135.rmeta b/server/target/debug/deps/libtime_core-867d88cbfa098135.rmeta new file mode 100644 index 0000000..d6bb845 Binary files /dev/null and b/server/target/debug/deps/libtime_core-867d88cbfa098135.rmeta differ diff --git a/server/target/debug/deps/libtime_macros-f8715d5ae3617016.so b/server/target/debug/deps/libtime_macros-f8715d5ae3617016.so new file mode 100755 index 0000000..d444685 Binary files /dev/null and b/server/target/debug/deps/libtime_macros-f8715d5ae3617016.so differ diff --git a/server/target/debug/deps/libtinystr-2771ca0d3247b01b.rmeta b/server/target/debug/deps/libtinystr-2771ca0d3247b01b.rmeta new file mode 100644 index 0000000..acf35b8 Binary files /dev/null and b/server/target/debug/deps/libtinystr-2771ca0d3247b01b.rmeta differ diff --git a/server/target/debug/deps/libtokio-daeaa16a951e0192.rmeta b/server/target/debug/deps/libtokio-daeaa16a951e0192.rmeta new file mode 100644 index 0000000..4b67653 Binary files /dev/null and b/server/target/debug/deps/libtokio-daeaa16a951e0192.rmeta differ diff --git a/server/target/debug/deps/libtokio_macros-affebf8340ce0c7c.so b/server/target/debug/deps/libtokio_macros-affebf8340ce0c7c.so new file mode 100755 index 0000000..3e613cd Binary files /dev/null and b/server/target/debug/deps/libtokio_macros-affebf8340ce0c7c.so differ diff --git a/server/target/debug/deps/libtokio_stream-457a4c8da78a1f7a.rmeta b/server/target/debug/deps/libtokio_stream-457a4c8da78a1f7a.rmeta new file mode 100644 index 0000000..32e4c0a Binary files /dev/null and b/server/target/debug/deps/libtokio_stream-457a4c8da78a1f7a.rmeta differ diff --git a/server/target/debug/deps/libtokio_util-1da6e936d69cb930.rmeta b/server/target/debug/deps/libtokio_util-1da6e936d69cb930.rmeta new file mode 100644 index 0000000..f96cf71 Binary files /dev/null and b/server/target/debug/deps/libtokio_util-1da6e936d69cb930.rmeta differ diff --git a/server/target/debug/deps/libtracing-33c7011246df32e8.rlib b/server/target/debug/deps/libtracing-33c7011246df32e8.rlib new file mode 100644 index 0000000..9b4cd18 Binary files /dev/null and b/server/target/debug/deps/libtracing-33c7011246df32e8.rlib differ diff --git a/server/target/debug/deps/libtracing-33c7011246df32e8.rmeta b/server/target/debug/deps/libtracing-33c7011246df32e8.rmeta new file mode 100644 index 0000000..4d7a3b6 Binary files /dev/null and b/server/target/debug/deps/libtracing-33c7011246df32e8.rmeta differ diff --git a/server/target/debug/deps/libtracing-3979c33161b262f3.rmeta b/server/target/debug/deps/libtracing-3979c33161b262f3.rmeta new file mode 100644 index 0000000..169acad Binary files /dev/null and b/server/target/debug/deps/libtracing-3979c33161b262f3.rmeta differ diff --git a/server/target/debug/deps/libtracing_attributes-7927744f87d8d978.so b/server/target/debug/deps/libtracing_attributes-7927744f87d8d978.so new file mode 100755 index 0000000..fdc1a11 Binary files /dev/null and b/server/target/debug/deps/libtracing_attributes-7927744f87d8d978.so differ diff --git a/server/target/debug/deps/libtracing_core-1d9746ace9409443.rlib b/server/target/debug/deps/libtracing_core-1d9746ace9409443.rlib new file mode 100644 index 0000000..3753047 Binary files /dev/null and b/server/target/debug/deps/libtracing_core-1d9746ace9409443.rlib differ diff --git a/server/target/debug/deps/libtracing_core-1d9746ace9409443.rmeta b/server/target/debug/deps/libtracing_core-1d9746ace9409443.rmeta new file mode 100644 index 0000000..dd630a5 Binary files /dev/null and b/server/target/debug/deps/libtracing_core-1d9746ace9409443.rmeta differ diff --git a/server/target/debug/deps/libtracing_core-2a280d3a91c8c1cf.rmeta b/server/target/debug/deps/libtracing_core-2a280d3a91c8c1cf.rmeta new file mode 100644 index 0000000..4302ab8 Binary files /dev/null and b/server/target/debug/deps/libtracing_core-2a280d3a91c8c1cf.rmeta differ diff --git a/server/target/debug/deps/libtypenum-c8cc37eb0dbedd4f.rmeta b/server/target/debug/deps/libtypenum-c8cc37eb0dbedd4f.rmeta new file mode 100644 index 0000000..97935a6 Binary files /dev/null and b/server/target/debug/deps/libtypenum-c8cc37eb0dbedd4f.rmeta differ diff --git a/server/target/debug/deps/libunicase-3ac36185b62d69ed.rlib b/server/target/debug/deps/libunicase-3ac36185b62d69ed.rlib new file mode 100644 index 0000000..405e4ba Binary files /dev/null and b/server/target/debug/deps/libunicase-3ac36185b62d69ed.rlib differ diff --git a/server/target/debug/deps/libunicase-3ac36185b62d69ed.rmeta b/server/target/debug/deps/libunicase-3ac36185b62d69ed.rmeta new file mode 100644 index 0000000..49b4876 Binary files /dev/null and b/server/target/debug/deps/libunicase-3ac36185b62d69ed.rmeta differ diff --git a/server/target/debug/deps/libunicase-9b2ded610a622a12.rmeta b/server/target/debug/deps/libunicase-9b2ded610a622a12.rmeta new file mode 100644 index 0000000..6aa4ee8 Binary files /dev/null and b/server/target/debug/deps/libunicase-9b2ded610a622a12.rmeta differ diff --git a/server/target/debug/deps/libunicode_ident-a43390fd6bef71db.rlib b/server/target/debug/deps/libunicode_ident-a43390fd6bef71db.rlib new file mode 100644 index 0000000..df205a1 Binary files /dev/null and b/server/target/debug/deps/libunicode_ident-a43390fd6bef71db.rlib differ diff --git a/server/target/debug/deps/libunicode_ident-a43390fd6bef71db.rmeta b/server/target/debug/deps/libunicode_ident-a43390fd6bef71db.rmeta new file mode 100644 index 0000000..464f19a Binary files /dev/null and b/server/target/debug/deps/libunicode_ident-a43390fd6bef71db.rmeta differ diff --git a/server/target/debug/deps/libunicode_segmentation-7ba902d172d5e12b.rlib b/server/target/debug/deps/libunicode_segmentation-7ba902d172d5e12b.rlib new file mode 100644 index 0000000..d572eab Binary files /dev/null and b/server/target/debug/deps/libunicode_segmentation-7ba902d172d5e12b.rlib differ diff --git a/server/target/debug/deps/libunicode_segmentation-7ba902d172d5e12b.rmeta b/server/target/debug/deps/libunicode_segmentation-7ba902d172d5e12b.rmeta new file mode 100644 index 0000000..ce758bd Binary files /dev/null and b/server/target/debug/deps/libunicode_segmentation-7ba902d172d5e12b.rmeta differ diff --git a/server/target/debug/deps/libunicode_xid-a1c81d0ca4d32902.rlib b/server/target/debug/deps/libunicode_xid-a1c81d0ca4d32902.rlib new file mode 100644 index 0000000..7e1c247 Binary files /dev/null and b/server/target/debug/deps/libunicode_xid-a1c81d0ca4d32902.rlib differ diff --git a/server/target/debug/deps/libunicode_xid-a1c81d0ca4d32902.rmeta b/server/target/debug/deps/libunicode_xid-a1c81d0ca4d32902.rmeta new file mode 100644 index 0000000..825986f Binary files /dev/null and b/server/target/debug/deps/libunicode_xid-a1c81d0ca4d32902.rmeta differ diff --git a/server/target/debug/deps/liburl-05f4306a81909a21.rmeta b/server/target/debug/deps/liburl-05f4306a81909a21.rmeta new file mode 100644 index 0000000..526e536 Binary files /dev/null and b/server/target/debug/deps/liburl-05f4306a81909a21.rmeta differ diff --git a/server/target/debug/deps/libutf8_iter-2688cebfb14d9ed1.rmeta b/server/target/debug/deps/libutf8_iter-2688cebfb14d9ed1.rmeta new file mode 100644 index 0000000..2ad708e Binary files /dev/null and b/server/target/debug/deps/libutf8_iter-2688cebfb14d9ed1.rmeta differ diff --git a/server/target/debug/deps/libutf8parse-a3c57471a0fdc5c4.rmeta b/server/target/debug/deps/libutf8parse-a3c57471a0fdc5c4.rmeta new file mode 100644 index 0000000..61bf022 Binary files /dev/null and b/server/target/debug/deps/libutf8parse-a3c57471a0fdc5c4.rmeta differ diff --git a/server/target/debug/deps/libuuid-974f19b8bc788ee8.rmeta b/server/target/debug/deps/libuuid-974f19b8bc788ee8.rmeta new file mode 100644 index 0000000..701ebe5 Binary files /dev/null and b/server/target/debug/deps/libuuid-974f19b8bc788ee8.rmeta differ diff --git a/server/target/debug/deps/libv_htmlescape-0f067229ea331099.rmeta b/server/target/debug/deps/libv_htmlescape-0f067229ea331099.rmeta new file mode 100644 index 0000000..d7963b4 Binary files /dev/null and b/server/target/debug/deps/libv_htmlescape-0f067229ea331099.rmeta differ diff --git a/server/target/debug/deps/libversion_check-9859fe56c2d7fed0.rlib b/server/target/debug/deps/libversion_check-9859fe56c2d7fed0.rlib new file mode 100644 index 0000000..b29d758 Binary files /dev/null and b/server/target/debug/deps/libversion_check-9859fe56c2d7fed0.rlib differ diff --git a/server/target/debug/deps/libversion_check-9859fe56c2d7fed0.rmeta b/server/target/debug/deps/libversion_check-9859fe56c2d7fed0.rmeta new file mode 100644 index 0000000..818870f Binary files /dev/null and b/server/target/debug/deps/libversion_check-9859fe56c2d7fed0.rmeta differ diff --git a/server/target/debug/deps/libwriteable-fae44dae67a10c43.rmeta b/server/target/debug/deps/libwriteable-fae44dae67a10c43.rmeta new file mode 100644 index 0000000..62483df Binary files /dev/null and b/server/target/debug/deps/libwriteable-fae44dae67a10c43.rmeta differ diff --git a/server/target/debug/deps/libyoke-e037e3c224864b94.rmeta b/server/target/debug/deps/libyoke-e037e3c224864b94.rmeta new file mode 100644 index 0000000..2ca2e36 Binary files /dev/null and b/server/target/debug/deps/libyoke-e037e3c224864b94.rmeta differ diff --git a/server/target/debug/deps/libyoke_derive-b286261b91a18942.so b/server/target/debug/deps/libyoke_derive-b286261b91a18942.so new file mode 100755 index 0000000..5ac38ac Binary files /dev/null and b/server/target/debug/deps/libyoke_derive-b286261b91a18942.so differ diff --git a/server/target/debug/deps/libzerocopy-140e0db8661c6d51.rmeta b/server/target/debug/deps/libzerocopy-140e0db8661c6d51.rmeta new file mode 100644 index 0000000..ceefbfb Binary files /dev/null and b/server/target/debug/deps/libzerocopy-140e0db8661c6d51.rmeta differ diff --git a/server/target/debug/deps/libzerofrom-8dbd1d50b3509f2f.rmeta b/server/target/debug/deps/libzerofrom-8dbd1d50b3509f2f.rmeta new file mode 100644 index 0000000..769eb59 Binary files /dev/null and b/server/target/debug/deps/libzerofrom-8dbd1d50b3509f2f.rmeta differ diff --git a/server/target/debug/deps/libzerofrom_derive-9576136568908fe8.so b/server/target/debug/deps/libzerofrom_derive-9576136568908fe8.so new file mode 100755 index 0000000..712bffa Binary files /dev/null and b/server/target/debug/deps/libzerofrom_derive-9576136568908fe8.so differ diff --git a/server/target/debug/deps/libzerotrie-9818bc8ef3de4ac1.rmeta b/server/target/debug/deps/libzerotrie-9818bc8ef3de4ac1.rmeta new file mode 100644 index 0000000..5f7f75b Binary files /dev/null and b/server/target/debug/deps/libzerotrie-9818bc8ef3de4ac1.rmeta differ diff --git a/server/target/debug/deps/libzerovec-fd438d04957bc54b.rmeta b/server/target/debug/deps/libzerovec-fd438d04957bc54b.rmeta new file mode 100644 index 0000000..7636c8a Binary files /dev/null and b/server/target/debug/deps/libzerovec-fd438d04957bc54b.rmeta differ diff --git a/server/target/debug/deps/libzerovec_derive-62a37bc4fcf6d476.so b/server/target/debug/deps/libzerovec_derive-62a37bc4fcf6d476.so new file mode 100755 index 0000000..4e14c14 Binary files /dev/null and b/server/target/debug/deps/libzerovec_derive-62a37bc4fcf6d476.so differ diff --git a/server/target/debug/deps/libzmij-503b4b33217e4370.rmeta b/server/target/debug/deps/libzmij-503b4b33217e4370.rmeta new file mode 100644 index 0000000..38aa07a Binary files /dev/null and b/server/target/debug/deps/libzmij-503b4b33217e4370.rmeta differ diff --git a/server/target/debug/deps/libzstd-49edc042adcd0703.rmeta b/server/target/debug/deps/libzstd-49edc042adcd0703.rmeta new file mode 100644 index 0000000..693ac78 Binary files /dev/null and b/server/target/debug/deps/libzstd-49edc042adcd0703.rmeta differ diff --git a/server/target/debug/deps/libzstd_safe-94a4f75bee32fb27.rmeta b/server/target/debug/deps/libzstd_safe-94a4f75bee32fb27.rmeta new file mode 100644 index 0000000..934b86b Binary files /dev/null and b/server/target/debug/deps/libzstd_safe-94a4f75bee32fb27.rmeta differ diff --git a/server/target/debug/deps/libzstd_sys-c613c42443c831d6.rmeta b/server/target/debug/deps/libzstd_sys-c613c42443c831d6.rmeta new file mode 100644 index 0000000..6b24993 Binary files /dev/null and b/server/target/debug/deps/libzstd_sys-c613c42443c831d6.rmeta differ diff --git a/server/target/debug/deps/litemap-71b455a851390e48.d b/server/target/debug/deps/litemap-71b455a851390e48.d new file mode 100644 index 0000000..b55ae77 --- /dev/null +++ b/server/target/debug/deps/litemap-71b455a851390e48.d @@ -0,0 +1,8 @@ +/home/z/my-project/projects/server/target/debug/deps/litemap-71b455a851390e48.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/slice_impl.rs + +/home/z/my-project/projects/server/target/debug/deps/liblitemap-71b455a851390e48.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/slice_impl.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/slice_impl.rs: diff --git a/server/target/debug/deps/local_channel-c8e97449d34ae9e1.d b/server/target/debug/deps/local_channel-c8e97449d34ae9e1.d new file mode 100644 index 0000000..ff1535c --- /dev/null +++ b/server/target/debug/deps/local_channel-c8e97449d34ae9e1.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/deps/local_channel-c8e97449d34ae9e1.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/local-channel-0.1.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/local-channel-0.1.5/src/mpsc.rs + +/home/z/my-project/projects/server/target/debug/deps/liblocal_channel-c8e97449d34ae9e1.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/local-channel-0.1.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/local-channel-0.1.5/src/mpsc.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/local-channel-0.1.5/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/local-channel-0.1.5/src/mpsc.rs: diff --git a/server/target/debug/deps/local_waker-1e4b07ea5bf0ccda.d b/server/target/debug/deps/local_waker-1e4b07ea5bf0ccda.d new file mode 100644 index 0000000..1bdc7b3 --- /dev/null +++ b/server/target/debug/deps/local_waker-1e4b07ea5bf0ccda.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/local_waker-1e4b07ea5bf0ccda.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/local-waker-0.1.4/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/liblocal_waker-1e4b07ea5bf0ccda.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/local-waker-0.1.4/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/local-waker-0.1.4/src/lib.rs: diff --git a/server/target/debug/deps/lock_api-ed3dbd93df9a6b25.d b/server/target/debug/deps/lock_api-ed3dbd93df9a6b25.d new file mode 100644 index 0000000..d4891b6 --- /dev/null +++ b/server/target/debug/deps/lock_api-ed3dbd93df9a6b25.d @@ -0,0 +1,8 @@ +/home/z/my-project/projects/server/target/debug/deps/lock_api-ed3dbd93df9a6b25.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs + +/home/z/my-project/projects/server/target/debug/deps/liblock_api-ed3dbd93df9a6b25.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs: diff --git a/server/target/debug/deps/log-3b71213746445865.d b/server/target/debug/deps/log-3b71213746445865.d new file mode 100644 index 0000000..bbdbd98 --- /dev/null +++ b/server/target/debug/deps/log-3b71213746445865.d @@ -0,0 +1,10 @@ +/home/z/my-project/projects/server/target/debug/deps/log-3b71213746445865.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs + +/home/z/my-project/projects/server/target/debug/deps/liblog-3b71213746445865.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs + +/home/z/my-project/projects/server/target/debug/deps/liblog-3b71213746445865.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs: diff --git a/server/target/debug/deps/log-b309183b5a1bb05e.d b/server/target/debug/deps/log-b309183b5a1bb05e.d new file mode 100644 index 0000000..66cdd81 --- /dev/null +++ b/server/target/debug/deps/log-b309183b5a1bb05e.d @@ -0,0 +1,8 @@ +/home/z/my-project/projects/server/target/debug/deps/log-b309183b5a1bb05e.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs + +/home/z/my-project/projects/server/target/debug/deps/liblog-b309183b5a1bb05e.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs: diff --git a/server/target/debug/deps/memchr-aff27760c037fde7.d b/server/target/debug/deps/memchr-aff27760c037fde7.d new file mode 100644 index 0000000..051c877 --- /dev/null +++ b/server/target/debug/deps/memchr-aff27760c037fde7.d @@ -0,0 +1,31 @@ +/home/z/my-project/projects/server/target/debug/deps/memchr-aff27760c037fde7.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/default_rank.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/rabinkarp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/shiftor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/twoway.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/packedpair.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/packedpair.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/packedpair.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/cow.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/searcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/vector.rs + +/home/z/my-project/projects/server/target/debug/deps/libmemchr-aff27760c037fde7.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/default_rank.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/rabinkarp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/shiftor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/twoway.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/packedpair.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/packedpair.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/packedpair.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/cow.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/searcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/vector.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/memchr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/default_rank.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/rabinkarp.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/shiftor.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/twoway.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/memchr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/packedpair.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/memchr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/packedpair.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/memchr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/packedpair.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/memchr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/cow.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/ext.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memchr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/searcher.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/vector.rs: diff --git a/server/target/debug/deps/mime-c04131c2cb6bc619.d b/server/target/debug/deps/mime-c04131c2cb6bc619.d new file mode 100644 index 0000000..9b2c64b --- /dev/null +++ b/server/target/debug/deps/mime-c04131c2cb6bc619.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/deps/mime-c04131c2cb6bc619.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/parse.rs + +/home/z/my-project/projects/server/target/debug/deps/libmime-c04131c2cb6bc619.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/parse.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/parse.rs: diff --git a/server/target/debug/deps/mime_guess-5bbdcd00817a2228.d b/server/target/debug/deps/mime_guess-5bbdcd00817a2228.d new file mode 100644 index 0000000..bd5f3ea --- /dev/null +++ b/server/target/debug/deps/mime_guess-5bbdcd00817a2228.d @@ -0,0 +1,10 @@ +/home/z/my-project/projects/server/target/debug/deps/mime_guess-5bbdcd00817a2228.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/src/impl_bin_search.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/src/mime_types.rs /home/z/my-project/projects/server/target/debug/build/mime_guess-dab029086dacac36/out/mime_types_generated.rs + +/home/z/my-project/projects/server/target/debug/deps/libmime_guess-5bbdcd00817a2228.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/src/impl_bin_search.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/src/mime_types.rs /home/z/my-project/projects/server/target/debug/build/mime_guess-dab029086dacac36/out/mime_types_generated.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/src/impl_bin_search.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/src/mime_types.rs: +/home/z/my-project/projects/server/target/debug/build/mime_guess-dab029086dacac36/out/mime_types_generated.rs: + +# env-dep:MIME_TYPES_GENERATED_PATH=/home/z/my-project/projects/server/target/debug/build/mime_guess-dab029086dacac36/out/mime_types_generated.rs diff --git a/server/target/debug/deps/miniz_oxide-4e882d942c23dc07.d b/server/target/debug/deps/miniz_oxide-4e882d942c23dc07.d new file mode 100644 index 0000000..b6b0d0b --- /dev/null +++ b/server/target/debug/deps/miniz_oxide-4e882d942c23dc07.d @@ -0,0 +1,16 @@ +/home/z/my-project/projects/server/target/debug/deps/miniz_oxide-4e882d942c23dc07.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/core.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/stored.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/zlib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/inflate/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/inflate/core.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/inflate/output_buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/inflate/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/shared.rs + +/home/z/my-project/projects/server/target/debug/deps/libminiz_oxide-4e882d942c23dc07.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/core.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/stored.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/zlib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/inflate/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/inflate/core.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/inflate/output_buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/inflate/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/shared.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/buffer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/core.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/stored.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/stream.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/deflate/zlib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/inflate/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/inflate/core.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/inflate/output_buffer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/inflate/stream.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/shared.rs: diff --git a/server/target/debug/deps/mio-d488354276225ad0.d b/server/target/debug/deps/mio-d488354276225ad0.d new file mode 100644 index 0000000..184e13f --- /dev/null +++ b/server/target/debug/deps/mio-d488354276225ad0.d @@ -0,0 +1,38 @@ +/home/z/my-project/projects/server/target/debug/deps/mio-d488354276225ad0.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/interest.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/poll.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/token.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/waker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/event/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/event/event.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/event/events.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/event/source.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/selector/epoll.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/waker/eventfd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/sourcefd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/pipe.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/selector/stateless_io_source.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/net.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/tcp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/udp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/uds/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/uds/datagram.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/uds/listener.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/uds/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/io_source.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/tcp/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/tcp/listener.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/tcp/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/udp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/uds/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/uds/datagram.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/uds/listener.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/uds/stream.rs + +/home/z/my-project/projects/server/target/debug/deps/libmio-d488354276225ad0.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/interest.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/poll.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/token.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/waker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/event/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/event/event.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/event/events.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/event/source.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/selector/epoll.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/waker/eventfd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/sourcefd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/pipe.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/selector/stateless_io_source.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/net.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/tcp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/udp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/uds/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/uds/datagram.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/uds/listener.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/uds/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/io_source.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/tcp/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/tcp/listener.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/tcp/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/udp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/uds/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/uds/datagram.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/uds/listener.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/uds/stream.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/interest.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/poll.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/token.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/waker.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/event/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/event/event.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/event/events.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/event/source.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/selector/epoll.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/waker/eventfd.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/sourcefd.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/pipe.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/selector/stateless_io_source.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/net.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/tcp.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/udp.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/uds/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/uds/datagram.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/uds/listener.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/sys/unix/uds/stream.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/io_source.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/tcp/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/tcp/listener.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/tcp/stream.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/udp.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/uds/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/uds/datagram.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/uds/listener.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.0/src/net/uds/stream.rs: diff --git a/server/target/debug/deps/num_conv-96d07c508cc7b742.d b/server/target/debug/deps/num_conv-96d07c508cc7b742.d new file mode 100644 index 0000000..9ae490e --- /dev/null +++ b/server/target/debug/deps/num_conv-96d07c508cc7b742.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/num_conv-96d07c508cc7b742.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-conv-0.2.1/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libnum_conv-96d07c508cc7b742.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-conv-0.2.1/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-conv-0.2.1/src/lib.rs: diff --git a/server/target/debug/deps/num_conv-c4923f863fd16db5.d b/server/target/debug/deps/num_conv-c4923f863fd16db5.d new file mode 100644 index 0000000..560ba99 --- /dev/null +++ b/server/target/debug/deps/num_conv-c4923f863fd16db5.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/num_conv-c4923f863fd16db5.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-conv-0.2.1/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libnum_conv-c4923f863fd16db5.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-conv-0.2.1/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libnum_conv-c4923f863fd16db5.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-conv-0.2.1/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-conv-0.2.1/src/lib.rs: diff --git a/server/target/debug/deps/num_traits-8ca7a5faf9aeb92a.d b/server/target/debug/deps/num_traits-8ca7a5faf9aeb92a.d new file mode 100644 index 0000000..22974a1 --- /dev/null +++ b/server/target/debug/deps/num_traits-8ca7a5faf9aeb92a.d @@ -0,0 +1,23 @@ +/home/z/my-project/projects/server/target/debug/deps/num_traits-8ca7a5faf9aeb92a.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/bounds.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/cast.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/float.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/identities.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/checked.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/euclid.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/inv.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/mul_add.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/overflowing.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/saturating.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/wrapping.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/pow.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/real.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/sign.rs + +/home/z/my-project/projects/server/target/debug/deps/libnum_traits-8ca7a5faf9aeb92a.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/bounds.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/cast.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/float.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/identities.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/checked.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/euclid.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/inv.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/mul_add.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/overflowing.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/saturating.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/wrapping.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/pow.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/real.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/sign.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/bounds.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/cast.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/float.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/identities.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/int.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/bytes.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/checked.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/euclid.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/inv.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/mul_add.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/overflowing.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/saturating.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/wrapping.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/pow.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/real.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/sign.rs: diff --git a/server/target/debug/deps/once_cell-dc700a0db4d40c33.d b/server/target/debug/deps/once_cell-dc700a0db4d40c33.d new file mode 100644 index 0000000..aac6e45 --- /dev/null +++ b/server/target/debug/deps/once_cell-dc700a0db4d40c33.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/once_cell-dc700a0db4d40c33.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs + +/home/z/my-project/projects/server/target/debug/deps/libonce_cell-dc700a0db4d40c33.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs: diff --git a/server/target/debug/deps/parking_lot-347d3476e9677771.d b/server/target/debug/deps/parking_lot-347d3476e9677771.d new file mode 100644 index 0000000..55ac959 --- /dev/null +++ b/server/target/debug/deps/parking_lot-347d3476e9677771.d @@ -0,0 +1,17 @@ +/home/z/my-project/projects/server/target/debug/deps/parking_lot-347d3476e9677771.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs + +/home/z/my-project/projects/server/target/debug/deps/libparking_lot-347d3476e9677771.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs: diff --git a/server/target/debug/deps/parking_lot_core-bcca45860b45ef76.d b/server/target/debug/deps/parking_lot_core-bcca45860b45ef76.d new file mode 100644 index 0000000..8cc8bb6 --- /dev/null +++ b/server/target/debug/deps/parking_lot_core-bcca45860b45ef76.d @@ -0,0 +1,11 @@ +/home/z/my-project/projects/server/target/debug/deps/parking_lot_core-bcca45860b45ef76.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs + +/home/z/my-project/projects/server/target/debug/deps/libparking_lot_core-bcca45860b45ef76.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs: diff --git a/server/target/debug/deps/percent_encoding-d25155148e7c3ea3.d b/server/target/debug/deps/percent_encoding-d25155148e7c3ea3.d new file mode 100644 index 0000000..9566880 --- /dev/null +++ b/server/target/debug/deps/percent_encoding-d25155148e7c3ea3.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/deps/percent_encoding-d25155148e7c3ea3.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/ascii_set.rs + +/home/z/my-project/projects/server/target/debug/deps/libpercent_encoding-d25155148e7c3ea3.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/ascii_set.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/ascii_set.rs: diff --git a/server/target/debug/deps/pin_project_lite-8b988ba6c9f72f5b.d b/server/target/debug/deps/pin_project_lite-8b988ba6c9f72f5b.d new file mode 100644 index 0000000..c45258f --- /dev/null +++ b/server/target/debug/deps/pin_project_lite-8b988ba6c9f72f5b.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/pin_project_lite-8b988ba6c9f72f5b.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libpin_project_lite-8b988ba6c9f72f5b.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libpin_project_lite-8b988ba6c9f72f5b.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/src/lib.rs: diff --git a/server/target/debug/deps/pin_project_lite-a61eee401cfe4d00.d b/server/target/debug/deps/pin_project_lite-a61eee401cfe4d00.d new file mode 100644 index 0000000..309ed63 --- /dev/null +++ b/server/target/debug/deps/pin_project_lite-a61eee401cfe4d00.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/pin_project_lite-a61eee401cfe4d00.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libpin_project_lite-a61eee401cfe4d00.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/src/lib.rs: diff --git a/server/target/debug/deps/pkg_config-f481c1c51f21f55d.d b/server/target/debug/deps/pkg_config-f481c1c51f21f55d.d new file mode 100644 index 0000000..7382d36 --- /dev/null +++ b/server/target/debug/deps/pkg_config-f481c1c51f21f55d.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/pkg_config-f481c1c51f21f55d.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libpkg_config-f481c1c51f21f55d.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libpkg_config-f481c1c51f21f55d.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/src/lib.rs: diff --git a/server/target/debug/deps/potential_utf-0f9b10e58c9340ac.d b/server/target/debug/deps/potential_utf-0f9b10e58c9340ac.d new file mode 100644 index 0000000..2c03403 --- /dev/null +++ b/server/target/debug/deps/potential_utf-0f9b10e58c9340ac.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/potential_utf-0f9b10e58c9340ac.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/uchar.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/ustr.rs + +/home/z/my-project/projects/server/target/debug/deps/libpotential_utf-0f9b10e58c9340ac.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/uchar.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/ustr.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/uchar.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/ustr.rs: diff --git a/server/target/debug/deps/powerfmt-77d7e4a078e3c049.d b/server/target/debug/deps/powerfmt-77d7e4a078e3c049.d new file mode 100644 index 0000000..7465e31 --- /dev/null +++ b/server/target/debug/deps/powerfmt-77d7e4a078e3c049.d @@ -0,0 +1,9 @@ +/home/z/my-project/projects/server/target/debug/deps/powerfmt-77d7e4a078e3c049.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/powerfmt-0.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/powerfmt-0.2.0/src/buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/powerfmt-0.2.0/src/ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/powerfmt-0.2.0/src/smart_display.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/powerfmt-0.2.0/src/smart_display_impls.rs + +/home/z/my-project/projects/server/target/debug/deps/libpowerfmt-77d7e4a078e3c049.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/powerfmt-0.2.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/powerfmt-0.2.0/src/buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/powerfmt-0.2.0/src/ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/powerfmt-0.2.0/src/smart_display.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/powerfmt-0.2.0/src/smart_display_impls.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/powerfmt-0.2.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/powerfmt-0.2.0/src/buf.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/powerfmt-0.2.0/src/ext.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/powerfmt-0.2.0/src/smart_display.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/powerfmt-0.2.0/src/smart_display_impls.rs: diff --git a/server/target/debug/deps/ppv_lite86-02fd091ba5b69964.d b/server/target/debug/deps/ppv_lite86-02fd091ba5b69964.d new file mode 100644 index 0000000..aac6fa2 --- /dev/null +++ b/server/target/debug/deps/ppv_lite86-02fd091ba5b69964.d @@ -0,0 +1,9 @@ +/home/z/my-project/projects/server/target/debug/deps/ppv_lite86-02fd091ba5b69964.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/soft.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/types.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/x86_64/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/x86_64/sse2.rs + +/home/z/my-project/projects/server/target/debug/deps/libppv_lite86-02fd091ba5b69964.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/soft.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/types.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/x86_64/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/x86_64/sse2.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/soft.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/types.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/x86_64/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/x86_64/sse2.rs: diff --git a/server/target/debug/deps/proc_macro2-8b947d10cfa3dc7d.d b/server/target/debug/deps/proc_macro2-8b947d10cfa3dc7d.d new file mode 100644 index 0000000..29207a6 --- /dev/null +++ b/server/target/debug/deps/proc_macro2-8b947d10cfa3dc7d.d @@ -0,0 +1,17 @@ +/home/z/my-project/projects/server/target/debug/deps/proc_macro2-8b947d10cfa3dc7d.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_file.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_location.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs + +/home/z/my-project/projects/server/target/debug/deps/libproc_macro2-8b947d10cfa3dc7d.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_file.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_location.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs + +/home/z/my-project/projects/server/target/debug/deps/libproc_macro2-8b947d10cfa3dc7d.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_file.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_location.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_file.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_location.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs: diff --git a/server/target/debug/deps/quote-117ea8ba3d8931af.d b/server/target/debug/deps/quote-117ea8ba3d8931af.d new file mode 100644 index 0000000..08bc48b --- /dev/null +++ b/server/target/debug/deps/quote-117ea8ba3d8931af.d @@ -0,0 +1,13 @@ +/home/z/my-project/projects/server/target/debug/deps/quote-117ea8ba3d8931af.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/format.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ident_fragment.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/to_tokens.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/runtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/spanned.rs + +/home/z/my-project/projects/server/target/debug/deps/libquote-117ea8ba3d8931af.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/format.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ident_fragment.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/to_tokens.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/runtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/spanned.rs + +/home/z/my-project/projects/server/target/debug/deps/libquote-117ea8ba3d8931af.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/format.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ident_fragment.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/to_tokens.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/runtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/spanned.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/format.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ident_fragment.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/to_tokens.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/runtime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/spanned.rs: diff --git a/server/target/debug/deps/rand-25ec97ffd940b728.d b/server/target/debug/deps/rand-25ec97ffd940b728.d new file mode 100644 index 0000000..d1e1590 --- /dev/null +++ b/server/target/debug/deps/rand-25ec97ffd940b728.d @@ -0,0 +1,34 @@ +/home/z/my-project/projects/server/target/debug/deps/rand-25ec97ffd940b728.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/bernoulli.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/distribution.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/float.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/integer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/other.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/uniform.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/uniform_float.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/uniform_int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/uniform_other.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/weighted/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/weighted/weighted_index.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/prelude.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rng.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/reseeding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/mock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/small.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/xoshiro256plusplus.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/std.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/thread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/coin_flipper.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/increasing_uniform.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/iterator.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/index.rs + +/home/z/my-project/projects/server/target/debug/deps/librand-25ec97ffd940b728.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/bernoulli.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/distribution.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/float.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/integer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/other.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/uniform.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/uniform_float.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/uniform_int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/uniform_other.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/weighted/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/weighted/weighted_index.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/prelude.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rng.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/reseeding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/mock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/small.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/xoshiro256plusplus.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/std.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/thread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/coin_flipper.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/increasing_uniform.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/iterator.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/index.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/bernoulli.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/distribution.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/float.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/integer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/other.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/utils.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/slice.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/uniform.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/uniform_float.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/uniform_int.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/uniform_other.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/weighted/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/distr/weighted/weighted_index.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/prelude.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rng.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/reseeding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/mock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/small.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/xoshiro256plusplus.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/std.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/rngs/thread.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/coin_flipper.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/increasing_uniform.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/iterator.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/slice.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/seq/index.rs: diff --git a/server/target/debug/deps/rand-3386ff06806e5b30.d b/server/target/debug/deps/rand-3386ff06806e5b30.d new file mode 100644 index 0000000..268d913 --- /dev/null +++ b/server/target/debug/deps/rand-3386ff06806e5b30.d @@ -0,0 +1,27 @@ +/home/z/my-project/projects/server/target/debug/deps/rand-3386ff06806e5b30.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/bernoulli.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/float.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/integer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/other.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted_index.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/prelude.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rng.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/reseeding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/std.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/thread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/index.rs + +/home/z/my-project/projects/server/target/debug/deps/librand-3386ff06806e5b30.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/bernoulli.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/float.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/integer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/other.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted_index.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/prelude.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rng.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/reseeding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/std.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/thread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/index.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/bernoulli.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/distribution.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/float.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/integer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/other.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/slice.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/utils.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted_index.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/uniform.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/distributions/weighted.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/prelude.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rng.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/read.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/adapter/reseeding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/mock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/std.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/rngs/thread.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/seq/index.rs: diff --git a/server/target/debug/deps/rand_chacha-2853c95e5a3f5795.d b/server/target/debug/deps/rand_chacha-2853c95e5a3f5795.d new file mode 100644 index 0000000..f6f727e --- /dev/null +++ b/server/target/debug/deps/rand_chacha-2853c95e5a3f5795.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/rand_chacha-2853c95e5a3f5795.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.9.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.9.0/src/chacha.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.9.0/src/guts.rs + +/home/z/my-project/projects/server/target/debug/deps/librand_chacha-2853c95e5a3f5795.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.9.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.9.0/src/chacha.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.9.0/src/guts.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.9.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.9.0/src/chacha.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.9.0/src/guts.rs: diff --git a/server/target/debug/deps/rand_chacha-306a6853a00b0af4.d b/server/target/debug/deps/rand_chacha-306a6853a00b0af4.d new file mode 100644 index 0000000..c21baaa --- /dev/null +++ b/server/target/debug/deps/rand_chacha-306a6853a00b0af4.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/rand_chacha-306a6853a00b0af4.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/chacha.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/guts.rs + +/home/z/my-project/projects/server/target/debug/deps/librand_chacha-306a6853a00b0af4.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/chacha.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/guts.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/chacha.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/guts.rs: diff --git a/server/target/debug/deps/rand_core-57e641724a17c916.d b/server/target/debug/deps/rand_core-57e641724a17c916.d new file mode 100644 index 0000000..61e960a --- /dev/null +++ b/server/target/debug/deps/rand_core-57e641724a17c916.d @@ -0,0 +1,10 @@ +/home/z/my-project/projects/server/target/debug/deps/rand_core-57e641724a17c916.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/block.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/le.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/os.rs + +/home/z/my-project/projects/server/target/debug/deps/librand_core-57e641724a17c916.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/block.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/le.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/os.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/block.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/impls.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/le.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/os.rs: diff --git a/server/target/debug/deps/rand_core-eb58fd436e06fdeb.d b/server/target/debug/deps/rand_core-eb58fd436e06fdeb.d new file mode 100644 index 0000000..e301f31 --- /dev/null +++ b/server/target/debug/deps/rand_core-eb58fd436e06fdeb.d @@ -0,0 +1,9 @@ +/home/z/my-project/projects/server/target/debug/deps/rand_core-eb58fd436e06fdeb.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.5/src/block.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.5/src/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.5/src/le.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.5/src/os.rs + +/home/z/my-project/projects/server/target/debug/deps/librand_core-eb58fd436e06fdeb.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.5/src/block.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.5/src/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.5/src/le.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.5/src/os.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.5/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.5/src/block.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.5/src/impls.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.5/src/le.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.5/src/os.rs: diff --git a/server/target/debug/deps/regex-f7c445cd394d0691.d b/server/target/debug/deps/regex-f7c445cd394d0691.d new file mode 100644 index 0000000..38f1dbb --- /dev/null +++ b/server/target/debug/deps/regex-f7c445cd394d0691.d @@ -0,0 +1,15 @@ +/home/z/my-project/projects/server/target/debug/deps/regex-f7c445cd394d0691.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/builders.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/find_byte.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/string.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/string.rs + +/home/z/my-project/projects/server/target/debug/deps/libregex-f7c445cd394d0691.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/builders.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/find_byte.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/string.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/string.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/builders.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/bytes.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/find_byte.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/bytes.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/string.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/bytes.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/string.rs: diff --git a/server/target/debug/deps/regex_automata-26c72ccac949279a.d b/server/target/debug/deps/regex_automata-26c72ccac949279a.d new file mode 100644 index 0000000..7c79979 --- /dev/null +++ b/server/target/debug/deps/regex_automata-26c72ccac949279a.d @@ -0,0 +1,63 @@ +/home/z/my-project/projects/server/target/debug/deps/regex_automata-26c72ccac949279a.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/onepass.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/remapper.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/dfa.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/id.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/regex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/search.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/limited.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/literal.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/regex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/reverse_inner.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/stopat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/strategy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/wrappers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/backtrack.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/compiler.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/literal_trie.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/nfa.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/pikevm.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/range_trie.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/alphabet.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/captures.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/escape.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/interpolate.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/lazy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/look.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/pool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/aho_corasick.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/byteset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memmem.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/teddy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/primitives.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/start.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/syntax.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/wire.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/determinize/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/determinize/state.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/empty.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/search.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/sparse_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/unicode_data/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/utf8.rs + +/home/z/my-project/projects/server/target/debug/deps/libregex_automata-26c72ccac949279a.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/onepass.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/remapper.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/dfa.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/id.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/regex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/search.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/limited.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/literal.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/regex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/reverse_inner.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/stopat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/strategy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/wrappers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/backtrack.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/compiler.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/literal_trie.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/nfa.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/pikevm.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/range_trie.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/alphabet.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/captures.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/escape.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/interpolate.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/lazy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/look.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/pool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/aho_corasick.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/byteset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memmem.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/teddy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/primitives.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/start.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/syntax.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/wire.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/determinize/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/determinize/state.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/empty.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/search.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/sparse_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/unicode_data/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/utf8.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/onepass.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/dfa/remapper.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/dfa.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/id.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/regex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/hybrid/search.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/limited.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/literal.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/regex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/reverse_inner.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/stopat.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/strategy.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/wrappers.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/backtrack.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/builder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/compiler.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/literal_trie.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/nfa.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/pikevm.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/range_trie.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/alphabet.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/captures.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/escape.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/interpolate.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/iter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/lazy.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/look.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/pool.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/aho_corasick.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/byteset.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memchr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memmem.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/teddy.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/primitives.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/start.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/syntax.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/wire.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/determinize/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/determinize/state.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/empty.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/int.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/memchr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/search.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/sparse_set.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/unicode_data/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/utf8.rs: diff --git a/server/target/debug/deps/regex_lite-70fc10b20a1d64f3.d b/server/target/debug/deps/regex_lite-70fc10b20a1d64f3.d new file mode 100644 index 0000000..9bb866f --- /dev/null +++ b/server/target/debug/deps/regex_lite-70fc10b20a1d64f3.d @@ -0,0 +1,15 @@ +/home/z/my-project/projects/server/target/debug/deps/regex_lite-70fc10b20a1d64f3.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/hir/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/hir/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/interpolate.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/nfa.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/pikevm.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/pool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/string.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/utf8.rs + +/home/z/my-project/projects/server/target/debug/deps/libregex_lite-70fc10b20a1d64f3.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/hir/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/hir/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/interpolate.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/nfa.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/pikevm.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/pool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/string.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/utf8.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/hir/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/hir/parse.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/int.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/interpolate.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/nfa.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/pikevm.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/pool.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/string.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/utf8.rs: diff --git a/server/target/debug/deps/regex_lite-95a42a74d9f31bac.d b/server/target/debug/deps/regex_lite-95a42a74d9f31bac.d new file mode 100644 index 0000000..3ddbaf9 --- /dev/null +++ b/server/target/debug/deps/regex_lite-95a42a74d9f31bac.d @@ -0,0 +1,17 @@ +/home/z/my-project/projects/server/target/debug/deps/regex_lite-95a42a74d9f31bac.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/hir/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/hir/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/interpolate.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/nfa.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/pikevm.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/pool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/string.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/utf8.rs + +/home/z/my-project/projects/server/target/debug/deps/libregex_lite-95a42a74d9f31bac.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/hir/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/hir/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/interpolate.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/nfa.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/pikevm.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/pool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/string.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/utf8.rs + +/home/z/my-project/projects/server/target/debug/deps/libregex_lite-95a42a74d9f31bac.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/hir/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/hir/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/interpolate.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/nfa.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/pikevm.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/pool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/string.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/utf8.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/hir/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/hir/parse.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/int.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/interpolate.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/nfa.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/pikevm.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/pool.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/string.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-lite-0.1.9/src/utf8.rs: diff --git a/server/target/debug/deps/regex_syntax-d08731c9e14afbee.d b/server/target/debug/deps/regex_syntax-d08731c9e14afbee.d new file mode 100644 index 0000000..ae8ae87 --- /dev/null +++ b/server/target/debug/deps/regex_syntax-d08731c9e14afbee.d @@ -0,0 +1,35 @@ +/home/z/my-project/projects/server/target/debug/deps/regex_syntax-d08731c9e14afbee.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/print.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/visitor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/debug.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/either.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/interval.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/literal.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/print.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/translate.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/visitor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/rank.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/age.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/case_folding_simple.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/general_category.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/grapheme_cluster_break.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/perl_word.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/property_bool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/property_names.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/property_values.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/script.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/script_extension.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/sentence_break.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/word_break.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/utf8.rs + +/home/z/my-project/projects/server/target/debug/deps/libregex_syntax-d08731c9e14afbee.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/print.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/visitor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/debug.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/either.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/interval.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/literal.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/print.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/translate.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/visitor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/rank.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/age.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/case_folding_simple.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/general_category.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/grapheme_cluster_break.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/perl_word.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/property_bool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/property_names.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/property_values.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/script.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/script_extension.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/sentence_break.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/word_break.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/utf8.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/parse.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/print.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/visitor.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/debug.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/either.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/interval.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/literal.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/print.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/translate.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/visitor.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/parser.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/rank.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/age.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/case_folding_simple.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/general_category.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/grapheme_cluster_break.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/perl_word.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/property_bool.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/property_names.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/property_values.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/script.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/script_extension.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/sentence_break.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/word_break.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/utf8.rs: diff --git a/server/target/debug/deps/ryu-4311754d5ac1e9e4.d b/server/target/debug/deps/ryu-4311754d5ac1e9e4.d new file mode 100644 index 0000000..51aafbe --- /dev/null +++ b/server/target/debug/deps/ryu-4311754d5ac1e9e4.d @@ -0,0 +1,16 @@ +/home/z/my-project/projects/server/target/debug/deps/ryu-4311754d5ac1e9e4.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/buffer/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/common.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_full_table.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_intrinsics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/digit_table.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s_intrinsics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/exponent.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mantissa.rs + +/home/z/my-project/projects/server/target/debug/deps/libryu-4311754d5ac1e9e4.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/buffer/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/common.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_full_table.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_intrinsics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/digit_table.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s_intrinsics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/exponent.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mantissa.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/buffer/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/common.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_full_table.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_intrinsics.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/digit_table.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s_intrinsics.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/exponent.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mantissa.rs: diff --git a/server/target/debug/deps/scopeguard-5f5d74d42e3f7fac.d b/server/target/debug/deps/scopeguard-5f5d74d42e3f7fac.d new file mode 100644 index 0000000..dc70fc3 --- /dev/null +++ b/server/target/debug/deps/scopeguard-5f5d74d42e3f7fac.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/scopeguard-5f5d74d42e3f7fac.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libscopeguard-5f5d74d42e3f7fac.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs: diff --git a/server/target/debug/deps/serde-26ece2303ac8a3b5.d b/server/target/debug/deps/serde-26ece2303ac8a3b5.d new file mode 100644 index 0000000..a56a878 --- /dev/null +++ b/server/target/debug/deps/serde-26ece2303ac8a3b5.d @@ -0,0 +1,14 @@ +/home/z/my-project/projects/server/target/debug/deps/serde-26ece2303ac8a3b5.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/integer128.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/ser.rs /home/z/my-project/projects/server/target/debug/build/serde-dd2c010b396bfb3d/out/private.rs + +/home/z/my-project/projects/server/target/debug/deps/libserde-26ece2303ac8a3b5.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/integer128.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/ser.rs /home/z/my-project/projects/server/target/debug/build/serde-dd2c010b396bfb3d/out/private.rs + +/home/z/my-project/projects/server/target/debug/deps/libserde-26ece2303ac8a3b5.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/integer128.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/ser.rs /home/z/my-project/projects/server/target/debug/build/serde-dd2c010b396bfb3d/out/private.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/integer128.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/de.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/ser.rs: +/home/z/my-project/projects/server/target/debug/build/serde-dd2c010b396bfb3d/out/private.rs: + +# env-dep:OUT_DIR=/home/z/my-project/projects/server/target/debug/build/serde-dd2c010b396bfb3d/out diff --git a/server/target/debug/deps/serde-9c8b6d6f9285a874.d b/server/target/debug/deps/serde-9c8b6d6f9285a874.d new file mode 100644 index 0000000..6e4f94d --- /dev/null +++ b/server/target/debug/deps/serde-9c8b6d6f9285a874.d @@ -0,0 +1,12 @@ +/home/z/my-project/projects/server/target/debug/deps/serde-9c8b6d6f9285a874.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/integer128.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/ser.rs /home/z/my-project/projects/server/target/debug/build/serde-6aeb262f7e7c722f/out/private.rs + +/home/z/my-project/projects/server/target/debug/deps/libserde-9c8b6d6f9285a874.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/integer128.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/ser.rs /home/z/my-project/projects/server/target/debug/build/serde-6aeb262f7e7c722f/out/private.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/integer128.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/de.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/ser.rs: +/home/z/my-project/projects/server/target/debug/build/serde-6aeb262f7e7c722f/out/private.rs: + +# env-dep:OUT_DIR=/home/z/my-project/projects/server/target/debug/build/serde-6aeb262f7e7c722f/out diff --git a/server/target/debug/deps/serde_core-07f62aa92e7cee58.d b/server/target/debug/deps/serde_core-07f62aa92e7cee58.d new file mode 100644 index 0000000..39bb8d8 --- /dev/null +++ b/server/target/debug/deps/serde_core-07f62aa92e7cee58.d @@ -0,0 +1,25 @@ +/home/z/my-project/projects/server/target/debug/deps/serde_core-07f62aa92e7cee58.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/crate_root.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/value.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/ignored_any.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/fmt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impossible.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/format.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/content.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/seed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/doc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/size_hint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/string.rs /home/z/my-project/projects/server/target/debug/build/serde_core-a2b0d5857c986c99/out/private.rs + +/home/z/my-project/projects/server/target/debug/deps/libserde_core-07f62aa92e7cee58.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/crate_root.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/value.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/ignored_any.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/fmt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impossible.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/format.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/content.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/seed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/doc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/size_hint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/string.rs /home/z/my-project/projects/server/target/debug/build/serde_core-a2b0d5857c986c99/out/private.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/crate_root.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/value.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/ignored_any.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/impls.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/fmt.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impls.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impossible.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/format.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/content.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/seed.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/doc.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/size_hint.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/string.rs: +/home/z/my-project/projects/server/target/debug/build/serde_core-a2b0d5857c986c99/out/private.rs: + +# env-dep:OUT_DIR=/home/z/my-project/projects/server/target/debug/build/serde_core-a2b0d5857c986c99/out diff --git a/server/target/debug/deps/serde_core-d6815a25a682173f.d b/server/target/debug/deps/serde_core-d6815a25a682173f.d new file mode 100644 index 0000000..a4910c5 --- /dev/null +++ b/server/target/debug/deps/serde_core-d6815a25a682173f.d @@ -0,0 +1,27 @@ +/home/z/my-project/projects/server/target/debug/deps/serde_core-d6815a25a682173f.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/crate_root.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/value.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/ignored_any.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/fmt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impossible.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/format.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/content.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/seed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/doc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/size_hint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/string.rs /home/z/my-project/projects/server/target/debug/build/serde_core-a2b0d5857c986c99/out/private.rs + +/home/z/my-project/projects/server/target/debug/deps/libserde_core-d6815a25a682173f.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/crate_root.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/value.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/ignored_any.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/fmt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impossible.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/format.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/content.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/seed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/doc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/size_hint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/string.rs /home/z/my-project/projects/server/target/debug/build/serde_core-a2b0d5857c986c99/out/private.rs + +/home/z/my-project/projects/server/target/debug/deps/libserde_core-d6815a25a682173f.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/crate_root.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/value.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/ignored_any.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/fmt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impossible.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/format.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/content.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/seed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/doc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/size_hint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/string.rs /home/z/my-project/projects/server/target/debug/build/serde_core-a2b0d5857c986c99/out/private.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/crate_root.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/value.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/ignored_any.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/impls.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/fmt.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impls.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impossible.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/format.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/content.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/seed.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/doc.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/size_hint.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/string.rs: +/home/z/my-project/projects/server/target/debug/build/serde_core-a2b0d5857c986c99/out/private.rs: + +# env-dep:OUT_DIR=/home/z/my-project/projects/server/target/debug/build/serde_core-a2b0d5857c986c99/out diff --git a/server/target/debug/deps/serde_derive-6dc42ac9ff14fe0b.d b/server/target/debug/deps/serde_derive-6dc42ac9ff14fe0b.d new file mode 100644 index 0000000..58398a7 --- /dev/null +++ b/server/target/debug/deps/serde_derive-6dc42ac9ff14fe0b.d @@ -0,0 +1,34 @@ +/home/z/my-project/projects/server/target/debug/deps/serde_derive-6dc42ac9ff14fe0b.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ast.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/attr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/name.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/case.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/check.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ctxt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/receiver.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/respan.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/symbol.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/bound.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/fragment.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_adjacently.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_externally.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_internally.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_untagged.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/identifier.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/struct_.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/tuple.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/unit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/deprecated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/dummy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/pretend.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/ser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/this.rs + +/home/z/my-project/projects/server/target/debug/deps/libserde_derive-6dc42ac9ff14fe0b.so: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ast.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/attr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/name.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/case.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/check.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ctxt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/receiver.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/respan.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/symbol.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/bound.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/fragment.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_adjacently.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_externally.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_internally.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_untagged.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/identifier.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/struct_.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/tuple.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/unit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/deprecated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/dummy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/pretend.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/ser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/this.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ast.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/attr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/name.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/case.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/check.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ctxt.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/receiver.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/respan.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/symbol.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/bound.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/fragment.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_adjacently.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_externally.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_internally.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_untagged.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/identifier.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/struct_.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/tuple.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/unit.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/deprecated.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/dummy.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/pretend.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/ser.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/this.rs: + +# env-dep:CARGO_PKG_VERSION_PATCH=228 diff --git a/server/target/debug/deps/serde_json-372dae96d9312c69.d b/server/target/debug/deps/serde_json-372dae96d9312c69.d new file mode 100644 index 0000000..9de1696 --- /dev/null +++ b/server/target/debug/deps/serde_json-372dae96d9312c69.d @@ -0,0 +1,20 @@ +/home/z/my-project/projects/server/target/debug/deps/serde_json-372dae96d9312c69.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/ser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/from.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/index.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/partial_eq.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/ser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/io/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/number.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/read.rs + +/home/z/my-project/projects/server/target/debug/deps/libserde_json-372dae96d9312c69.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/ser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/from.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/index.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/partial_eq.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/ser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/io/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/number.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/read.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/de.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/ser.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/de.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/from.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/index.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/partial_eq.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/ser.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/io/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/iter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/number.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/read.rs: diff --git a/server/target/debug/deps/serde_urlencoded-a80aa6db2c7456fc.d b/server/target/debug/deps/serde_urlencoded-a80aa6db2c7456fc.d new file mode 100644 index 0000000..7358bd4 --- /dev/null +++ b/server/target/debug/deps/serde_urlencoded-a80aa6db2c7456fc.d @@ -0,0 +1,11 @@ +/home/z/my-project/projects/server/target/debug/deps/serde_urlencoded-a80aa6db2c7456fc.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/key.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/pair.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/part.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/value.rs + +/home/z/my-project/projects/server/target/debug/deps/libserde_urlencoded-a80aa6db2c7456fc.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/de.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/key.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/pair.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/part.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/value.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/de.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/key.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/pair.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/part.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/value.rs: diff --git a/server/target/debug/deps/sha1-3c138eab508fb52f.d b/server/target/debug/deps/sha1-3c138eab508fb52f.d new file mode 100644 index 0000000..f9d4a34 --- /dev/null +++ b/server/target/debug/deps/sha1-3c138eab508fb52f.d @@ -0,0 +1,8 @@ +/home/z/my-project/projects/server/target/debug/deps/sha1-3c138eab508fb52f.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.6/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.6/src/compress.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.6/src/compress/soft.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.6/src/compress/x86.rs + +/home/z/my-project/projects/server/target/debug/deps/libsha1-3c138eab508fb52f.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.6/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.6/src/compress.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.6/src/compress/soft.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.6/src/compress/x86.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.6/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.6/src/compress.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.6/src/compress/soft.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.6/src/compress/x86.rs: diff --git a/server/target/debug/deps/shlex-ce973efa54fd88d8.d b/server/target/debug/deps/shlex-ce973efa54fd88d8.d new file mode 100644 index 0000000..e214b56 --- /dev/null +++ b/server/target/debug/deps/shlex-ce973efa54fd88d8.d @@ -0,0 +1,8 @@ +/home/z/my-project/projects/server/target/debug/deps/shlex-ce973efa54fd88d8.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/bytes.rs + +/home/z/my-project/projects/server/target/debug/deps/libshlex-ce973efa54fd88d8.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/bytes.rs + +/home/z/my-project/projects/server/target/debug/deps/libshlex-ce973efa54fd88d8.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/bytes.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/bytes.rs: diff --git a/server/target/debug/deps/signal_hook_registry-aaa116fc060d4191.d b/server/target/debug/deps/signal_hook_registry-aaa116fc060d4191.d new file mode 100644 index 0000000..26010a2 --- /dev/null +++ b/server/target/debug/deps/signal_hook_registry-aaa116fc060d4191.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/signal_hook_registry-aaa116fc060d4191.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/half_lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/vec_map.rs + +/home/z/my-project/projects/server/target/debug/deps/libsignal_hook_registry-aaa116fc060d4191.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/half_lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/vec_map.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/half_lock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/vec_map.rs: diff --git a/server/target/debug/deps/simd_adler32-f782a128a7da4c28.d b/server/target/debug/deps/simd_adler32-f782a128a7da4c28.d new file mode 100644 index 0000000..cddf5e9 --- /dev/null +++ b/server/target/debug/deps/simd_adler32-f782a128a7da4c28.d @@ -0,0 +1,14 @@ +/home/z/my-project/projects/server/target/debug/deps/simd_adler32-f782a128a7da4c28.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/hash.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/avx2.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/avx512.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/neon.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/scalar.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/sse2.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/ssse3.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/wasm.rs + +/home/z/my-project/projects/server/target/debug/deps/libsimd_adler32-f782a128a7da4c28.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/hash.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/avx2.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/avx512.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/neon.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/scalar.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/sse2.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/ssse3.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/wasm.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/hash.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/avx2.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/avx512.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/neon.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/scalar.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/sse2.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/ssse3.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.9/src/imp/wasm.rs: diff --git a/server/target/debug/deps/slab-c76132a80a233406.d b/server/target/debug/deps/slab-c76132a80a233406.d new file mode 100644 index 0000000..7f93ea4 --- /dev/null +++ b/server/target/debug/deps/slab-c76132a80a233406.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/deps/slab-c76132a80a233406.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/builder.rs + +/home/z/my-project/projects/server/target/debug/deps/libslab-c76132a80a233406.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/builder.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/builder.rs: diff --git a/server/target/debug/deps/smallvec-33ecc30efeb3e270.d b/server/target/debug/deps/smallvec-33ecc30efeb3e270.d new file mode 100644 index 0000000..bc4c8c2 --- /dev/null +++ b/server/target/debug/deps/smallvec-33ecc30efeb3e270.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/smallvec-33ecc30efeb3e270.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libsmallvec-33ecc30efeb3e270.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs: diff --git a/server/target/debug/deps/socket2-5c6468c58041f61f.d b/server/target/debug/deps/socket2-5c6468c58041f61f.d new file mode 100644 index 0000000..dec22e9 --- /dev/null +++ b/server/target/debug/deps/socket2-5c6468c58041f61f.d @@ -0,0 +1,9 @@ +/home/z/my-project/projects/server/target/debug/deps/socket2-5c6468c58041f61f.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.10/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.10/src/sockaddr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.10/src/socket.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.10/src/sockref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.10/src/sys/unix.rs + +/home/z/my-project/projects/server/target/debug/deps/libsocket2-5c6468c58041f61f.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.10/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.10/src/sockaddr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.10/src/socket.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.10/src/sockref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.10/src/sys/unix.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.10/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.10/src/sockaddr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.10/src/socket.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.10/src/sockref.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.5.10/src/sys/unix.rs: diff --git a/server/target/debug/deps/socket2-cc1150982e127da5.d b/server/target/debug/deps/socket2-cc1150982e127da5.d new file mode 100644 index 0000000..5352274 --- /dev/null +++ b/server/target/debug/deps/socket2-cc1150982e127da5.d @@ -0,0 +1,9 @@ +/home/z/my-project/projects/server/target/debug/deps/socket2-cc1150982e127da5.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.3/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.3/src/sockaddr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.3/src/socket.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.3/src/sockref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.3/src/sys/unix.rs + +/home/z/my-project/projects/server/target/debug/deps/libsocket2-cc1150982e127da5.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.3/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.3/src/sockaddr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.3/src/socket.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.3/src/sockref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.3/src/sys/unix.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.3/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.3/src/sockaddr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.3/src/socket.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.3/src/sockref.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.3/src/sys/unix.rs: diff --git a/server/target/debug/deps/stable_deref_trait-4338ea27e4f4ee16.d b/server/target/debug/deps/stable_deref_trait-4338ea27e4f4ee16.d new file mode 100644 index 0000000..811b3b6 --- /dev/null +++ b/server/target/debug/deps/stable_deref_trait-4338ea27e4f4ee16.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/stable_deref_trait-4338ea27e4f4ee16.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libstable_deref_trait-4338ea27e4f4ee16.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/src/lib.rs: diff --git a/server/target/debug/deps/syn-88c9cf438a869065.d b/server/target/debug/deps/syn-88c9cf438a869065.d new file mode 100644 index 0000000..20a6d1b --- /dev/null +++ b/server/target/debug/deps/syn-88c9cf438a869065.d @@ -0,0 +1,60 @@ +/home/z/my-project/projects/server/target/debug/deps/syn-88c9cf438a869065.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/file.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/item.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/pat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/stmt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/tt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/whitespace.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/fold.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/visit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/visit_mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/debug.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/eq.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/hash.rs + +/home/z/my-project/projects/server/target/debug/deps/libsyn-88c9cf438a869065.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/file.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/item.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/pat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/stmt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/tt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/whitespace.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/fold.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/visit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/visit_mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/debug.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/eq.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/hash.rs + +/home/z/my-project/projects/server/target/debug/deps/libsyn-88c9cf438a869065.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/file.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/item.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/pat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/stmt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/tt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/whitespace.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/fold.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/visit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/visit_mut.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/debug.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/eq.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/hash.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/file.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/item.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/pat.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/stmt.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/tt.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/whitespace.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/fold.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/visit.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/visit_mut.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/debug.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/eq.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/hash.rs: diff --git a/server/target/debug/deps/synstructure-444040a19a662d08.d b/server/target/debug/deps/synstructure-444040a19a662d08.d new file mode 100644 index 0000000..2a447b2 --- /dev/null +++ b/server/target/debug/deps/synstructure-444040a19a662d08.d @@ -0,0 +1,8 @@ +/home/z/my-project/projects/server/target/debug/deps/synstructure-444040a19a662d08.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/macros.rs + +/home/z/my-project/projects/server/target/debug/deps/libsynstructure-444040a19a662d08.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/macros.rs + +/home/z/my-project/projects/server/target/debug/deps/libsynstructure-444040a19a662d08.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/macros.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/macros.rs: diff --git a/server/target/debug/deps/time-08b4323066e5ba60.d b/server/target/debug/deps/time-08b4323066e5ba60.d new file mode 100644 index 0000000..e761919 --- /dev/null +++ b/server/target/debug/deps/time-08b4323066e5ba60.d @@ -0,0 +1,69 @@ +/home/z/my-project/projects/server/target/debug/deps/time-08b4323066e5ba60.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/date.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/duration.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/component_range.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/conversion_range.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/different_variant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/format.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/invalid_format_description.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/invalid_variant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/parse_from_description.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/try_from_parsed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/digit_count.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/instant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/numerical_duration.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/numerical_std_duration.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/systemtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/borrowed_format_item.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/component.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/modifier.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/owned_format_item.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/parse/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/parse/ast.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/parse/format_item.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/parse/lexer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/parse/strftime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/well_known/iso8601.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/well_known/iso8601/adt_hack.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/well_known/rfc2822.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/well_known/rfc3339.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/formatting/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/formatting/component_provider.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/formatting/formattable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/formatting/iso8601.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/hint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/instant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/internal_macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/interop/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/interop/offsetdatetime_systemtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/interop/offsetdatetime_utcdatetime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/interop/utcdatetime_systemtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/month.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/offset_date_time.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/combinator/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/combinator/rfc/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/combinator/rfc/iso8601.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/combinator/rfc/rfc2234.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/combinator/rfc/rfc2822.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/component.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/iso8601.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/parsable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/parsed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/shim.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/primitive_date_time.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/sys/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/time.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/utc_date_time.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/utc_offset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/weekday.rs + +/home/z/my-project/projects/server/target/debug/deps/libtime-08b4323066e5ba60.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/date.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/duration.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/component_range.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/conversion_range.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/different_variant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/format.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/invalid_format_description.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/invalid_variant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/parse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/parse_from_description.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/try_from_parsed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/digit_count.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/instant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/numerical_duration.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/numerical_std_duration.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/systemtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/borrowed_format_item.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/component.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/modifier.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/owned_format_item.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/parse/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/parse/ast.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/parse/format_item.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/parse/lexer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/parse/strftime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/well_known/iso8601.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/well_known/iso8601/adt_hack.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/well_known/rfc2822.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/well_known/rfc3339.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/formatting/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/formatting/component_provider.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/formatting/formattable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/formatting/iso8601.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/hint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/instant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/internal_macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/interop/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/interop/offsetdatetime_systemtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/interop/offsetdatetime_utcdatetime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/interop/utcdatetime_systemtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/month.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/offset_date_time.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/combinator/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/combinator/rfc/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/combinator/rfc/iso8601.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/combinator/rfc/rfc2234.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/combinator/rfc/rfc2822.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/component.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/iso8601.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/parsable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/parsed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/shim.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/primitive_date_time.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/sys/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/time.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/utc_date_time.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/utc_offset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/weekday.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/date.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/duration.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/component_range.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/conversion_range.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/different_variant.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/format.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/invalid_format_description.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/invalid_variant.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/parse.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/parse_from_description.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/error/try_from_parsed.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/digit_count.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/instant.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/numerical_duration.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/numerical_std_duration.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/ext/systemtime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/borrowed_format_item.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/component.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/modifier.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/owned_format_item.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/parse/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/parse/ast.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/parse/format_item.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/parse/lexer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/parse/strftime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/well_known/iso8601.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/well_known/iso8601/adt_hack.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/well_known/rfc2822.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/format_description/well_known/rfc3339.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/formatting/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/formatting/component_provider.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/formatting/formattable.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/formatting/iso8601.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/hint.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/instant.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/internal_macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/interop/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/interop/offsetdatetime_systemtime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/interop/offsetdatetime_utcdatetime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/interop/utcdatetime_systemtime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/month.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/offset_date_time.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/combinator/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/combinator/rfc/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/combinator/rfc/iso8601.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/combinator/rfc/rfc2234.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/combinator/rfc/rfc2822.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/component.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/iso8601.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/parsable.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/parsed.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/parsing/shim.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/primitive_date_time.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/sys/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/time.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/utc_date_time.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/utc_offset.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/util.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-0.3.47/src/weekday.rs: diff --git a/server/target/debug/deps/time_core-34128e7d4eed9e7c.d b/server/target/debug/deps/time_core-34128e7d4eed9e7c.d new file mode 100644 index 0000000..4b7d2c0 --- /dev/null +++ b/server/target/debug/deps/time_core-34128e7d4eed9e7c.d @@ -0,0 +1,10 @@ +/home/z/my-project/projects/server/target/debug/deps/time_core-34128e7d4eed9e7c.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/convert.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/hint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/util.rs + +/home/z/my-project/projects/server/target/debug/deps/libtime_core-34128e7d4eed9e7c.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/convert.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/hint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/util.rs + +/home/z/my-project/projects/server/target/debug/deps/libtime_core-34128e7d4eed9e7c.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/convert.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/hint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/util.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/convert.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/hint.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/util.rs: diff --git a/server/target/debug/deps/time_core-867d88cbfa098135.d b/server/target/debug/deps/time_core-867d88cbfa098135.d new file mode 100644 index 0000000..22e483b --- /dev/null +++ b/server/target/debug/deps/time_core-867d88cbfa098135.d @@ -0,0 +1,8 @@ +/home/z/my-project/projects/server/target/debug/deps/time_core-867d88cbfa098135.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/convert.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/hint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/util.rs + +/home/z/my-project/projects/server/target/debug/deps/libtime_core-867d88cbfa098135.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/convert.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/hint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/util.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/convert.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/hint.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-core-0.1.8/src/util.rs: diff --git a/server/target/debug/deps/time_macros-f8715d5ae3617016.d b/server/target/debug/deps/time_macros-f8715d5ae3617016.d new file mode 100644 index 0000000..3611a54 --- /dev/null +++ b/server/target/debug/deps/time_macros-f8715d5ae3617016.d @@ -0,0 +1,22 @@ +/home/z/my-project/projects/server/target/debug/deps/time_macros-f8715d5ae3617016.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/quote.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/date.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/datetime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/ast.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/format_item.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/lexer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/public/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/public/component.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/public/modifier.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/helpers/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/helpers/string.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/offset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/time.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/to_tokens.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/utc_datetime.rs + +/home/z/my-project/projects/server/target/debug/deps/libtime_macros-f8715d5ae3617016.so: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/quote.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/date.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/datetime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/ast.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/format_item.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/lexer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/public/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/public/component.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/public/modifier.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/helpers/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/helpers/string.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/offset.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/time.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/to_tokens.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/utc_datetime.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/quote.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/date.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/datetime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/ast.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/format_item.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/lexer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/public/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/public/component.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/format_description/public/modifier.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/helpers/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/helpers/string.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/offset.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/time.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/to_tokens.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/time-macros-0.2.27/src/utc_datetime.rs: diff --git a/server/target/debug/deps/tinystr-2771ca0d3247b01b.d b/server/target/debug/deps/tinystr-2771ca0d3247b01b.d new file mode 100644 index 0000000..ee3ce99 --- /dev/null +++ b/server/target/debug/deps/tinystr-2771ca0d3247b01b.d @@ -0,0 +1,12 @@ +/home/z/my-project/projects/server/target/debug/deps/tinystr-2771ca0d3247b01b.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ascii.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/asciibyte.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/int_ops.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/unvalidated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ule.rs + +/home/z/my-project/projects/server/target/debug/deps/libtinystr-2771ca0d3247b01b.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ascii.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/asciibyte.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/int_ops.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/unvalidated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ule.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ascii.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/asciibyte.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/int_ops.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/unvalidated.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ule.rs: diff --git a/server/target/debug/deps/tokio-daeaa16a951e0192.d b/server/target/debug/deps/tokio-daeaa16a951e0192.d new file mode 100644 index 0000000..379c8b6 --- /dev/null +++ b/server/target/debug/deps/tokio-daeaa16a951e0192.d @@ -0,0 +1,291 @@ +/home/z/my-project/projects/server/target/debug/deps/tokio-daeaa16a951e0192.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/cfg.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/loom.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/pin.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/thread_local.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/addr_of.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/support.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/future/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/future/maybe_done.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/async_buf_read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/async_read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/async_seek.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/async_write.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/read_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/addr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/atomic_u16.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/atomic_u32.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/atomic_u64.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/atomic_usize.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/barrier.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/parking_lot.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/rwlock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/unsafe_cell.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/blocking.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/as_ref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/atomic_cell.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/blocking_check.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/metric_atomics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/wake_list.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/linked_list.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/rand.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/trace.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/typeid.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/markers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/cacheline.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/select.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/join.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/try_join.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/canonicalize.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/create_dir.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/create_dir_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/dir_builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/file.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/hard_link.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/metadata.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/open_options.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/read_dir.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/read_link.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/read_to_string.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/remove_dir.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/remove_dir_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/remove_file.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/rename.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/set_permissions.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/symlink_metadata.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/write.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/copy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/try_exists.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/symlink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/future/try_join.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/future/block_on.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/blocking.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/interest.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/ready.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/poll_evented.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/async_fd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/stdio_common.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/stderr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/stdin.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/stdout.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/split.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/join.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/seek.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/async_buf_read_ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/async_read_ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/async_seek_ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/async_write_ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/buf_reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/buf_stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/buf_writer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/chain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/copy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/copy_bidirectional.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/copy_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/empty.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/flush.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/lines.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/mem.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_exact.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_line.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/fill_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_to_end.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/vec_with_initialized.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_to_string.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_until.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/repeat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/shutdown.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/sink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/split.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/take.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write_vectored.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write_all_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write_int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/lookup_host.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/listener.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/split.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/split_owned.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/socket.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/udp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/datagram/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/datagram/socket.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/listener.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/socket.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/split.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/split_owned.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/socketaddr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/ucred.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/pipe.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/atomic_u64_native.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/unix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/unix/orphan.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/unix/reap.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/unix/pidfd_reaper.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/kill.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/park.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/driver.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context/blocking.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context/current.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context/runtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context/scoped.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context/runtime_mt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/current_thread/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/defer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject/pop.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject/shared.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject/synced.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject/metrics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject/rt_multi_thread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/block_in_place.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/counters.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/handle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/handle/metrics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/overflow.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/idle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/stats.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/park.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/queue.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/worker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/worker/metrics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/trace_mock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/driver.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/registration.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/registration_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/scheduled_io.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/metrics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/driver/signal.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/process.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/entry.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/handle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/source.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/wheel/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/wheel/level.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/signal/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/core.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/harness.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/id.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/abort.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/join.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/list.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/raw.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/state.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/atomic_notified.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/waker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/config.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/blocking/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/blocking/pool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/blocking/schedule.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/blocking/shutdown.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/blocking/task.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task_hooks.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/handle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/runtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/local_runtime/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/local_runtime/runtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/local_runtime/options.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/id.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/thread_id.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/metrics/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/metrics/runtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/metrics/batch.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/metrics/worker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/metrics/mock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/ctrl_c.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/registry.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/unix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/windows.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/reusable_box.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/barrier.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/broadcast.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/block.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/bounded.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/chan.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/list.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/unbounded.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/notify.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/oneshot.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/batch_semaphore.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/semaphore.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/owned_read_guard.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/owned_write_guard.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/owned_write_guard_mapped.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/read_guard.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/write_guard.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/write_guard_mapped.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/task/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/task/atomic_waker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/once_cell.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/set_once.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/watch.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/blocking.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/spawn.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/yield_now.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/coop/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/local.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/task_local.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/join_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/coop/consume_budget.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/coop/unconstrained.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/clock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/instant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/interval.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/sleep.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/timeout.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/bit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/sharded_list.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/rand/rt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/idle_notified_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/wake.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/sync_wrapper.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/rc_cell.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/try_lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/ptr_expose.rs + +/home/z/my-project/projects/server/target/debug/deps/libtokio-daeaa16a951e0192.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/cfg.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/loom.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/pin.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/thread_local.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/addr_of.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/support.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/future/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/future/maybe_done.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/async_buf_read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/async_read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/async_seek.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/async_write.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/read_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/addr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/atomic_u16.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/atomic_u32.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/atomic_u64.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/atomic_usize.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/barrier.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/parking_lot.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/rwlock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/unsafe_cell.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/blocking.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/as_ref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/atomic_cell.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/blocking_check.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/metric_atomics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/wake_list.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/linked_list.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/rand.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/trace.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/typeid.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/memchr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/markers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/cacheline.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/select.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/join.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/try_join.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/canonicalize.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/create_dir.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/create_dir_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/dir_builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/file.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/hard_link.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/metadata.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/open_options.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/read_dir.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/read_link.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/read_to_string.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/remove_dir.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/remove_dir_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/remove_file.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/rename.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/set_permissions.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/symlink_metadata.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/write.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/copy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/try_exists.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/symlink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/future/try_join.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/future/block_on.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/blocking.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/interest.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/ready.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/poll_evented.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/async_fd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/stdio_common.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/stderr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/stdin.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/stdout.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/split.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/join.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/seek.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/async_buf_read_ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/async_read_ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/async_seek_ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/async_write_ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/buf_reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/buf_stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/buf_writer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/chain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/copy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/copy_bidirectional.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/copy_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/empty.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/flush.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/lines.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/mem.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_exact.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_line.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/fill_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_to_end.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/vec_with_initialized.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_to_string.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_until.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/repeat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/shutdown.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/sink.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/split.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/take.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write_vectored.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write_all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write_all_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write_int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/lookup_host.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/listener.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/split.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/split_owned.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/socket.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/udp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/datagram/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/datagram/socket.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/listener.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/socket.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/split.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/split_owned.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/socketaddr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/ucred.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/pipe.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/atomic_u64_native.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/unix/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/unix/orphan.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/unix/reap.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/unix/pidfd_reaper.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/kill.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/park.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/driver.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context/blocking.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context/current.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context/runtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context/scoped.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context/runtime_mt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/current_thread/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/defer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject/pop.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject/shared.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject/synced.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject/metrics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject/rt_multi_thread.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/block_in_place.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/counters.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/handle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/handle/metrics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/overflow.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/idle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/stats.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/park.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/queue.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/worker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/worker/metrics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/trace_mock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/driver.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/registration.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/registration_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/scheduled_io.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/metrics.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/driver/signal.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/process.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/entry.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/handle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/source.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/wheel/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/wheel/level.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/signal/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/core.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/harness.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/id.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/abort.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/join.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/list.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/raw.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/state.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/atomic_notified.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/waker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/config.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/blocking/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/blocking/pool.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/blocking/schedule.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/blocking/shutdown.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/blocking/task.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task_hooks.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/handle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/runtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/local_runtime/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/local_runtime/runtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/local_runtime/options.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/id.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/thread_id.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/metrics/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/metrics/runtime.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/metrics/batch.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/metrics/worker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/metrics/mock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/ctrl_c.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/registry.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/unix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/windows.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/reusable_box.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/barrier.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/broadcast.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/block.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/bounded.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/chan.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/list.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/unbounded.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/notify.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/oneshot.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/batch_semaphore.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/semaphore.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/owned_read_guard.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/owned_write_guard.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/owned_write_guard_mapped.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/read_guard.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/write_guard.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/write_guard_mapped.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/task/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/task/atomic_waker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/once_cell.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/set_once.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/watch.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/blocking.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/spawn.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/yield_now.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/coop/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/local.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/task_local.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/join_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/coop/consume_budget.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/coop/unconstrained.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/clock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/instant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/interval.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/sleep.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/timeout.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/bit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/sharded_list.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/rand/rt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/idle_notified_set.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/wake.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/sync_wrapper.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/rc_cell.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/try_lock.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/ptr_expose.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/cfg.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/loom.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/pin.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/thread_local.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/addr_of.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/support.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/future/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/future/maybe_done.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/async_buf_read.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/async_read.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/async_seek.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/async_write.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/read_buf.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/addr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/atomic_u16.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/atomic_u32.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/atomic_u64.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/atomic_usize.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/barrier.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/mutex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/parking_lot.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/rwlock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/unsafe_cell.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/blocking.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/as_ref.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/atomic_cell.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/blocking_check.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/metric_atomics.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/wake_list.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/linked_list.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/rand.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/trace.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/typeid.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/memchr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/markers.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/cacheline.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/select.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/join.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/macros/try_join.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/canonicalize.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/create_dir.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/create_dir_all.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/dir_builder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/file.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/hard_link.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/metadata.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/open_options.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/read.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/read_dir.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/read_link.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/read_to_string.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/remove_dir.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/remove_dir_all.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/remove_file.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/rename.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/set_permissions.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/symlink_metadata.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/write.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/copy.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/try_exists.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/fs/symlink.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/future/try_join.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/future/block_on.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/blocking.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/interest.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/ready.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/poll_evented.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/async_fd.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/stdio_common.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/stderr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/stdin.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/stdout.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/split.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/join.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/seek.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/async_buf_read_ext.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/async_read_ext.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/async_seek_ext.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/async_write_ext.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/buf_reader.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/buf_stream.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/buf_writer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/chain.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/copy.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/copy_bidirectional.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/copy_buf.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/empty.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/flush.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/lines.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/mem.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_buf.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_exact.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_int.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_line.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/fill_buf.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_to_end.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/vec_with_initialized.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_to_string.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/read_until.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/repeat.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/shutdown.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/sink.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/split.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/take.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write_vectored.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write_all.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write_buf.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write_all_buf.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/io/util/write_int.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/lookup_host.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/listener.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/split.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/split_owned.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/stream.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/tcp/socket.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/udp.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/datagram/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/datagram/socket.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/listener.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/socket.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/split.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/split_owned.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/socketaddr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/stream.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/ucred.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/net/unix/pipe.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/loom/std/atomic_u64_native.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/unix/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/unix/orphan.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/unix/reap.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/unix/pidfd_reaper.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/process/kill.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/park.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/driver.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/util/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context/blocking.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context/current.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context/runtime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context/scoped.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/context/runtime_mt.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/current_thread/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/defer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject/pop.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject/shared.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject/synced.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject/metrics.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/inject/rt_multi_thread.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/block_in_place.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/lock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/counters.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/handle.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/handle/metrics.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/overflow.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/idle.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/stats.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/park.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/queue.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/worker.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/worker/metrics.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/scheduler/multi_thread/trace_mock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/driver.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/registration.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/registration_set.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/scheduled_io.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/metrics.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/io/driver/signal.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/process.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/entry.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/handle.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/source.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/wheel/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/time/wheel/level.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/signal/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/core.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/harness.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/id.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/abort.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/join.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/list.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/raw.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/state.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/atomic_notified.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task/waker.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/config.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/blocking/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/blocking/pool.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/blocking/schedule.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/blocking/shutdown.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/blocking/task.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/builder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/task_hooks.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/handle.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/runtime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/local_runtime/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/local_runtime/runtime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/local_runtime/options.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/id.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/thread_id.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/metrics/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/metrics/runtime.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/metrics/batch.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/metrics/worker.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/runtime/metrics/mock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/ctrl_c.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/registry.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/unix.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/windows.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/signal/reusable_box.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/barrier.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/broadcast.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/block.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/bounded.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/chan.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/list.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/unbounded.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mpsc/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/mutex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/notify.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/oneshot.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/batch_semaphore.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/semaphore.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/owned_read_guard.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/owned_write_guard.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/owned_write_guard_mapped.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/read_guard.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/write_guard.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/rwlock/write_guard_mapped.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/task/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/task/atomic_waker.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/once_cell.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/set_once.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/sync/watch.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/blocking.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/spawn.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/yield_now.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/coop/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/local.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/task_local.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/join_set.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/coop/consume_budget.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/task/coop/unconstrained.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/clock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/instant.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/interval.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/sleep.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/time/timeout.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/bit.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/sharded_list.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/rand/rt.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/idle_notified_set.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/wake.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/sync_wrapper.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/rc_cell.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/try_lock.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.51.0/src/util/ptr_expose.rs: diff --git a/server/target/debug/deps/tokio_macros-affebf8340ce0c7c.d b/server/target/debug/deps/tokio_macros-affebf8340ce0c7c.d new file mode 100644 index 0000000..9b0a952 --- /dev/null +++ b/server/target/debug/deps/tokio_macros-affebf8340ce0c7c.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/tokio_macros-affebf8340ce0c7c.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.0/src/entry.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.0/src/select.rs + +/home/z/my-project/projects/server/target/debug/deps/libtokio_macros-affebf8340ce0c7c.so: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.0/src/entry.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.0/src/select.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.0/src/entry.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.0/src/select.rs: diff --git a/server/target/debug/deps/tokio_stream-457a4c8da78a1f7a.d b/server/target/debug/deps/tokio_stream-457a4c8da78a1f7a.d new file mode 100644 index 0000000..fb060e4 --- /dev/null +++ b/server/target/debug/deps/tokio_stream-457a4c8da78a1f7a.d @@ -0,0 +1,40 @@ +/home/z/my-project/projects/server/target/debug/deps/tokio_stream-457a4c8da78a1f7a.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/wrappers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/wrappers/mpsc_bounded.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/wrappers/mpsc_unbounded.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/any.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/chain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/collect.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/filter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/filter_map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/fold.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/fuse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/map_while.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/merge.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/next.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/skip.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/skip_while.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/take.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/take_while.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/then.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/try_next.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/peekable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/empty.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/once.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/pending.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_close.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/wrappers/interval.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/timeout.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/timeout_repeating.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/throttle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/chunks_timeout.rs + +/home/z/my-project/projects/server/target/debug/deps/libtokio_stream-457a4c8da78a1f7a.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/wrappers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/wrappers/mpsc_bounded.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/wrappers/mpsc_unbounded.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/all.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/any.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/chain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/collect.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/filter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/filter_map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/fold.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/fuse.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/map_while.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/merge.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/next.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/skip.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/skip_while.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/take.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/take_while.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/then.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/try_next.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/peekable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/empty.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/iter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/once.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/pending.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_map.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_close.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/wrappers/interval.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/timeout.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/timeout_repeating.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/throttle.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/chunks_timeout.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/wrappers.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/wrappers/mpsc_bounded.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/wrappers/mpsc_unbounded.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/all.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/any.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/chain.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/collect.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/filter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/filter_map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/fold.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/fuse.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/map_while.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/merge.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/next.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/skip.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/skip_while.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/take.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/take_while.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/then.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/try_next.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/peekable.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/empty.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/iter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/once.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/pending.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_map.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_close.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/wrappers/interval.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/timeout.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/timeout_repeating.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/throttle.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-stream-0.1.18/src/stream_ext/chunks_timeout.rs: diff --git a/server/target/debug/deps/tokio_util-1da6e936d69cb930.d b/server/target/debug/deps/tokio_util-1da6e936d69cb930.d new file mode 100644 index 0000000..59be749 --- /dev/null +++ b/server/target/debug/deps/tokio_util-1da6e936d69cb930.d @@ -0,0 +1,47 @@ +/home/z/my-project/projects/server/target/debug/deps/tokio_util-1da6e936d69cb930.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/cfg.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/loom.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/task/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/guard.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/guard_ref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/tree_node.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/mpsc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/poll_semaphore.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/reusable_box.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/either.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/maybe_dangling.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/poll_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/future.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/future/with_cancellation_token.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/tracing.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/bytes_codec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/decoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/encoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_impl.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_write.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/length_delimited.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/lines_codec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/any_delimiter_codec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/copy_to_bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/inspect.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/read_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/reader_stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/simplex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/sink_writer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/stream_reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/context.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/task/spawn_pinned.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/task/task_tracker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/task/abort_on_drop.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/task/join_queue.rs + +/home/z/my-project/projects/server/target/debug/deps/libtokio_util-1da6e936d69cb930.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/cfg.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/loom.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/task/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/guard.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/guard_ref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/tree_node.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/mpsc.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/poll_semaphore.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/reusable_box.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/either.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/maybe_dangling.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/poll_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/future.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/future/with_cancellation_token.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/tracing.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/bytes_codec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/decoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/encoder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_impl.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_read.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_write.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/length_delimited.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/lines_codec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/any_delimiter_codec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/copy_to_bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/inspect.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/read_buf.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/reader_stream.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/simplex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/sink_writer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/stream_reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/context.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/task/spawn_pinned.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/task/task_tracker.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/task/abort_on_drop.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/task/join_queue.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/cfg.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/loom.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/task/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/guard.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/guard_ref.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/cancellation_token/tree_node.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/mpsc.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/poll_semaphore.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/sync/reusable_box.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/either.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/maybe_dangling.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/util/poll_buf.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/future.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/future/with_cancellation_token.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/tracing.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/bytes_codec.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/decoder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/encoder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_impl.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_read.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/framed_write.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/length_delimited.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/lines_codec.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/codec/any_delimiter_codec.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/copy_to_bytes.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/inspect.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/read_buf.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/reader_stream.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/simplex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/sink_writer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/io/stream_reader.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/context.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/task/spawn_pinned.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/task/task_tracker.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/task/abort_on_drop.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.18/src/task/join_queue.rs: diff --git a/server/target/debug/deps/tracing-33c7011246df32e8.d b/server/target/debug/deps/tracing-33c7011246df32e8.d new file mode 100644 index 0000000..5a5a970 --- /dev/null +++ b/server/target/debug/deps/tracing-33c7011246df32e8.d @@ -0,0 +1,14 @@ +/home/z/my-project/projects/server/target/debug/deps/tracing-33c7011246df32e8.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/dispatcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/field.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/instrument.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/level_filters.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/subscriber.rs + +/home/z/my-project/projects/server/target/debug/deps/libtracing-33c7011246df32e8.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/dispatcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/field.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/instrument.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/level_filters.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/subscriber.rs + +/home/z/my-project/projects/server/target/debug/deps/libtracing-33c7011246df32e8.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/dispatcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/field.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/instrument.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/level_filters.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/subscriber.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/dispatcher.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/field.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/instrument.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/level_filters.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/span.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/subscriber.rs: diff --git a/server/target/debug/deps/tracing-3979c33161b262f3.d b/server/target/debug/deps/tracing-3979c33161b262f3.d new file mode 100644 index 0000000..98de83c --- /dev/null +++ b/server/target/debug/deps/tracing-3979c33161b262f3.d @@ -0,0 +1,12 @@ +/home/z/my-project/projects/server/target/debug/deps/tracing-3979c33161b262f3.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/dispatcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/field.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/instrument.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/level_filters.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/subscriber.rs + +/home/z/my-project/projects/server/target/debug/deps/libtracing-3979c33161b262f3.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/dispatcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/field.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/instrument.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/level_filters.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/subscriber.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/dispatcher.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/field.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/instrument.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/level_filters.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/span.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/subscriber.rs: diff --git a/server/target/debug/deps/tracing_attributes-7927744f87d8d978.d b/server/target/debug/deps/tracing_attributes-7927744f87d8d978.d new file mode 100644 index 0000000..10a3862 --- /dev/null +++ b/server/target/debug/deps/tracing_attributes-7927744f87d8d978.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/tracing_attributes-7927744f87d8d978.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/attr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/expand.rs + +/home/z/my-project/projects/server/target/debug/deps/libtracing_attributes-7927744f87d8d978.so: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/attr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/expand.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/attr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/expand.rs: diff --git a/server/target/debug/deps/tracing_core-1d9746ace9409443.d b/server/target/debug/deps/tracing_core-1d9746ace9409443.d new file mode 100644 index 0000000..aecccdb --- /dev/null +++ b/server/target/debug/deps/tracing_core-1d9746ace9409443.d @@ -0,0 +1,20 @@ +/home/z/my-project/projects/server/target/debug/deps/tracing_core-1d9746ace9409443.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lazy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/spin/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/spin/mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/spin/once.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/callsite.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/dispatcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/event.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/field.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/metadata.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/parent.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/subscriber.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/sync.rs + +/home/z/my-project/projects/server/target/debug/deps/libtracing_core-1d9746ace9409443.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lazy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/spin/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/spin/mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/spin/once.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/callsite.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/dispatcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/event.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/field.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/metadata.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/parent.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/subscriber.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/sync.rs + +/home/z/my-project/projects/server/target/debug/deps/libtracing_core-1d9746ace9409443.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lazy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/spin/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/spin/mutex.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/spin/once.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/callsite.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/dispatcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/event.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/field.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/metadata.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/parent.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/subscriber.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/sync.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lazy.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/spin/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/spin/mutex.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/spin/once.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/callsite.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/dispatcher.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/event.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/field.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/metadata.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/parent.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/span.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/subscriber.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/sync.rs: diff --git a/server/target/debug/deps/tracing_core-2a280d3a91c8c1cf.d b/server/target/debug/deps/tracing_core-2a280d3a91c8c1cf.d new file mode 100644 index 0000000..0b6dc26 --- /dev/null +++ b/server/target/debug/deps/tracing_core-2a280d3a91c8c1cf.d @@ -0,0 +1,14 @@ +/home/z/my-project/projects/server/target/debug/deps/tracing_core-2a280d3a91c8c1cf.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lazy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/callsite.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/dispatcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/event.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/field.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/metadata.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/parent.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/subscriber.rs + +/home/z/my-project/projects/server/target/debug/deps/libtracing_core-2a280d3a91c8c1cf.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lazy.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/callsite.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/dispatcher.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/event.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/field.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/metadata.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/parent.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/span.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/subscriber.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lazy.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/callsite.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/dispatcher.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/event.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/field.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/metadata.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/parent.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/span.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/subscriber.rs: diff --git a/server/target/debug/deps/typenum-c8cc37eb0dbedd4f.d b/server/target/debug/deps/typenum-c8cc37eb0dbedd4f.d new file mode 100644 index 0000000..9493b2b --- /dev/null +++ b/server/target/debug/deps/typenum-c8cc37eb0dbedd4f.d @@ -0,0 +1,16 @@ +/home/z/my-project/projects/server/target/debug/deps/typenum-c8cc37eb0dbedd4f.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/bit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/gen.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/gen/consts.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/gen/op.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/marker_traits.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/operator_aliases.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/private.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/type_operators.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/uint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/array.rs + +/home/z/my-project/projects/server/target/debug/deps/libtypenum-c8cc37eb0dbedd4f.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/bit.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/gen.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/gen/consts.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/gen/op.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/int.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/marker_traits.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/operator_aliases.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/private.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/type_operators.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/uint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/array.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/bit.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/gen.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/gen/consts.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/gen/op.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/int.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/marker_traits.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/operator_aliases.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/private.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/type_operators.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/uint.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/array.rs: diff --git a/server/target/debug/deps/unicase-3ac36185b62d69ed.d b/server/target/debug/deps/unicase-3ac36185b62d69ed.d new file mode 100644 index 0000000..3c6a97e --- /dev/null +++ b/server/target/debug/deps/unicase-3ac36185b62d69ed.d @@ -0,0 +1,10 @@ +/home/z/my-project/projects/server/target/debug/deps/unicase-3ac36185b62d69ed.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/ascii.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/map.rs + +/home/z/my-project/projects/server/target/debug/deps/libunicase-3ac36185b62d69ed.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/ascii.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/map.rs + +/home/z/my-project/projects/server/target/debug/deps/libunicase-3ac36185b62d69ed.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/ascii.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/map.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/ascii.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/map.rs: diff --git a/server/target/debug/deps/unicase-9b2ded610a622a12.d b/server/target/debug/deps/unicase-9b2ded610a622a12.d new file mode 100644 index 0000000..e941df0 --- /dev/null +++ b/server/target/debug/deps/unicase-9b2ded610a622a12.d @@ -0,0 +1,8 @@ +/home/z/my-project/projects/server/target/debug/deps/unicase-9b2ded610a622a12.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/ascii.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/map.rs + +/home/z/my-project/projects/server/target/debug/deps/libunicase-9b2ded610a622a12.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/ascii.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/map.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/ascii.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/map.rs: diff --git a/server/target/debug/deps/unicode_ident-a43390fd6bef71db.d b/server/target/debug/deps/unicode_ident-a43390fd6bef71db.d new file mode 100644 index 0000000..ccd160e --- /dev/null +++ b/server/target/debug/deps/unicode_ident-a43390fd6bef71db.d @@ -0,0 +1,8 @@ +/home/z/my-project/projects/server/target/debug/deps/unicode_ident-a43390fd6bef71db.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/home/z/my-project/projects/server/target/debug/deps/libunicode_ident-a43390fd6bef71db.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/home/z/my-project/projects/server/target/debug/deps/libunicode_ident-a43390fd6bef71db.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs: diff --git a/server/target/debug/deps/unicode_segmentation-7ba902d172d5e12b.d b/server/target/debug/deps/unicode_segmentation-7ba902d172d5e12b.d new file mode 100644 index 0000000..fc35816 --- /dev/null +++ b/server/target/debug/deps/unicode_segmentation-7ba902d172d5e12b.d @@ -0,0 +1,11 @@ +/home/z/my-project/projects/server/target/debug/deps/unicode_segmentation-7ba902d172d5e12b.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/grapheme.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/sentence.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/word.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/tables.rs + +/home/z/my-project/projects/server/target/debug/deps/libunicode_segmentation-7ba902d172d5e12b.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/grapheme.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/sentence.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/word.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/tables.rs + +/home/z/my-project/projects/server/target/debug/deps/libunicode_segmentation-7ba902d172d5e12b.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/grapheme.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/sentence.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/word.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/tables.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/grapheme.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/sentence.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/word.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.2/src/tables.rs: diff --git a/server/target/debug/deps/unicode_xid-a1c81d0ca4d32902.d b/server/target/debug/deps/unicode_xid-a1c81d0ca4d32902.d new file mode 100644 index 0000000..fce3b4b --- /dev/null +++ b/server/target/debug/deps/unicode_xid-a1c81d0ca4d32902.d @@ -0,0 +1,8 @@ +/home/z/my-project/projects/server/target/debug/deps/unicode_xid-a1c81d0ca4d32902.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/tables.rs + +/home/z/my-project/projects/server/target/debug/deps/libunicode_xid-a1c81d0ca4d32902.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/tables.rs + +/home/z/my-project/projects/server/target/debug/deps/libunicode_xid-a1c81d0ca4d32902.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/tables.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/tables.rs: diff --git a/server/target/debug/deps/url-05f4306a81909a21.d b/server/target/debug/deps/url-05f4306a81909a21.d new file mode 100644 index 0000000..74a3f1e --- /dev/null +++ b/server/target/debug/deps/url-05f4306a81909a21.d @@ -0,0 +1,11 @@ +/home/z/my-project/projects/server/target/debug/deps/url-05f4306a81909a21.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/host.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/origin.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/path_segments.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/slicing.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/quirks.rs + +/home/z/my-project/projects/server/target/debug/deps/liburl-05f4306a81909a21.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/host.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/origin.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/path_segments.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/slicing.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/quirks.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/host.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/origin.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/parser.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/path_segments.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/slicing.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/quirks.rs: diff --git a/server/target/debug/deps/utf8_iter-2688cebfb14d9ed1.d b/server/target/debug/deps/utf8_iter-2688cebfb14d9ed1.d new file mode 100644 index 0000000..fc5a759 --- /dev/null +++ b/server/target/debug/deps/utf8_iter-2688cebfb14d9ed1.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/utf8_iter-2688cebfb14d9ed1.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/indices.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/report.rs + +/home/z/my-project/projects/server/target/debug/deps/libutf8_iter-2688cebfb14d9ed1.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/indices.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/report.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/indices.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/report.rs: diff --git a/server/target/debug/deps/utf8parse-a3c57471a0fdc5c4.d b/server/target/debug/deps/utf8parse-a3c57471a0fdc5c4.d new file mode 100644 index 0000000..4f92ab3 --- /dev/null +++ b/server/target/debug/deps/utf8parse-a3c57471a0fdc5c4.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/deps/utf8parse-a3c57471a0fdc5c4.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/types.rs + +/home/z/my-project/projects/server/target/debug/deps/libutf8parse-a3c57471a0fdc5c4.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/types.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/types.rs: diff --git a/server/target/debug/deps/uuid-974f19b8bc788ee8.d b/server/target/debug/deps/uuid-974f19b8bc788ee8.d new file mode 100644 index 0000000..6c7f4d9 --- /dev/null +++ b/server/target/debug/deps/uuid-974f19b8bc788ee8.d @@ -0,0 +1,16 @@ +/home/z/my-project/projects/server/target/debug/deps/uuid-974f19b8bc788ee8.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/non_nil.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/fmt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/timestamp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/v4.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/rng.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/external.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/external/serde_support.rs + +/home/z/my-project/projects/server/target/debug/deps/libuuid-974f19b8bc788ee8.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/non_nil.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/parser.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/fmt.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/timestamp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/v4.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/rng.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/external.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/external/serde_support.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/builder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/non_nil.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/parser.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/fmt.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/timestamp.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/v4.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/rng.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/external.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.23.0/src/external/serde_support.rs: diff --git a/server/target/debug/deps/v_htmlescape-0f067229ea331099.d b/server/target/debug/deps/v_htmlescape-0f067229ea331099.d new file mode 100644 index 0000000..26d7c46 --- /dev/null +++ b/server/target/debug/deps/v_htmlescape-0f067229ea331099.d @@ -0,0 +1,5 @@ +/home/z/my-project/projects/server/target/debug/deps/v_htmlescape-0f067229ea331099.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/v_htmlescape-0.15.8/src/lib.rs + +/home/z/my-project/projects/server/target/debug/deps/libv_htmlescape-0f067229ea331099.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/v_htmlescape-0.15.8/src/lib.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/v_htmlescape-0.15.8/src/lib.rs: diff --git a/server/target/debug/deps/version_check-9859fe56c2d7fed0.d b/server/target/debug/deps/version_check-9859fe56c2d7fed0.d new file mode 100644 index 0000000..03c32fc --- /dev/null +++ b/server/target/debug/deps/version_check-9859fe56c2d7fed0.d @@ -0,0 +1,10 @@ +/home/z/my-project/projects/server/target/debug/deps/version_check-9859fe56c2d7fed0.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/home/z/my-project/projects/server/target/debug/deps/libversion_check-9859fe56c2d7fed0.rlib: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/home/z/my-project/projects/server/target/debug/deps/libversion_check-9859fe56c2d7fed0.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs: diff --git a/server/target/debug/deps/writeable-fae44dae67a10c43.d b/server/target/debug/deps/writeable-fae44dae67a10c43.d new file mode 100644 index 0000000..8ab1193 --- /dev/null +++ b/server/target/debug/deps/writeable-fae44dae67a10c43.d @@ -0,0 +1,11 @@ +/home/z/my-project/projects/server/target/debug/deps/writeable-fae44dae67a10c43.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/cmp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/concat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/ops.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/parts_write_adapter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/try_writeable.rs + +/home/z/my-project/projects/server/target/debug/deps/libwriteable-fae44dae67a10c43.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/cmp.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/concat.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/ops.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/parts_write_adapter.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/try_writeable.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/cmp.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/concat.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/impls.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/ops.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/parts_write_adapter.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/try_writeable.rs: diff --git a/server/target/debug/deps/yoke-e037e3c224864b94.d b/server/target/debug/deps/yoke-e037e3c224864b94.d new file mode 100644 index 0000000..303c717 --- /dev/null +++ b/server/target/debug/deps/yoke-e037e3c224864b94.d @@ -0,0 +1,13 @@ +/home/z/my-project/projects/server/target/debug/deps/yoke-e037e3c224864b94.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/cartable_ptr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/either.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/kinda_sorta_dangling.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/macro_impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/yoke.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/yokeable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/zero_from.rs + +/home/z/my-project/projects/server/target/debug/deps/libyoke-e037e3c224864b94.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/cartable_ptr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/either.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/kinda_sorta_dangling.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/macro_impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/yoke.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/yokeable.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/zero_from.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/cartable_ptr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/either.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/kinda_sorta_dangling.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/macro_impls.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/utils.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/yoke.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/yokeable.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.2/src/zero_from.rs: diff --git a/server/target/debug/deps/yoke_derive-b286261b91a18942.d b/server/target/debug/deps/yoke_derive-b286261b91a18942.d new file mode 100644 index 0000000..8692d1f --- /dev/null +++ b/server/target/debug/deps/yoke_derive-b286261b91a18942.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/yoke_derive-b286261b91a18942.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lifetimes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/visitor.rs + +/home/z/my-project/projects/server/target/debug/deps/libyoke_derive-b286261b91a18942.so: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lifetimes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/visitor.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lifetimes.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/visitor.rs: diff --git a/server/target/debug/deps/zerocopy-140e0db8661c6d51.d b/server/target/debug/deps/zerocopy-140e0db8661c6d51.d new file mode 100644 index 0000000..3afb45e --- /dev/null +++ b/server/target/debug/deps/zerocopy-140e0db8661c6d51.d @@ -0,0 +1,220 @@ +/home/z/my-project/projects/server/target/debug/deps/zerocopy-140e0db8661c6d51.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/util/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/util/macro_util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/byte_slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/byteorder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/deprecated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/layout.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/pointer/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/pointer/inner.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/pointer/invariant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/pointer/ptr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/pointer/transmute.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/ref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/split_at.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/wrappers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/formats/coco_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/formats/coco_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/formats/coco_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_bytes.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_bytes.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_prefix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_prefix.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_prefix.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_suffix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_suffix.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_suffix.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/new_zeroed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/new_zeroed.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/new_zeroed.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_bytes.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_bytes.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_prefix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_prefix.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_prefix.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_suffix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_suffix.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_suffix.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_dynamic_size.x86-64.mca + +/home/z/my-project/projects/server/target/debug/deps/libzerocopy-140e0db8661c6d51.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/util/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/util/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/util/macro_util.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/byte_slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/byteorder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/deprecated.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/layout.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/pointer/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/pointer/inner.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/pointer/invariant.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/pointer/ptr.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/pointer/transmute.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/ref.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/split_at.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/wrappers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/formats/coco_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/formats/coco_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/formats/coco_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_bytes.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_bytes.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_prefix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_prefix.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_prefix.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_suffix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_suffix.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_suffix.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/new_zeroed.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/new_zeroed.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/new_zeroed.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_padding.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_padding.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_padding.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_bytes.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_bytes.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_bytes.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_prefix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_prefix.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_prefix.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_suffix.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_suffix.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_suffix.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_dynamic_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_static_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_static_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_static_size.x86-64.mca /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_dynamic_size.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_dynamic_size.x86-64 /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_dynamic_size.x86-64.mca + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/util/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/util/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/util/macro_util.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/byte_slice.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/byteorder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/deprecated.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/impls.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/layout.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/pointer/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/pointer/inner.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/pointer/invariant.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/pointer/ptr.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/pointer/transmute.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/ref.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/split_at.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/wrappers.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/formats/coco_static_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_static_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_static_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_static_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/formats/coco_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/transmute_ref_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_static_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_static_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_static_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_transmute_ref_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/formats/coco_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_unchecked_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_at_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_immutable_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_runtime_check_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/split_via_unchecked_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_static_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_static_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_static_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_static_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_static_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_static_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_static_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_static_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_static_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_bytes.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_bytes.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_bytes.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_prefix.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_prefix.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_prefix.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_suffix.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_suffix.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/try_read_from_suffix.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_static_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_static_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_static_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/zero_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/new_zeroed.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/new_zeroed.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/new_zeroed.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_static_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_static_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_static_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_static_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_static_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_static_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_static_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_static_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_static_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_bytes_with_elems_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_prefix_with_elems_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_padding.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_padding.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/ref_from_suffix_with_elems_dynamic_padding.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_bytes.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_bytes.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_bytes.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_prefix.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_prefix.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_prefix.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_suffix.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_suffix.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/read_from_suffix.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_static_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_static_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_static_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/as_bytes_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_static_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_static_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_static_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_static_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_static_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_static_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_prefix_dynamic_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_static_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_static_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_static_size.x86-64.mca: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_dynamic_size.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_dynamic_size.x86-64: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.48/src/../benches/write_to_suffix_dynamic_size.x86-64.mca: + +# env-dep:CARGO_PKG_VERSION=0.8.48 diff --git a/server/target/debug/deps/zerofrom-8dbd1d50b3509f2f.d b/server/target/debug/deps/zerofrom-8dbd1d50b3509f2f.d new file mode 100644 index 0000000..2e7df4f --- /dev/null +++ b/server/target/debug/deps/zerofrom-8dbd1d50b3509f2f.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/zerofrom-8dbd1d50b3509f2f.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.7/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.7/src/macro_impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.7/src/zero_from.rs + +/home/z/my-project/projects/server/target/debug/deps/libzerofrom-8dbd1d50b3509f2f.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.7/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.7/src/macro_impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.7/src/zero_from.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.7/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.7/src/macro_impls.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.7/src/zero_from.rs: diff --git a/server/target/debug/deps/zerofrom_derive-9576136568908fe8.d b/server/target/debug/deps/zerofrom_derive-9576136568908fe8.d new file mode 100644 index 0000000..b47f78c --- /dev/null +++ b/server/target/debug/deps/zerofrom_derive-9576136568908fe8.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/deps/zerofrom_derive-9576136568908fe8.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/visitor.rs + +/home/z/my-project/projects/server/target/debug/deps/libzerofrom_derive-9576136568908fe8.so: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/visitor.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/visitor.rs: diff --git a/server/target/debug/deps/zerotrie-9818bc8ef3de4ac1.d b/server/target/debug/deps/zerotrie-9818bc8ef3de4ac1.d new file mode 100644 index 0000000..661709e --- /dev/null +++ b/server/target/debug/deps/zerotrie-9818bc8ef3de4ac1.d @@ -0,0 +1,19 @@ +/home/z/my-project/projects/server/target/debug/deps/zerotrie-9818bc8ef3de4ac1.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/branch_meta.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/store.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/slice_indices.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/byte_phf/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/cursor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/helpers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/options.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/varint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/zerotrie.rs + +/home/z/my-project/projects/server/target/debug/deps/libzerotrie-9818bc8ef3de4ac1.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/branch_meta.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/builder.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/store.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/slice_indices.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/byte_phf/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/cursor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/helpers.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/options.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/varint.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/zerotrie.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/branch_meta.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/builder.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/store.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/slice_indices.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/byte_phf/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/cursor.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/helpers.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/options.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/reader.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/varint.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/zerotrie.rs: diff --git a/server/target/debug/deps/zerovec-fd438d04957bc54b.d b/server/target/debug/deps/zerovec-fd438d04957bc54b.d new file mode 100644 index 0000000..b16f3cc --- /dev/null +++ b/server/target/debug/deps/zerovec-fd438d04957bc54b.d @@ -0,0 +1,28 @@ +/home/z/my-project/projects/server/target/debug/deps/zerovec-fd438d04957bc54b.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/cow.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/components.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/lengthless.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/vec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/chars.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/encode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/multi.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/niche.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/option.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/plain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/slices.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuple.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuplevar.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/vartuple.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/yoke_impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerofrom_impls.rs + +/home/z/my-project/projects/server/target/debug/deps/libzerovec-fd438d04957bc54b.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/cow.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/components.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/error.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/lengthless.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/vec.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/slice.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/chars.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/encode.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/macros.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/multi.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/niche.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/option.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/plain.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/slices.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuple.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuplevar.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/vartuple.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/yoke_impls.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerofrom_impls.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/cow.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/components.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/error.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/lengthless.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/slice.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/vec.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/slice.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/chars.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/encode.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/macros.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/multi.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/niche.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/option.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/plain.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/slices.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuple.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuplevar.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/vartuple.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/yoke_impls.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerofrom_impls.rs: diff --git a/server/target/debug/deps/zerovec_derive-62a37bc4fcf6d476.d b/server/target/debug/deps/zerovec_derive-62a37bc4fcf6d476.d new file mode 100644 index 0000000..18017a0 --- /dev/null +++ b/server/target/debug/deps/zerovec_derive-62a37bc4fcf6d476.d @@ -0,0 +1,10 @@ +/home/z/my-project/projects/server/target/debug/deps/zerovec_derive-62a37bc4fcf6d476.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_ule.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_varule.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/ule.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/varule.rs + +/home/z/my-project/projects/server/target/debug/deps/libzerovec_derive-62a37bc4fcf6d476.so: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_ule.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_varule.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/ule.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/utils.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/varule.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_ule.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_varule.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/ule.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/utils.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/varule.rs: diff --git a/server/target/debug/deps/zmij-503b4b33217e4370.d b/server/target/debug/deps/zmij-503b4b33217e4370.d new file mode 100644 index 0000000..ae4037c --- /dev/null +++ b/server/target/debug/deps/zmij-503b4b33217e4370.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/zmij-503b4b33217e4370.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/stdarch_x86.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/traits.rs + +/home/z/my-project/projects/server/target/debug/deps/libzmij-503b4b33217e4370.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/stdarch_x86.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/traits.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/stdarch_x86.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/traits.rs: diff --git a/server/target/debug/deps/zstd-49edc042adcd0703.d b/server/target/debug/deps/zstd-49edc042adcd0703.d new file mode 100644 index 0000000..0b6263a --- /dev/null +++ b/server/target/debug/deps/zstd-49edc042adcd0703.d @@ -0,0 +1,17 @@ +/home/z/my-project/projects/server/target/debug/deps/zstd-49edc042adcd0703.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/bulk/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/bulk/compressor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/bulk/decompressor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/dict.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/read/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/write/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/functions.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/zio/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/zio/reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/zio/writer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/raw.rs + +/home/z/my-project/projects/server/target/debug/deps/libzstd-49edc042adcd0703.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/bulk/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/bulk/compressor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/bulk/decompressor.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/dict.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/read/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/write/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/functions.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/zio/mod.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/zio/reader.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/zio/writer.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/raw.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/bulk/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/bulk/compressor.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/bulk/decompressor.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/dict.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/read/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/write/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/functions.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/zio/mod.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/zio/reader.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/zio/writer.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-0.13.3/src/stream/raw.rs: diff --git a/server/target/debug/deps/zstd_safe-94a4f75bee32fb27.d b/server/target/debug/deps/zstd_safe-94a4f75bee32fb27.d new file mode 100644 index 0000000..e7e4dae --- /dev/null +++ b/server/target/debug/deps/zstd_safe-94a4f75bee32fb27.d @@ -0,0 +1,6 @@ +/home/z/my-project/projects/server/target/debug/deps/zstd_safe-94a4f75bee32fb27.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-safe-7.2.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-safe-7.2.4/src/constants.rs + +/home/z/my-project/projects/server/target/debug/deps/libzstd_safe-94a4f75bee32fb27.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-safe-7.2.4/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-safe-7.2.4/src/constants.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-safe-7.2.4/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-safe-7.2.4/src/constants.rs: diff --git a/server/target/debug/deps/zstd_sys-c613c42443c831d6.d b/server/target/debug/deps/zstd_sys-c613c42443c831d6.d new file mode 100644 index 0000000..5322379 --- /dev/null +++ b/server/target/debug/deps/zstd_sys-c613c42443c831d6.d @@ -0,0 +1,7 @@ +/home/z/my-project/projects/server/target/debug/deps/zstd_sys-c613c42443c831d6.d: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-sys-2.0.16+zstd.1.5.7/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-sys-2.0.16+zstd.1.5.7/src/bindings_zstd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-sys-2.0.16+zstd.1.5.7/src/bindings_zdict.rs + +/home/z/my-project/projects/server/target/debug/deps/libzstd_sys-c613c42443c831d6.rmeta: /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-sys-2.0.16+zstd.1.5.7/src/lib.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-sys-2.0.16+zstd.1.5.7/src/bindings_zstd.rs /home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-sys-2.0.16+zstd.1.5.7/src/bindings_zdict.rs + +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-sys-2.0.16+zstd.1.5.7/src/lib.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-sys-2.0.16+zstd.1.5.7/src/bindings_zstd.rs: +/home/z/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zstd-sys-2.0.16+zstd.1.5.7/src/bindings_zdict.rs: diff --git a/server/target/debug/incremental/butterfly_server-3t4j8zv1vzalp/s-hhdfzt7a3u-04vxh6o-working/dep-graph.part.bin b/server/target/debug/incremental/butterfly_server-3t4j8zv1vzalp/s-hhdfzt7a3u-04vxh6o-working/dep-graph.part.bin new file mode 100644 index 0000000..626d124 Binary files /dev/null and b/server/target/debug/incremental/butterfly_server-3t4j8zv1vzalp/s-hhdfzt7a3u-04vxh6o-working/dep-graph.part.bin differ diff --git a/server/target/debug/incremental/butterfly_server-3t4j8zv1vzalp/s-hhdfzt7a3u-04vxh6o.lock b/server/target/debug/incremental/butterfly_server-3t4j8zv1vzalp/s-hhdfzt7a3u-04vxh6o.lock new file mode 100644 index 0000000..e69de29