diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..f8bb188 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,796 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "ahash" +version = "0.8.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" +dependencies = [ + "cfg-if", + "once_cell", + "version_check", + "zerocopy", +] + +[[package]] +name = "aho-corasick" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +dependencies = [ + "memchr", +] + +[[package]] +name = "anstream" +version = "0.6.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" + +[[package]] +name = "anstyle-parse" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" +dependencies = [ + "windows-sys 0.59.0", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" +dependencies = [ + "anstyle", + "once_cell", + "windows-sys 0.59.0", +] + +[[package]] +name = "anyhow" +version = "1.0.98" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" + +[[package]] +name = "bitflags" +version = "2.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd" + +[[package]] +name = "cc" +version = "1.2.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32db95edf998450acc7881c932f94cd9b05c87b4b2599e8bab064753da4acfd1" +dependencies = [ + "shlex", +] + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "clap" +version = "4.5.38" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000" +dependencies = [ + "clap_builder", + "clap_derive", +] + +[[package]] +name = "clap_builder" +version = "4.5.38" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120" +dependencies = [ + "anstream", + "anstyle", + "clap_lex", + "strsim", +] + +[[package]] +name = "clap_derive" +version = "4.5.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "clap_lex" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" + +[[package]] +name = "colorchoice" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" + +[[package]] +name = "directories" +version = "5.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35" +dependencies = [ + "dirs-sys", +] + +[[package]] +name = "dirs-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" +dependencies = [ + "libc", + "option-ext", + "redox_users", + "windows-sys 0.48.0", +] + +[[package]] +name = "fallible-iterator" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" + +[[package]] +name = "fallible-streaming-iterator" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" + +[[package]] +name = "getrandom" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "glob" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" + +[[package]] +name = "hashbrown" +version = "0.14.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" +dependencies = [ + "ahash", +] + +[[package]] +name = "hashlink" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af" +dependencies = [ + "hashbrown", +] + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "is_terminal_polyfill" +version = "1.70.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" + +[[package]] +name = "lazy_static" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" + +[[package]] +name = "libc" +version = "0.2.172" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" + +[[package]] +name = "libredox" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" +dependencies = [ + "bitflags", + "libc", +] + +[[package]] +name = "libsqlite3-sys" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f" +dependencies = [ + "cc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "log" +version = "0.4.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" + +[[package]] +name = "marlin" +version = "0.1.0" +dependencies = [ + "anyhow", + "clap", + "directories", + "glob", + "rusqlite", + "tracing", + "tracing-subscriber", + "walkdir", +] + +[[package]] +name = "matchers" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" +dependencies = [ + "regex-automata 0.1.10", +] + +[[package]] +name = "memchr" +version = "2.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" + +[[package]] +name = "nu-ansi-term" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" +dependencies = [ + "overload", + "winapi", +] + +[[package]] +name = "once_cell" +version = "1.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" + +[[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] +name = "overload" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" + +[[package]] +name = "pin-project-lite" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" + +[[package]] +name = "pkg-config" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" + +[[package]] +name = "proc-macro2" +version = "1.0.95" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "redox_users" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" +dependencies = [ + "getrandom", + "libredox", + "thiserror", +] + +[[package]] +name = "regex" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata 0.4.9", + "regex-syntax 0.8.5", +] + +[[package]] +name = "regex-automata" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" +dependencies = [ + "regex-syntax 0.6.29", +] + +[[package]] +name = "regex-automata" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax 0.8.5", +] + +[[package]] +name = "regex-syntax" +version = "0.6.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" + +[[package]] +name = "regex-syntax" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" + +[[package]] +name = "rusqlite" +version = "0.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae" +dependencies = [ + "bitflags", + "fallible-iterator", + "fallible-streaming-iterator", + "hashlink", + "libsqlite3-sys", + "smallvec", +] + +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "sharded-slab" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" +dependencies = [ + "lazy_static", +] + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "smallvec" +version = "1.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9" + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "syn" +version = "2.0.101" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "thiserror" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "thread_local" +version = "1.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" +dependencies = [ + "cfg-if", + "once_cell", +] + +[[package]] +name = "tracing" +version = "0.1.41" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" +dependencies = [ + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tracing-core" +version = "0.1.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" +dependencies = [ + "once_cell", + "valuable", +] + +[[package]] +name = "tracing-log" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" +dependencies = [ + "log", + "once_cell", + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.3.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" +dependencies = [ + "matchers", + "nu-ansi-term", + "once_cell", + "regex", + "sharded-slab", + "smallvec", + "thread_local", + "tracing", + "tracing-core", + "tracing-log", +] + +[[package]] +name = "unicode-ident" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" + +[[package]] +name = "utf8parse" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" + +[[package]] +name = "valuable" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "walkdir" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" +dependencies = [ + "same-file", + "winapi-util", +] + +[[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" +dependencies = [ + "windows-sys 0.59.0", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + +[[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.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + +[[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.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + +[[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.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[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.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[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.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[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.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "zerocopy" +version = "0.8.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] diff --git a/src/main.rs b/src/main.rs index d67043f..6dee712 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,6 +5,7 @@ mod logging; mod scan; use anyhow::Result; +use clap::Parser; // 👈 bring in the trait that adds `.parse()` use cli::{Cli, Commands}; use glob::glob; use rusqlite::params; @@ -13,16 +14,16 @@ use tracing::{error, info}; fn main() -> Result<()> { logging::init(); - let args = Cli::parse(); + let args = Cli::parse(); // now compiles let cfg = config::Config::load()?; - let conn = db::open(&cfg.db_path)?; + let mut conn = db::open(&cfg.db_path)?; // mutable match args.command { Commands::Init => { info!("database initialised at {}", cfg.db_path.display()); } Commands::Scan { path } => { - scan::scan_directory(&conn, &path)?; + scan::scan_directory(&mut conn, &path)?; // pass &mut } Commands::Tag { pattern, tag } => { apply_tag(&conn, &pattern, &tag)?; @@ -36,9 +37,8 @@ fn main() -> Result<()> { fn apply_tag(conn: &rusqlite::Connection, pattern: &str, tag: &str) -> Result<()> { let tag_id = db::ensure_tag(conn, tag)?; let mut stmt_file = conn.prepare("SELECT id FROM files WHERE path = ?1")?; - let mut stmt_insert = conn.prepare( - "INSERT OR IGNORE INTO file_tags(file_id, tag_id) VALUES (?1, ?2)", - )?; + let mut stmt_insert = + conn.prepare("INSERT OR IGNORE INTO file_tags(file_id, tag_id) VALUES (?1, ?2)")?; for entry in glob(pattern)? { match entry { diff --git a/src/scan.rs b/src/scan.rs index 8e0f4cb..0cf0e37 100644 --- a/src/scan.rs +++ b/src/scan.rs @@ -7,7 +7,7 @@ use tracing::{debug, info}; use walkdir::WalkDir; /// Recursively walk `root` and upsert file metadata. -pub fn scan_directory(conn: &Connection, root: &Path) -> Result { +pub fn scan_directory(conn: &mut Connection, root: &Path) -> Result { let tx = conn.transaction()?; let mut stmt = tx.prepare( r#" @@ -20,7 +20,10 @@ pub fn scan_directory(conn: &Connection, root: &Path) -> Result { )?; let mut count = 0usize; - for entry in WalkDir::new(root).into_iter().filter_map(Result::ok).filter(|e| e.file_type().is_file()) + for entry in WalkDir::new(root) + .into_iter() + .filter_map(Result::ok) + .filter(|e| e.file_type().is_file()) { let meta = fs::metadata(entry.path())?; let size = meta.len() as i64; @@ -35,7 +38,8 @@ pub fn scan_directory(conn: &Connection, root: &Path) -> Result { debug!(file = %path_str, "indexed"); } - tx.commit()?; + drop(stmt); // <- release borrow before commit + tx.commit()?; // can now move tx info!(indexed = count, "scan complete"); Ok(count) } diff --git a/target/.rustc_info.json b/target/.rustc_info.json new file mode 100644 index 0000000..066ca10 --- /dev/null +++ b/target/.rustc_info.json @@ -0,0 +1 @@ +{"rustc_fingerprint":10768506583288887294,"outputs":{"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/user/.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.86.0 (05f9846f8 2025-03-31)\nbinary: rustc\ncommit-hash: 05f9846f893b09a1be1fc8560e33fc3c815cfecb\ncommit-date: 2025-03-31\nhost: x86_64-unknown-linux-gnu\nrelease: 1.86.0\nLLVM version: 19.1.7\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/target/CACHEDIR.TAG b/target/CACHEDIR.TAG new file mode 100644 index 0000000..20d7c31 --- /dev/null +++ b/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/target/release/.cargo-lock b/target/release/.cargo-lock new file mode 100644 index 0000000..e69de29 diff --git a/target/release/.fingerprint/ahash-130a203f63016575/dep-lib-ahash b/target/release/.fingerprint/ahash-130a203f63016575/dep-lib-ahash new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/ahash-130a203f63016575/dep-lib-ahash differ diff --git a/target/release/.fingerprint/ahash-130a203f63016575/invoked.timestamp b/target/release/.fingerprint/ahash-130a203f63016575/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/ahash-130a203f63016575/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/ahash-130a203f63016575/lib-ahash b/target/release/.fingerprint/ahash-130a203f63016575/lib-ahash new file mode 100644 index 0000000..a7f7c0e --- /dev/null +++ b/target/release/.fingerprint/ahash-130a203f63016575/lib-ahash @@ -0,0 +1 @@ +5cc9f103e421c2da \ No newline at end of file diff --git a/target/release/.fingerprint/ahash-130a203f63016575/lib-ahash.json b/target/release/.fingerprint/ahash-130a203f63016575/lib-ahash.json new file mode 100644 index 0000000..29b872e --- /dev/null +++ b/target/release/.fingerprint/ahash-130a203f63016575/lib-ahash.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":8470944000320059508,"profile":2040997289075261528,"path":14020298044230417414,"deps":[[966925859616469517,"build_script_build",false,6094390796210122280],[2377604147989930065,"zerocopy",false,8271025642863424092],[3722963349756955755,"once_cell",false,16974215088539759309],[10411997081178400487,"cfg_if",false,12340485484065969001]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/ahash-130a203f63016575/dep-lib-ahash","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/ahash-4d7744839a6e3fa7/run-build-script-build-script-build b/target/release/.fingerprint/ahash-4d7744839a6e3fa7/run-build-script-build-script-build new file mode 100644 index 0000000..bae4be1 --- /dev/null +++ b/target/release/.fingerprint/ahash-4d7744839a6e3fa7/run-build-script-build-script-build @@ -0,0 +1 @@ +28ae83c223a09354 \ No newline at end of file diff --git a/target/release/.fingerprint/ahash-4d7744839a6e3fa7/run-build-script-build-script-build.json b/target/release/.fingerprint/ahash-4d7744839a6e3fa7/run-build-script-build-script-build.json new file mode 100644 index 0000000..e87a148 --- /dev/null +++ b/target/release/.fingerprint/ahash-4d7744839a6e3fa7/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[966925859616469517,"build_script_build",false,9232639268959901600]],"local":[{"RerunIfChanged":{"output":"release/build/ahash-4d7744839a6e3fa7/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/ahash-86123424690d4910/build-script-build-script-build b/target/release/.fingerprint/ahash-86123424690d4910/build-script-build-script-build new file mode 100644 index 0000000..17f06bb --- /dev/null +++ b/target/release/.fingerprint/ahash-86123424690d4910/build-script-build-script-build @@ -0,0 +1 @@ +a057ad9d7fec2080 \ No newline at end of file diff --git a/target/release/.fingerprint/ahash-86123424690d4910/build-script-build-script-build.json b/target/release/.fingerprint/ahash-86123424690d4910/build-script-build-script-build.json new file mode 100644 index 0000000..f8b7eee --- /dev/null +++ b/target/release/.fingerprint/ahash-86123424690d4910/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[\"atomic-polyfill\", \"compile-time-rng\", \"const-random\", \"default\", \"getrandom\", \"nightly-arm-aes\", \"no-rng\", \"runtime-rng\", \"serde\", \"std\"]","target":17883862002600103897,"profile":1369601567987815722,"path":13460835577574126843,"deps":[[5398981501050481332,"version_check",false,3636654725102601134]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/ahash-86123424690d4910/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/ahash-86123424690d4910/dep-build-script-build-script-build b/target/release/.fingerprint/ahash-86123424690d4910/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/ahash-86123424690d4910/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/ahash-86123424690d4910/invoked.timestamp b/target/release/.fingerprint/ahash-86123424690d4910/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/ahash-86123424690d4910/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anstream-466e31fca9377762/dep-lib-anstream b/target/release/.fingerprint/anstream-466e31fca9377762/dep-lib-anstream new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/anstream-466e31fca9377762/dep-lib-anstream differ diff --git a/target/release/.fingerprint/anstream-466e31fca9377762/invoked.timestamp b/target/release/.fingerprint/anstream-466e31fca9377762/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anstream-466e31fca9377762/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anstream-466e31fca9377762/lib-anstream b/target/release/.fingerprint/anstream-466e31fca9377762/lib-anstream new file mode 100644 index 0000000..c132f26 --- /dev/null +++ b/target/release/.fingerprint/anstream-466e31fca9377762/lib-anstream @@ -0,0 +1 @@ +194b8e3adda0c3d1 \ No newline at end of file diff --git a/target/release/.fingerprint/anstream-466e31fca9377762/lib-anstream.json b/target/release/.fingerprint/anstream-466e31fca9377762/lib-anstream.json new file mode 100644 index 0000000..447af92 --- /dev/null +++ b/target/release/.fingerprint/anstream-466e31fca9377762/lib-anstream.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"auto\", \"default\", \"wincon\"]","declared_features":"[\"auto\", \"default\", \"test\", \"wincon\"]","target":11278316191512382530,"profile":17342157952639649116,"path":1186773397032171546,"deps":[[4858255257716900954,"anstyle",false,16016392231776725875],[6062327512194961595,"is_terminal_polyfill",false,1829318471635631687],[8605544941055515999,"anstyle_parse",false,4977923459580256622],[9179982570249329464,"anstyle_query",false,6240908570463524815],[16319705629219006414,"colorchoice",false,13290963345740953989],[17716308468579268865,"utf8parse",false,15106363075773397591]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anstream-466e31fca9377762/dep-lib-anstream","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anstyle-9f5be866ba61e118/dep-lib-anstyle b/target/release/.fingerprint/anstyle-9f5be866ba61e118/dep-lib-anstyle new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/anstyle-9f5be866ba61e118/dep-lib-anstyle differ diff --git a/target/release/.fingerprint/anstyle-9f5be866ba61e118/invoked.timestamp b/target/release/.fingerprint/anstyle-9f5be866ba61e118/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anstyle-9f5be866ba61e118/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anstyle-9f5be866ba61e118/lib-anstyle b/target/release/.fingerprint/anstyle-9f5be866ba61e118/lib-anstyle new file mode 100644 index 0000000..efcc67b --- /dev/null +++ b/target/release/.fingerprint/anstyle-9f5be866ba61e118/lib-anstyle @@ -0,0 +1 @@ +73ab6056e0a745de \ No newline at end of file diff --git a/target/release/.fingerprint/anstyle-9f5be866ba61e118/lib-anstyle.json b/target/release/.fingerprint/anstyle-9f5be866ba61e118/lib-anstyle.json new file mode 100644 index 0000000..9fc58ef --- /dev/null +++ b/target/release/.fingerprint/anstyle-9f5be866ba61e118/lib-anstyle.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":6165884447290141869,"profile":17342157952639649116,"path":11893749529742943442,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anstyle-9f5be866ba61e118/dep-lib-anstyle","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anstyle-parse-e6c6d593d223def1/dep-lib-anstyle_parse b/target/release/.fingerprint/anstyle-parse-e6c6d593d223def1/dep-lib-anstyle_parse new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/anstyle-parse-e6c6d593d223def1/dep-lib-anstyle_parse differ diff --git a/target/release/.fingerprint/anstyle-parse-e6c6d593d223def1/invoked.timestamp b/target/release/.fingerprint/anstyle-parse-e6c6d593d223def1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anstyle-parse-e6c6d593d223def1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anstyle-parse-e6c6d593d223def1/lib-anstyle_parse b/target/release/.fingerprint/anstyle-parse-e6c6d593d223def1/lib-anstyle_parse new file mode 100644 index 0000000..50130b9 --- /dev/null +++ b/target/release/.fingerprint/anstyle-parse-e6c6d593d223def1/lib-anstyle_parse @@ -0,0 +1 @@ +6e615d2703231545 \ No newline at end of file diff --git a/target/release/.fingerprint/anstyle-parse-e6c6d593d223def1/lib-anstyle_parse.json b/target/release/.fingerprint/anstyle-parse-e6c6d593d223def1/lib-anstyle_parse.json new file mode 100644 index 0000000..10778e9 --- /dev/null +++ b/target/release/.fingerprint/anstyle-parse-e6c6d593d223def1/lib-anstyle_parse.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"default\", \"utf8\"]","declared_features":"[\"core\", \"default\", \"utf8\"]","target":10225663410500332907,"profile":17342157952639649116,"path":2827516888752210580,"deps":[[17716308468579268865,"utf8parse",false,15106363075773397591]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anstyle-parse-e6c6d593d223def1/dep-lib-anstyle_parse","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anstyle-query-e96753c6a9066110/dep-lib-anstyle_query b/target/release/.fingerprint/anstyle-query-e96753c6a9066110/dep-lib-anstyle_query new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/anstyle-query-e96753c6a9066110/dep-lib-anstyle_query differ diff --git a/target/release/.fingerprint/anstyle-query-e96753c6a9066110/invoked.timestamp b/target/release/.fingerprint/anstyle-query-e96753c6a9066110/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anstyle-query-e96753c6a9066110/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anstyle-query-e96753c6a9066110/lib-anstyle_query b/target/release/.fingerprint/anstyle-query-e96753c6a9066110/lib-anstyle_query new file mode 100644 index 0000000..84b9504 --- /dev/null +++ b/target/release/.fingerprint/anstyle-query-e96753c6a9066110/lib-anstyle_query @@ -0,0 +1 @@ +cf572b7247299c56 \ No newline at end of file diff --git a/target/release/.fingerprint/anstyle-query-e96753c6a9066110/lib-anstyle_query.json b/target/release/.fingerprint/anstyle-query-e96753c6a9066110/lib-anstyle_query.json new file mode 100644 index 0000000..bca2b19 --- /dev/null +++ b/target/release/.fingerprint/anstyle-query-e96753c6a9066110/lib-anstyle_query.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":10705714425685373190,"profile":17342157952639649116,"path":1292680954685612434,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anstyle-query-e96753c6a9066110/dep-lib-anstyle_query","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anyhow-10b5e4ae048b717f/run-build-script-build-script-build b/target/release/.fingerprint/anyhow-10b5e4ae048b717f/run-build-script-build-script-build new file mode 100644 index 0000000..8163320 --- /dev/null +++ b/target/release/.fingerprint/anyhow-10b5e4ae048b717f/run-build-script-build-script-build @@ -0,0 +1 @@ +3643453806e82472 \ No newline at end of file diff --git a/target/release/.fingerprint/anyhow-10b5e4ae048b717f/run-build-script-build-script-build.json b/target/release/.fingerprint/anyhow-10b5e4ae048b717f/run-build-script-build-script-build.json new file mode 100644 index 0000000..8a6eed5 --- /dev/null +++ b/target/release/.fingerprint/anyhow-10b5e4ae048b717f/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13625485746686963219,"build_script_build",false,13474333167845277219]],"local":[{"RerunIfChanged":{"output":"release/build/anyhow-10b5e4ae048b717f/output","paths":["src/nightly.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anyhow-1fcf29957cb57521/build-script-build-script-build b/target/release/.fingerprint/anyhow-1fcf29957cb57521/build-script-build-script-build new file mode 100644 index 0000000..b085a92 --- /dev/null +++ b/target/release/.fingerprint/anyhow-1fcf29957cb57521/build-script-build-script-build @@ -0,0 +1 @@ +237eae46a072feba \ No newline at end of file diff --git a/target/release/.fingerprint/anyhow-1fcf29957cb57521/build-script-build-script-build.json b/target/release/.fingerprint/anyhow-1fcf29957cb57521/build-script-build-script-build.json new file mode 100644 index 0000000..e629790 --- /dev/null +++ b/target/release/.fingerprint/anyhow-1fcf29957cb57521/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":17883862002600103897,"profile":1369601567987815722,"path":41516897318762193,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anyhow-1fcf29957cb57521/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anyhow-1fcf29957cb57521/dep-build-script-build-script-build b/target/release/.fingerprint/anyhow-1fcf29957cb57521/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/anyhow-1fcf29957cb57521/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/anyhow-1fcf29957cb57521/invoked.timestamp b/target/release/.fingerprint/anyhow-1fcf29957cb57521/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anyhow-1fcf29957cb57521/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anyhow-2510ffd6966eb36d/dep-lib-anyhow b/target/release/.fingerprint/anyhow-2510ffd6966eb36d/dep-lib-anyhow new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/anyhow-2510ffd6966eb36d/dep-lib-anyhow differ diff --git a/target/release/.fingerprint/anyhow-2510ffd6966eb36d/invoked.timestamp b/target/release/.fingerprint/anyhow-2510ffd6966eb36d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anyhow-2510ffd6966eb36d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anyhow-2510ffd6966eb36d/lib-anyhow b/target/release/.fingerprint/anyhow-2510ffd6966eb36d/lib-anyhow new file mode 100644 index 0000000..0b02208 --- /dev/null +++ b/target/release/.fingerprint/anyhow-2510ffd6966eb36d/lib-anyhow @@ -0,0 +1 @@ +103943c4242a7939 \ No newline at end of file diff --git a/target/release/.fingerprint/anyhow-2510ffd6966eb36d/lib-anyhow.json b/target/release/.fingerprint/anyhow-2510ffd6966eb36d/lib-anyhow.json new file mode 100644 index 0000000..dbdd70f --- /dev/null +++ b/target/release/.fingerprint/anyhow-2510ffd6966eb36d/lib-anyhow.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":16100955855663461252,"profile":2040997289075261528,"path":6106703490823381218,"deps":[[13625485746686963219,"build_script_build",false,8224953932896879414]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anyhow-2510ffd6966eb36d/dep-lib-anyhow","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/bitflags-90ba4e04b2f70ecd/dep-lib-bitflags b/target/release/.fingerprint/bitflags-90ba4e04b2f70ecd/dep-lib-bitflags new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/bitflags-90ba4e04b2f70ecd/dep-lib-bitflags differ diff --git a/target/release/.fingerprint/bitflags-90ba4e04b2f70ecd/invoked.timestamp b/target/release/.fingerprint/bitflags-90ba4e04b2f70ecd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/bitflags-90ba4e04b2f70ecd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/bitflags-90ba4e04b2f70ecd/lib-bitflags b/target/release/.fingerprint/bitflags-90ba4e04b2f70ecd/lib-bitflags new file mode 100644 index 0000000..c96c814 --- /dev/null +++ b/target/release/.fingerprint/bitflags-90ba4e04b2f70ecd/lib-bitflags @@ -0,0 +1 @@ +c3f70c770de5a98c \ No newline at end of file diff --git a/target/release/.fingerprint/bitflags-90ba4e04b2f70ecd/lib-bitflags.json b/target/release/.fingerprint/bitflags-90ba4e04b2f70ecd/lib-bitflags.json new file mode 100644 index 0000000..b5a6597 --- /dev/null +++ b/target/release/.fingerprint/bitflags-90ba4e04b2f70ecd/lib-bitflags.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[\"arbitrary\", \"bytemuck\", \"compiler_builtins\", \"core\", \"example_generated\", \"rustc-dep-of-std\", \"serde\", \"std\"]","target":7691312148208718491,"profile":2040997289075261528,"path":6342272006663449154,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/bitflags-90ba4e04b2f70ecd/dep-lib-bitflags","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/cc-8e57ca0a4f0ad779/dep-lib-cc b/target/release/.fingerprint/cc-8e57ca0a4f0ad779/dep-lib-cc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/cc-8e57ca0a4f0ad779/dep-lib-cc differ diff --git a/target/release/.fingerprint/cc-8e57ca0a4f0ad779/invoked.timestamp b/target/release/.fingerprint/cc-8e57ca0a4f0ad779/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/cc-8e57ca0a4f0ad779/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/cc-8e57ca0a4f0ad779/lib-cc b/target/release/.fingerprint/cc-8e57ca0a4f0ad779/lib-cc new file mode 100644 index 0000000..9e959a3 --- /dev/null +++ b/target/release/.fingerprint/cc-8e57ca0a4f0ad779/lib-cc @@ -0,0 +1 @@ +b3cc325ccd40e430 \ No newline at end of file diff --git a/target/release/.fingerprint/cc-8e57ca0a4f0ad779/lib-cc.json b/target/release/.fingerprint/cc-8e57ca0a4f0ad779/lib-cc.json new file mode 100644 index 0000000..0259796 --- /dev/null +++ b/target/release/.fingerprint/cc-8e57ca0a4f0ad779/lib-cc.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[\"jobserver\", \"parallel\"]","target":11042037588551934598,"profile":1369601567987815722,"path":9985887961309982441,"deps":[[8410525223747752176,"shlex",false,10276459474849457085]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/cc-8e57ca0a4f0ad779/dep-lib-cc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/cfg-if-da34da6838abd7f1/dep-lib-cfg_if b/target/release/.fingerprint/cfg-if-da34da6838abd7f1/dep-lib-cfg_if new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/cfg-if-da34da6838abd7f1/dep-lib-cfg_if differ diff --git a/target/release/.fingerprint/cfg-if-da34da6838abd7f1/invoked.timestamp b/target/release/.fingerprint/cfg-if-da34da6838abd7f1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/cfg-if-da34da6838abd7f1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/cfg-if-da34da6838abd7f1/lib-cfg_if b/target/release/.fingerprint/cfg-if-da34da6838abd7f1/lib-cfg_if new file mode 100644 index 0000000..b71f037 --- /dev/null +++ b/target/release/.fingerprint/cfg-if-da34da6838abd7f1/lib-cfg_if @@ -0,0 +1 @@ +69d39d412a3642ab \ No newline at end of file diff --git a/target/release/.fingerprint/cfg-if-da34da6838abd7f1/lib-cfg_if.json b/target/release/.fingerprint/cfg-if-da34da6838abd7f1/lib-cfg_if.json new file mode 100644 index 0000000..b95e159 --- /dev/null +++ b/target/release/.fingerprint/cfg-if-da34da6838abd7f1/lib-cfg_if.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[\"compiler_builtins\", \"core\", \"rustc-dep-of-std\"]","target":14691992093392644261,"profile":2040997289075261528,"path":16722972605495705402,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/cfg-if-da34da6838abd7f1/dep-lib-cfg_if","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/clap-83585441f817b33d/dep-lib-clap b/target/release/.fingerprint/clap-83585441f817b33d/dep-lib-clap new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/clap-83585441f817b33d/dep-lib-clap differ diff --git a/target/release/.fingerprint/clap-83585441f817b33d/invoked.timestamp b/target/release/.fingerprint/clap-83585441f817b33d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/clap-83585441f817b33d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/clap-83585441f817b33d/lib-clap b/target/release/.fingerprint/clap-83585441f817b33d/lib-clap new file mode 100644 index 0000000..00e5eea --- /dev/null +++ b/target/release/.fingerprint/clap-83585441f817b33d/lib-clap @@ -0,0 +1 @@ +e2fe56a2c1adb97b \ No newline at end of file diff --git a/target/release/.fingerprint/clap-83585441f817b33d/lib-clap.json b/target/release/.fingerprint/clap-83585441f817b33d/lib-clap.json new file mode 100644 index 0000000..3ae134c --- /dev/null +++ b/target/release/.fingerprint/clap-83585441f817b33d/lib-clap.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"color\", \"default\", \"derive\", \"error-context\", \"help\", \"std\", \"suggestions\", \"usage\"]","declared_features":"[\"cargo\", \"color\", \"debug\", \"default\", \"deprecated\", \"derive\", \"env\", \"error-context\", \"help\", \"std\", \"string\", \"suggestions\", \"unicode\", \"unstable-derive-ui-tests\", \"unstable-doc\", \"unstable-ext\", \"unstable-markdown\", \"unstable-styles\", \"unstable-v5\", \"usage\", \"wrap_help\"]","target":4238846637535193678,"profile":1498963625094057491,"path":443231411024518205,"deps":[[8750560705953570236,"clap_builder",false,4362046619931203397],[17056525256108235978,"clap_derive",false,14669293838493564139]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/clap-83585441f817b33d/dep-lib-clap","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/clap_builder-f3fac56cc8f6c925/dep-lib-clap_builder b/target/release/.fingerprint/clap_builder-f3fac56cc8f6c925/dep-lib-clap_builder new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/clap_builder-f3fac56cc8f6c925/dep-lib-clap_builder differ diff --git a/target/release/.fingerprint/clap_builder-f3fac56cc8f6c925/invoked.timestamp b/target/release/.fingerprint/clap_builder-f3fac56cc8f6c925/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/clap_builder-f3fac56cc8f6c925/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/clap_builder-f3fac56cc8f6c925/lib-clap_builder b/target/release/.fingerprint/clap_builder-f3fac56cc8f6c925/lib-clap_builder new file mode 100644 index 0000000..282788b --- /dev/null +++ b/target/release/.fingerprint/clap_builder-f3fac56cc8f6c925/lib-clap_builder @@ -0,0 +1 @@ +4557b12a4a1a893c \ No newline at end of file diff --git a/target/release/.fingerprint/clap_builder-f3fac56cc8f6c925/lib-clap_builder.json b/target/release/.fingerprint/clap_builder-f3fac56cc8f6c925/lib-clap_builder.json new file mode 100644 index 0000000..9b744fc --- /dev/null +++ b/target/release/.fingerprint/clap_builder-f3fac56cc8f6c925/lib-clap_builder.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"color\", \"error-context\", \"help\", \"std\", \"suggestions\", \"usage\"]","declared_features":"[\"cargo\", \"color\", \"debug\", \"default\", \"deprecated\", \"env\", \"error-context\", \"help\", \"std\", \"string\", \"suggestions\", \"unicode\", \"unstable-doc\", \"unstable-ext\", \"unstable-styles\", \"unstable-v5\", \"usage\", \"wrap_help\"]","target":6917651628887788201,"profile":1498963625094057491,"path":1732166255233788037,"deps":[[4858255257716900954,"anstyle",false,16016392231776725875],[11166530783118767604,"strsim",false,10274688399698997075],[12553266436076736472,"clap_lex",false,1200762466346631393],[13237942454122161292,"anstream",false,15115101646416136985]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/clap_builder-f3fac56cc8f6c925/dep-lib-clap_builder","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/clap_derive-9d997a55d97f09ac/dep-lib-clap_derive b/target/release/.fingerprint/clap_derive-9d997a55d97f09ac/dep-lib-clap_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/clap_derive-9d997a55d97f09ac/dep-lib-clap_derive differ diff --git a/target/release/.fingerprint/clap_derive-9d997a55d97f09ac/invoked.timestamp b/target/release/.fingerprint/clap_derive-9d997a55d97f09ac/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/clap_derive-9d997a55d97f09ac/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/clap_derive-9d997a55d97f09ac/lib-clap_derive b/target/release/.fingerprint/clap_derive-9d997a55d97f09ac/lib-clap_derive new file mode 100644 index 0000000..c067dc3 --- /dev/null +++ b/target/release/.fingerprint/clap_derive-9d997a55d97f09ac/lib-clap_derive @@ -0,0 +1 @@ +eb3c3c5d06cd93cb \ No newline at end of file diff --git a/target/release/.fingerprint/clap_derive-9d997a55d97f09ac/lib-clap_derive.json b/target/release/.fingerprint/clap_derive-9d997a55d97f09ac/lib-clap_derive.json new file mode 100644 index 0000000..801d33f --- /dev/null +++ b/target/release/.fingerprint/clap_derive-9d997a55d97f09ac/lib-clap_derive.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"default\"]","declared_features":"[\"debug\", \"default\", \"deprecated\", \"raw-deprecated\", \"unstable-markdown\", \"unstable-v5\"]","target":905583280159225126,"profile":9476526975381666521,"path":888254537305486820,"deps":[[3060637413840920116,"proc_macro2",false,10383293485756743751],[13077543566650298139,"heck",false,6776323304234059045],[17990358020177143287,"quote",false,18344128468378129469],[18149961000318489080,"syn",false,15394519495334452688]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/clap_derive-9d997a55d97f09ac/dep-lib-clap_derive","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/clap_lex-fb833c3ab31178a1/dep-lib-clap_lex b/target/release/.fingerprint/clap_lex-fb833c3ab31178a1/dep-lib-clap_lex new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/clap_lex-fb833c3ab31178a1/dep-lib-clap_lex differ diff --git a/target/release/.fingerprint/clap_lex-fb833c3ab31178a1/invoked.timestamp b/target/release/.fingerprint/clap_lex-fb833c3ab31178a1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/clap_lex-fb833c3ab31178a1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/clap_lex-fb833c3ab31178a1/lib-clap_lex b/target/release/.fingerprint/clap_lex-fb833c3ab31178a1/lib-clap_lex new file mode 100644 index 0000000..7d1bf5c --- /dev/null +++ b/target/release/.fingerprint/clap_lex-fb833c3ab31178a1/lib-clap_lex @@ -0,0 +1 @@ +e18036ea19f7a910 \ No newline at end of file diff --git a/target/release/.fingerprint/clap_lex-fb833c3ab31178a1/lib-clap_lex.json b/target/release/.fingerprint/clap_lex-fb833c3ab31178a1/lib-clap_lex.json new file mode 100644 index 0000000..2657fc4 --- /dev/null +++ b/target/release/.fingerprint/clap_lex-fb833c3ab31178a1/lib-clap_lex.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":1825942688849220394,"profile":1498963625094057491,"path":10669464069988005025,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/clap_lex-fb833c3ab31178a1/dep-lib-clap_lex","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/colorchoice-d0d218aa6d93621a/dep-lib-colorchoice b/target/release/.fingerprint/colorchoice-d0d218aa6d93621a/dep-lib-colorchoice new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/colorchoice-d0d218aa6d93621a/dep-lib-colorchoice differ diff --git a/target/release/.fingerprint/colorchoice-d0d218aa6d93621a/invoked.timestamp b/target/release/.fingerprint/colorchoice-d0d218aa6d93621a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/colorchoice-d0d218aa6d93621a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/colorchoice-d0d218aa6d93621a/lib-colorchoice b/target/release/.fingerprint/colorchoice-d0d218aa6d93621a/lib-colorchoice new file mode 100644 index 0000000..27fc952 --- /dev/null +++ b/target/release/.fingerprint/colorchoice-d0d218aa6d93621a/lib-colorchoice @@ -0,0 +1 @@ +8579a091befc72b8 \ No newline at end of file diff --git a/target/release/.fingerprint/colorchoice-d0d218aa6d93621a/lib-colorchoice.json b/target/release/.fingerprint/colorchoice-d0d218aa6d93621a/lib-colorchoice.json new file mode 100644 index 0000000..d77a5ad --- /dev/null +++ b/target/release/.fingerprint/colorchoice-d0d218aa6d93621a/lib-colorchoice.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":11187303652147478063,"profile":17342157952639649116,"path":11770743449847791962,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/colorchoice-d0d218aa6d93621a/dep-lib-colorchoice","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/directories-3c6f096c06c9b755/dep-lib-directories b/target/release/.fingerprint/directories-3c6f096c06c9b755/dep-lib-directories new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/directories-3c6f096c06c9b755/dep-lib-directories differ diff --git a/target/release/.fingerprint/directories-3c6f096c06c9b755/invoked.timestamp b/target/release/.fingerprint/directories-3c6f096c06c9b755/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/directories-3c6f096c06c9b755/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/directories-3c6f096c06c9b755/lib-directories b/target/release/.fingerprint/directories-3c6f096c06c9b755/lib-directories new file mode 100644 index 0000000..b41890e --- /dev/null +++ b/target/release/.fingerprint/directories-3c6f096c06c9b755/lib-directories @@ -0,0 +1 @@ +6c6b5c327d1bc305 \ No newline at end of file diff --git a/target/release/.fingerprint/directories-3c6f096c06c9b755/lib-directories.json b/target/release/.fingerprint/directories-3c6f096c06c9b755/lib-directories.json new file mode 100644 index 0000000..4ca7066 --- /dev/null +++ b/target/release/.fingerprint/directories-3c6f096c06c9b755/lib-directories.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":17249629911599636029,"profile":2040997289075261528,"path":15550048041907171884,"deps":[[11795441179928084356,"dirs_sys",false,10841690071507034290]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/directories-3c6f096c06c9b755/dep-lib-directories","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/dirs-sys-18a4a1c6e108e48d/dep-lib-dirs_sys b/target/release/.fingerprint/dirs-sys-18a4a1c6e108e48d/dep-lib-dirs_sys new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/dirs-sys-18a4a1c6e108e48d/dep-lib-dirs_sys differ diff --git a/target/release/.fingerprint/dirs-sys-18a4a1c6e108e48d/invoked.timestamp b/target/release/.fingerprint/dirs-sys-18a4a1c6e108e48d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/dirs-sys-18a4a1c6e108e48d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/dirs-sys-18a4a1c6e108e48d/lib-dirs_sys b/target/release/.fingerprint/dirs-sys-18a4a1c6e108e48d/lib-dirs_sys new file mode 100644 index 0000000..9a7834b --- /dev/null +++ b/target/release/.fingerprint/dirs-sys-18a4a1c6e108e48d/lib-dirs_sys @@ -0,0 +1 @@ +b2600ea5ad6b7596 \ No newline at end of file diff --git a/target/release/.fingerprint/dirs-sys-18a4a1c6e108e48d/lib-dirs_sys.json b/target/release/.fingerprint/dirs-sys-18a4a1c6e108e48d/lib-dirs_sys.json new file mode 100644 index 0000000..c618be7 --- /dev/null +++ b/target/release/.fingerprint/dirs-sys-18a4a1c6e108e48d/lib-dirs_sys.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":1716570026465204918,"profile":2040997289075261528,"path":11804882514173969333,"deps":[[2924422107542798392,"libc",false,10986486074394885083],[9760035060063614848,"option_ext",false,10297924991325778125]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/dirs-sys-18a4a1c6e108e48d/dep-lib-dirs_sys","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/fallible-iterator-15b199cebb28d6c1/dep-lib-fallible_iterator b/target/release/.fingerprint/fallible-iterator-15b199cebb28d6c1/dep-lib-fallible_iterator new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/fallible-iterator-15b199cebb28d6c1/dep-lib-fallible_iterator differ diff --git a/target/release/.fingerprint/fallible-iterator-15b199cebb28d6c1/invoked.timestamp b/target/release/.fingerprint/fallible-iterator-15b199cebb28d6c1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/fallible-iterator-15b199cebb28d6c1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/fallible-iterator-15b199cebb28d6c1/lib-fallible_iterator b/target/release/.fingerprint/fallible-iterator-15b199cebb28d6c1/lib-fallible_iterator new file mode 100644 index 0000000..d1cf062 --- /dev/null +++ b/target/release/.fingerprint/fallible-iterator-15b199cebb28d6c1/lib-fallible_iterator @@ -0,0 +1 @@ +d456f6008892a5b3 \ No newline at end of file diff --git a/target/release/.fingerprint/fallible-iterator-15b199cebb28d6c1/lib-fallible_iterator.json b/target/release/.fingerprint/fallible-iterator-15b199cebb28d6c1/lib-fallible_iterator.json new file mode 100644 index 0000000..3434a1d --- /dev/null +++ b/target/release/.fingerprint/fallible-iterator-15b199cebb28d6c1/lib-fallible_iterator.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"alloc\", \"default\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":15245709686714427328,"profile":2040997289075261528,"path":13406339924414620480,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/fallible-iterator-15b199cebb28d6c1/dep-lib-fallible_iterator","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/fallible-streaming-iterator-1ff04656bece776a/dep-lib-fallible_streaming_iterator b/target/release/.fingerprint/fallible-streaming-iterator-1ff04656bece776a/dep-lib-fallible_streaming_iterator new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/fallible-streaming-iterator-1ff04656bece776a/dep-lib-fallible_streaming_iterator differ diff --git a/target/release/.fingerprint/fallible-streaming-iterator-1ff04656bece776a/invoked.timestamp b/target/release/.fingerprint/fallible-streaming-iterator-1ff04656bece776a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/fallible-streaming-iterator-1ff04656bece776a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/fallible-streaming-iterator-1ff04656bece776a/lib-fallible_streaming_iterator b/target/release/.fingerprint/fallible-streaming-iterator-1ff04656bece776a/lib-fallible_streaming_iterator new file mode 100644 index 0000000..1b11ca3 --- /dev/null +++ b/target/release/.fingerprint/fallible-streaming-iterator-1ff04656bece776a/lib-fallible_streaming_iterator @@ -0,0 +1 @@ +c18d0f725674b176 \ No newline at end of file diff --git a/target/release/.fingerprint/fallible-streaming-iterator-1ff04656bece776a/lib-fallible_streaming_iterator.json b/target/release/.fingerprint/fallible-streaming-iterator-1ff04656bece776a/lib-fallible_streaming_iterator.json new file mode 100644 index 0000000..204ef3f --- /dev/null +++ b/target/release/.fingerprint/fallible-streaming-iterator-1ff04656bece776a/lib-fallible_streaming_iterator.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[\"std\"]","target":16001337131876932863,"profile":2040997289075261528,"path":8327759142290532649,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/fallible-streaming-iterator-1ff04656bece776a/dep-lib-fallible_streaming_iterator","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/glob-e856cfe6c7319a0b/dep-lib-glob b/target/release/.fingerprint/glob-e856cfe6c7319a0b/dep-lib-glob new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/glob-e856cfe6c7319a0b/dep-lib-glob differ diff --git a/target/release/.fingerprint/glob-e856cfe6c7319a0b/invoked.timestamp b/target/release/.fingerprint/glob-e856cfe6c7319a0b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/glob-e856cfe6c7319a0b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/glob-e856cfe6c7319a0b/lib-glob b/target/release/.fingerprint/glob-e856cfe6c7319a0b/lib-glob new file mode 100644 index 0000000..bbd1edb --- /dev/null +++ b/target/release/.fingerprint/glob-e856cfe6c7319a0b/lib-glob @@ -0,0 +1 @@ +2c7353d440477bd9 \ No newline at end of file diff --git a/target/release/.fingerprint/glob-e856cfe6c7319a0b/lib-glob.json b/target/release/.fingerprint/glob-e856cfe6c7319a0b/lib-glob.json new file mode 100644 index 0000000..5f67997 --- /dev/null +++ b/target/release/.fingerprint/glob-e856cfe6c7319a0b/lib-glob.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":205079002303639128,"profile":2040997289075261528,"path":11787632587264611547,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/glob-e856cfe6c7319a0b/dep-lib-glob","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/hashbrown-7defa6695f8987cc/dep-lib-hashbrown b/target/release/.fingerprint/hashbrown-7defa6695f8987cc/dep-lib-hashbrown new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/hashbrown-7defa6695f8987cc/dep-lib-hashbrown differ diff --git a/target/release/.fingerprint/hashbrown-7defa6695f8987cc/invoked.timestamp b/target/release/.fingerprint/hashbrown-7defa6695f8987cc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/hashbrown-7defa6695f8987cc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/hashbrown-7defa6695f8987cc/lib-hashbrown b/target/release/.fingerprint/hashbrown-7defa6695f8987cc/lib-hashbrown new file mode 100644 index 0000000..8aa229e --- /dev/null +++ b/target/release/.fingerprint/hashbrown-7defa6695f8987cc/lib-hashbrown @@ -0,0 +1 @@ +2e9e59e22ce20ccd \ No newline at end of file diff --git a/target/release/.fingerprint/hashbrown-7defa6695f8987cc/lib-hashbrown.json b/target/release/.fingerprint/hashbrown-7defa6695f8987cc/lib-hashbrown.json new file mode 100644 index 0000000..8903632 --- /dev/null +++ b/target/release/.fingerprint/hashbrown-7defa6695f8987cc/lib-hashbrown.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"ahash\", \"inline-more\"]","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":2040997289075261528,"path":5879867339797043585,"deps":[[966925859616469517,"ahash",false,15763198908952594780]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/hashbrown-7defa6695f8987cc/dep-lib-hashbrown","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/hashlink-8975b3c8bea7e34b/dep-lib-hashlink b/target/release/.fingerprint/hashlink-8975b3c8bea7e34b/dep-lib-hashlink new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/hashlink-8975b3c8bea7e34b/dep-lib-hashlink differ diff --git a/target/release/.fingerprint/hashlink-8975b3c8bea7e34b/invoked.timestamp b/target/release/.fingerprint/hashlink-8975b3c8bea7e34b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/hashlink-8975b3c8bea7e34b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/hashlink-8975b3c8bea7e34b/lib-hashlink b/target/release/.fingerprint/hashlink-8975b3c8bea7e34b/lib-hashlink new file mode 100644 index 0000000..2b9123d --- /dev/null +++ b/target/release/.fingerprint/hashlink-8975b3c8bea7e34b/lib-hashlink @@ -0,0 +1 @@ +74acf83f9d851c4e \ No newline at end of file diff --git a/target/release/.fingerprint/hashlink-8975b3c8bea7e34b/lib-hashlink.json b/target/release/.fingerprint/hashlink-8975b3c8bea7e34b/lib-hashlink.json new file mode 100644 index 0000000..6dc8bc7 --- /dev/null +++ b/target/release/.fingerprint/hashlink-8975b3c8bea7e34b/lib-hashlink.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[\"serde\", \"serde_impl\"]","target":3158588102652511467,"profile":2040997289075261528,"path":5800920533557961159,"deps":[[13018563866916002725,"hashbrown",false,14775433159899717166]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/hashlink-8975b3c8bea7e34b/dep-lib-hashlink","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/heck-06debb0d4d4774b1/dep-lib-heck b/target/release/.fingerprint/heck-06debb0d4d4774b1/dep-lib-heck new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/heck-06debb0d4d4774b1/dep-lib-heck differ diff --git a/target/release/.fingerprint/heck-06debb0d4d4774b1/invoked.timestamp b/target/release/.fingerprint/heck-06debb0d4d4774b1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/heck-06debb0d4d4774b1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/heck-06debb0d4d4774b1/lib-heck b/target/release/.fingerprint/heck-06debb0d4d4774b1/lib-heck new file mode 100644 index 0000000..a5a4897 --- /dev/null +++ b/target/release/.fingerprint/heck-06debb0d4d4774b1/lib-heck @@ -0,0 +1 @@ +2585128824560a5e \ No newline at end of file diff --git a/target/release/.fingerprint/heck-06debb0d4d4774b1/lib-heck.json b/target/release/.fingerprint/heck-06debb0d4d4774b1/lib-heck.json new file mode 100644 index 0000000..cbf5883 --- /dev/null +++ b/target/release/.fingerprint/heck-06debb0d4d4774b1/lib-heck.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":17886154901722686619,"profile":1369601567987815722,"path":15415727586008891514,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/heck-06debb0d4d4774b1/dep-lib-heck","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/is_terminal_polyfill-1c27b69067eead0f/dep-lib-is_terminal_polyfill b/target/release/.fingerprint/is_terminal_polyfill-1c27b69067eead0f/dep-lib-is_terminal_polyfill new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/is_terminal_polyfill-1c27b69067eead0f/dep-lib-is_terminal_polyfill differ diff --git a/target/release/.fingerprint/is_terminal_polyfill-1c27b69067eead0f/invoked.timestamp b/target/release/.fingerprint/is_terminal_polyfill-1c27b69067eead0f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/is_terminal_polyfill-1c27b69067eead0f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/is_terminal_polyfill-1c27b69067eead0f/lib-is_terminal_polyfill b/target/release/.fingerprint/is_terminal_polyfill-1c27b69067eead0f/lib-is_terminal_polyfill new file mode 100644 index 0000000..ac99c7d --- /dev/null +++ b/target/release/.fingerprint/is_terminal_polyfill-1c27b69067eead0f/lib-is_terminal_polyfill @@ -0,0 +1 @@ +47fee632750b6319 \ No newline at end of file diff --git a/target/release/.fingerprint/is_terminal_polyfill-1c27b69067eead0f/lib-is_terminal_polyfill.json b/target/release/.fingerprint/is_terminal_polyfill-1c27b69067eead0f/lib-is_terminal_polyfill.json new file mode 100644 index 0000000..90b0676 --- /dev/null +++ b/target/release/.fingerprint/is_terminal_polyfill-1c27b69067eead0f/lib-is_terminal_polyfill.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"default\"]","declared_features":"[\"default\"]","target":15126035666798347422,"profile":6822612167349743088,"path":14773073683451051172,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/is_terminal_polyfill-1c27b69067eead0f/dep-lib-is_terminal_polyfill","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/lazy_static-f91da618dd3f72e5/dep-lib-lazy_static b/target/release/.fingerprint/lazy_static-f91da618dd3f72e5/dep-lib-lazy_static new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/lazy_static-f91da618dd3f72e5/dep-lib-lazy_static differ diff --git a/target/release/.fingerprint/lazy_static-f91da618dd3f72e5/invoked.timestamp b/target/release/.fingerprint/lazy_static-f91da618dd3f72e5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/lazy_static-f91da618dd3f72e5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/lazy_static-f91da618dd3f72e5/lib-lazy_static b/target/release/.fingerprint/lazy_static-f91da618dd3f72e5/lib-lazy_static new file mode 100644 index 0000000..7a97968 --- /dev/null +++ b/target/release/.fingerprint/lazy_static-f91da618dd3f72e5/lib-lazy_static @@ -0,0 +1 @@ +d4040cff4e99ec42 \ No newline at end of file diff --git a/target/release/.fingerprint/lazy_static-f91da618dd3f72e5/lib-lazy_static.json b/target/release/.fingerprint/lazy_static-f91da618dd3f72e5/lib-lazy_static.json new file mode 100644 index 0000000..1a6a501 --- /dev/null +++ b/target/release/.fingerprint/lazy_static-f91da618dd3f72e5/lib-lazy_static.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[\"spin\", \"spin_no_std\"]","target":8659156474882058145,"profile":2040997289075261528,"path":12214699684132563462,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/lazy_static-f91da618dd3f72e5/dep-lib-lazy_static","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/libc-28883abc76ac857e/dep-lib-libc b/target/release/.fingerprint/libc-28883abc76ac857e/dep-lib-libc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/libc-28883abc76ac857e/dep-lib-libc differ diff --git a/target/release/.fingerprint/libc-28883abc76ac857e/invoked.timestamp b/target/release/.fingerprint/libc-28883abc76ac857e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/libc-28883abc76ac857e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/libc-28883abc76ac857e/lib-libc b/target/release/.fingerprint/libc-28883abc76ac857e/lib-libc new file mode 100644 index 0000000..bb758b6 --- /dev/null +++ b/target/release/.fingerprint/libc-28883abc76ac857e/lib-libc @@ -0,0 +1 @@ +db3b1532e0d67798 \ No newline at end of file diff --git a/target/release/.fingerprint/libc-28883abc76ac857e/lib-libc.json b/target/release/.fingerprint/libc-28883abc76ac857e/lib-libc.json new file mode 100644 index 0000000..4fda7d3 --- /dev/null +++ b/target/release/.fingerprint/libc-28883abc76ac857e/lib-libc.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"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":2040997289075261528,"path":11080028164507264302,"deps":[[2924422107542798392,"build_script_build",false,5377889110418177723]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/libc-28883abc76ac857e/dep-lib-libc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/libc-9ef9785ce2203439/run-build-script-build-script-build b/target/release/.fingerprint/libc-9ef9785ce2203439/run-build-script-build-script-build new file mode 100644 index 0000000..8e2f563 --- /dev/null +++ b/target/release/.fingerprint/libc-9ef9785ce2203439/run-build-script-build-script-build @@ -0,0 +1 @@ +bbbeea13a719a24a \ No newline at end of file diff --git a/target/release/.fingerprint/libc-9ef9785ce2203439/run-build-script-build-script-build.json b/target/release/.fingerprint/libc-9ef9785ce2203439/run-build-script-build-script-build.json new file mode 100644 index 0000000..2f42a27 --- /dev/null +++ b/target/release/.fingerprint/libc-9ef9785ce2203439/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[2924422107542798392,"build_script_build",false,3026164925586243271]],"local":[{"RerunIfChanged":{"output":"release/build/libc-9ef9785ce2203439/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/libc-ab559b7fa0ead692/build-script-build-script-build b/target/release/.fingerprint/libc-ab559b7fa0ead692/build-script-build-script-build new file mode 100644 index 0000000..26185e8 --- /dev/null +++ b/target/release/.fingerprint/libc-ab559b7fa0ead692/build-script-build-script-build @@ -0,0 +1 @@ +c77e506df718ff29 \ No newline at end of file diff --git a/target/release/.fingerprint/libc-ab559b7fa0ead692/build-script-build-script-build.json b/target/release/.fingerprint/libc-ab559b7fa0ead692/build-script-build-script-build.json new file mode 100644 index 0000000..379fad0 --- /dev/null +++ b/target/release/.fingerprint/libc-ab559b7fa0ead692/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"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":1369601567987815722,"path":9542864121736795230,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/libc-ab559b7fa0ead692/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/libc-ab559b7fa0ead692/dep-build-script-build-script-build b/target/release/.fingerprint/libc-ab559b7fa0ead692/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/libc-ab559b7fa0ead692/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/libc-ab559b7fa0ead692/invoked.timestamp b/target/release/.fingerprint/libc-ab559b7fa0ead692/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/libc-ab559b7fa0ead692/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/libsqlite3-sys-38970de9828b2349/dep-lib-libsqlite3_sys b/target/release/.fingerprint/libsqlite3-sys-38970de9828b2349/dep-lib-libsqlite3_sys new file mode 100644 index 0000000..06b8eef Binary files /dev/null and b/target/release/.fingerprint/libsqlite3-sys-38970de9828b2349/dep-lib-libsqlite3_sys differ diff --git a/target/release/.fingerprint/libsqlite3-sys-38970de9828b2349/invoked.timestamp b/target/release/.fingerprint/libsqlite3-sys-38970de9828b2349/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/libsqlite3-sys-38970de9828b2349/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/libsqlite3-sys-38970de9828b2349/lib-libsqlite3_sys b/target/release/.fingerprint/libsqlite3-sys-38970de9828b2349/lib-libsqlite3_sys new file mode 100644 index 0000000..3fba65b --- /dev/null +++ b/target/release/.fingerprint/libsqlite3-sys-38970de9828b2349/lib-libsqlite3_sys @@ -0,0 +1 @@ +10c3098cd387d18a \ No newline at end of file diff --git a/target/release/.fingerprint/libsqlite3-sys-38970de9828b2349/lib-libsqlite3_sys.json b/target/release/.fingerprint/libsqlite3-sys-38970de9828b2349/lib-libsqlite3_sys.json new file mode 100644 index 0000000..4bec881 --- /dev/null +++ b/target/release/.fingerprint/libsqlite3-sys-38970de9828b2349/lib-libsqlite3_sys.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"bundled\", \"bundled_bindings\", \"cc\", \"default\", \"min_sqlite_version_3_14_0\", \"pkg-config\", \"vcpkg\"]","declared_features":"[\"bindgen\", \"buildtime_bindgen\", \"bundled\", \"bundled-sqlcipher\", \"bundled-sqlcipher-vendored-openssl\", \"bundled-windows\", \"bundled_bindings\", \"cc\", \"default\", \"in_gecko\", \"loadable_extension\", \"min_sqlite_version_3_14_0\", \"openssl-sys\", \"pkg-config\", \"prettyplease\", \"preupdate_hook\", \"quote\", \"session\", \"sqlcipher\", \"syn\", \"unlock_notify\", \"vcpkg\", \"wasm32-wasi-vfs\", \"with-asan\"]","target":3421942236757206917,"profile":2040997289075261528,"path":6904997362036814243,"deps":[[9986166984836792091,"build_script_build",false,2098722164626801646]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/libsqlite3-sys-38970de9828b2349/dep-lib-libsqlite3_sys","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/libsqlite3-sys-aed1b7dff548c539/run-build-script-build-script-build b/target/release/.fingerprint/libsqlite3-sys-aed1b7dff548c539/run-build-script-build-script-build new file mode 100644 index 0000000..6a76218 --- /dev/null +++ b/target/release/.fingerprint/libsqlite3-sys-aed1b7dff548c539/run-build-script-build-script-build @@ -0,0 +1 @@ +eec3d170b028201d \ No newline at end of file diff --git a/target/release/.fingerprint/libsqlite3-sys-aed1b7dff548c539/run-build-script-build-script-build.json b/target/release/.fingerprint/libsqlite3-sys-aed1b7dff548c539/run-build-script-build-script-build.json new file mode 100644 index 0000000..19f1d6a --- /dev/null +++ b/target/release/.fingerprint/libsqlite3-sys-aed1b7dff548c539/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[9986166984836792091,"build_script_build",false,2531251518470573225]],"local":[{"RerunIfChanged":{"output":"release/build/libsqlite3-sys-aed1b7dff548c539/output","paths":["sqlite3/sqlite3.c","sqlite3/wasm32-wasi-vfs.c"]}},{"RerunIfEnvChanged":{"var":"LIBSQLITE3_SYS_USE_PKG_CONFIG","val":null}},{"RerunIfEnvChanged":{"var":"SQLITE_MAX_VARIABLE_NUMBER","val":null}},{"RerunIfEnvChanged":{"var":"SQLITE_MAX_EXPR_DEPTH","val":null}},{"RerunIfEnvChanged":{"var":"SQLITE_MAX_COLUMN","val":null}},{"RerunIfEnvChanged":{"var":"LIBSQLITE3_FLAGS","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":"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/target/release/.fingerprint/libsqlite3-sys-f62842305987c161/build-script-build-script-build b/target/release/.fingerprint/libsqlite3-sys-f62842305987c161/build-script-build-script-build new file mode 100644 index 0000000..f24c253 --- /dev/null +++ b/target/release/.fingerprint/libsqlite3-sys-f62842305987c161/build-script-build-script-build @@ -0,0 +1 @@ +a94c9b4bd8cf2023 \ No newline at end of file diff --git a/target/release/.fingerprint/libsqlite3-sys-f62842305987c161/build-script-build-script-build.json b/target/release/.fingerprint/libsqlite3-sys-f62842305987c161/build-script-build-script-build.json new file mode 100644 index 0000000..51c4be5 --- /dev/null +++ b/target/release/.fingerprint/libsqlite3-sys-f62842305987c161/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"bundled\", \"bundled_bindings\", \"cc\", \"default\", \"min_sqlite_version_3_14_0\", \"pkg-config\", \"vcpkg\"]","declared_features":"[\"bindgen\", \"buildtime_bindgen\", \"bundled\", \"bundled-sqlcipher\", \"bundled-sqlcipher-vendored-openssl\", \"bundled-windows\", \"bundled_bindings\", \"cc\", \"default\", \"in_gecko\", \"loadable_extension\", \"min_sqlite_version_3_14_0\", \"openssl-sys\", \"pkg-config\", \"prettyplease\", \"preupdate_hook\", \"quote\", \"session\", \"sqlcipher\", \"syn\", \"unlock_notify\", \"vcpkg\", \"wasm32-wasi-vfs\", \"with-asan\"]","target":5408242616063297496,"profile":1369601567987815722,"path":6147614781302022256,"deps":[[603660933955387504,"cc",false,3523012059269876915],[3214373357989284387,"pkg_config",false,15301450341439827205],[12933202132622624734,"vcpkg",false,6637105536183712604]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/libsqlite3-sys-f62842305987c161/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/libsqlite3-sys-f62842305987c161/dep-build-script-build-script-build b/target/release/.fingerprint/libsqlite3-sys-f62842305987c161/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/libsqlite3-sys-f62842305987c161/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/libsqlite3-sys-f62842305987c161/invoked.timestamp b/target/release/.fingerprint/libsqlite3-sys-f62842305987c161/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/libsqlite3-sys-f62842305987c161/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/log-323569b758259b9b/dep-lib-log b/target/release/.fingerprint/log-323569b758259b9b/dep-lib-log new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/log-323569b758259b9b/dep-lib-log differ diff --git a/target/release/.fingerprint/log-323569b758259b9b/invoked.timestamp b/target/release/.fingerprint/log-323569b758259b9b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/log-323569b758259b9b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/log-323569b758259b9b/lib-log b/target/release/.fingerprint/log-323569b758259b9b/lib-log new file mode 100644 index 0000000..e1ae8b0 --- /dev/null +++ b/target/release/.fingerprint/log-323569b758259b9b/lib-log @@ -0,0 +1 @@ +68ed001c4151ab4a \ No newline at end of file diff --git a/target/release/.fingerprint/log-323569b758259b9b/lib-log.json b/target/release/.fingerprint/log-323569b758259b9b/lib-log.json new file mode 100644 index 0000000..ba093ae --- /dev/null +++ b/target/release/.fingerprint/log-323569b758259b9b/lib-log.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"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\", \"std\", \"sval\", \"sval_ref\", \"value-bag\"]","target":6550155848337067049,"profile":2040997289075261528,"path":8747226772892963409,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/log-323569b758259b9b/dep-lib-log","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/marlin-634839a5e9cc4921/bin-marlin b/target/release/.fingerprint/marlin-634839a5e9cc4921/bin-marlin new file mode 100644 index 0000000..e3968e3 --- /dev/null +++ b/target/release/.fingerprint/marlin-634839a5e9cc4921/bin-marlin @@ -0,0 +1 @@ +885c93e5d7dcc32c \ No newline at end of file diff --git a/target/release/.fingerprint/marlin-634839a5e9cc4921/bin-marlin.json b/target/release/.fingerprint/marlin-634839a5e9cc4921/bin-marlin.json new file mode 100644 index 0000000..ff8b7e7 --- /dev/null +++ b/target/release/.fingerprint/marlin-634839a5e9cc4921/bin-marlin.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":11231084163139794023,"profile":2040997289075261528,"path":4942398508502643691,"deps":[[8606274917505247608,"tracing",false,231856011624696765],[13625485746686963219,"anyhow",false,4141387669743810832],[15299814984394074821,"rusqlite",false,14944962927072959781],[15622660310229662834,"walkdir",false,10621832926267965360],[16230660778393187092,"tracing_subscriber",false,4186456971351832017],[17155886227862585100,"glob",false,15671197672131490604],[17236266856776043413,"directories",false,415205815177997164],[17612818546626403359,"clap",false,8915347984520511202]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/marlin-634839a5e9cc4921/dep-bin-marlin","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/marlin-634839a5e9cc4921/dep-bin-marlin b/target/release/.fingerprint/marlin-634839a5e9cc4921/dep-bin-marlin new file mode 100644 index 0000000..de9e4c8 Binary files /dev/null and b/target/release/.fingerprint/marlin-634839a5e9cc4921/dep-bin-marlin differ diff --git a/target/release/.fingerprint/marlin-634839a5e9cc4921/invoked.timestamp b/target/release/.fingerprint/marlin-634839a5e9cc4921/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/marlin-634839a5e9cc4921/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/marlin-634839a5e9cc4921/output-bin-marlin b/target/release/.fingerprint/marlin-634839a5e9cc4921/output-bin-marlin new file mode 100644 index 0000000..a7ccba3 --- /dev/null +++ b/target/release/.fingerprint/marlin-634839a5e9cc4921/output-bin-marlin @@ -0,0 +1,2 @@ +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"src/db/mod.rs","byte_start":283,"byte_end":291,"line_start":10,"line_end":10,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" let mut conn = Connection::open(db_path)?;","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"src/db/mod.rs","byte_start":283,"byte_end":287,"line_start":10,"line_end":10,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut conn = Connection::open(db_path)?;","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/db/mod.rs:10:9\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m10\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m let mut conn = Connection::open(db_path)?;\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m----\u001b[0m\u001b[0m\u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12mhelp: remove this `mut`\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `#[warn(unused_mut)]` on by default\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[33mwarning\u001b[0m\u001b[0m\u001b[1m: 1 warning emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/matchers-f3b453967c4ace5b/dep-lib-matchers b/target/release/.fingerprint/matchers-f3b453967c4ace5b/dep-lib-matchers new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/matchers-f3b453967c4ace5b/dep-lib-matchers differ diff --git a/target/release/.fingerprint/matchers-f3b453967c4ace5b/invoked.timestamp b/target/release/.fingerprint/matchers-f3b453967c4ace5b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/matchers-f3b453967c4ace5b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/matchers-f3b453967c4ace5b/lib-matchers b/target/release/.fingerprint/matchers-f3b453967c4ace5b/lib-matchers new file mode 100644 index 0000000..ad14e54 --- /dev/null +++ b/target/release/.fingerprint/matchers-f3b453967c4ace5b/lib-matchers @@ -0,0 +1 @@ +93fd1131b67a11ec \ No newline at end of file diff --git a/target/release/.fingerprint/matchers-f3b453967c4ace5b/lib-matchers.json b/target/release/.fingerprint/matchers-f3b453967c4ace5b/lib-matchers.json new file mode 100644 index 0000000..6cf1493 --- /dev/null +++ b/target/release/.fingerprint/matchers-f3b453967c4ace5b/lib-matchers.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":3435209789245483737,"profile":2040997289075261528,"path":1136815157264675965,"deps":[[4322165641078463909,"regex_automata",false,5649002063068806362]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/matchers-f3b453967c4ace5b/dep-lib-matchers","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/nu-ansi-term-c42192675aa050dd/dep-lib-nu_ansi_term b/target/release/.fingerprint/nu-ansi-term-c42192675aa050dd/dep-lib-nu_ansi_term new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/nu-ansi-term-c42192675aa050dd/dep-lib-nu_ansi_term differ diff --git a/target/release/.fingerprint/nu-ansi-term-c42192675aa050dd/invoked.timestamp b/target/release/.fingerprint/nu-ansi-term-c42192675aa050dd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/nu-ansi-term-c42192675aa050dd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/nu-ansi-term-c42192675aa050dd/lib-nu_ansi_term b/target/release/.fingerprint/nu-ansi-term-c42192675aa050dd/lib-nu_ansi_term new file mode 100644 index 0000000..90c26b7 --- /dev/null +++ b/target/release/.fingerprint/nu-ansi-term-c42192675aa050dd/lib-nu_ansi_term @@ -0,0 +1 @@ +23c3b5e999baa4e8 \ No newline at end of file diff --git a/target/release/.fingerprint/nu-ansi-term-c42192675aa050dd/lib-nu_ansi_term.json b/target/release/.fingerprint/nu-ansi-term-c42192675aa050dd/lib-nu_ansi_term.json new file mode 100644 index 0000000..6bb32db --- /dev/null +++ b/target/release/.fingerprint/nu-ansi-term-c42192675aa050dd/lib-nu_ansi_term.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[\"derive_serde_style\", \"serde\"]","target":6750653021751799497,"profile":2040997289075261528,"path":1679999601372998249,"deps":[[9439046465659389995,"overload",false,13976763233930287386]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/nu-ansi-term-c42192675aa050dd/dep-lib-nu_ansi_term","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/once_cell-109e57aa4a9d42c0/dep-lib-once_cell b/target/release/.fingerprint/once_cell-109e57aa4a9d42c0/dep-lib-once_cell new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/once_cell-109e57aa4a9d42c0/dep-lib-once_cell differ diff --git a/target/release/.fingerprint/once_cell-109e57aa4a9d42c0/invoked.timestamp b/target/release/.fingerprint/once_cell-109e57aa4a9d42c0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/once_cell-109e57aa4a9d42c0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/once_cell-109e57aa4a9d42c0/lib-once_cell b/target/release/.fingerprint/once_cell-109e57aa4a9d42c0/lib-once_cell new file mode 100644 index 0000000..08972e4 --- /dev/null +++ b/target/release/.fingerprint/once_cell-109e57aa4a9d42c0/lib-once_cell @@ -0,0 +1 @@ +cdf27c95b08690eb \ No newline at end of file diff --git a/target/release/.fingerprint/once_cell-109e57aa4a9d42c0/lib-once_cell.json b/target/release/.fingerprint/once_cell-109e57aa4a9d42c0/lib-once_cell.json new file mode 100644 index 0000000..e643fcd --- /dev/null +++ b/target/release/.fingerprint/once_cell-109e57aa4a9d42c0/lib-once_cell.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"alloc\", \"default\", \"race\", \"std\"]","declared_features":"[\"alloc\", \"atomic-polyfill\", \"critical-section\", \"default\", \"parking_lot\", \"portable-atomic\", \"race\", \"std\", \"unstable\"]","target":17524666916136250164,"profile":2040997289075261528,"path":8358941787838410460,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/once_cell-109e57aa4a9d42c0/dep-lib-once_cell","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/option-ext-8c28fcc54e443152/dep-lib-option_ext b/target/release/.fingerprint/option-ext-8c28fcc54e443152/dep-lib-option_ext new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/option-ext-8c28fcc54e443152/dep-lib-option_ext differ diff --git a/target/release/.fingerprint/option-ext-8c28fcc54e443152/invoked.timestamp b/target/release/.fingerprint/option-ext-8c28fcc54e443152/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/option-ext-8c28fcc54e443152/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/option-ext-8c28fcc54e443152/lib-option_ext b/target/release/.fingerprint/option-ext-8c28fcc54e443152/lib-option_ext new file mode 100644 index 0000000..8e697a1 --- /dev/null +++ b/target/release/.fingerprint/option-ext-8c28fcc54e443152/lib-option_ext @@ -0,0 +1 @@ +cd3097073894e98e \ No newline at end of file diff --git a/target/release/.fingerprint/option-ext-8c28fcc54e443152/lib-option_ext.json b/target/release/.fingerprint/option-ext-8c28fcc54e443152/lib-option_ext.json new file mode 100644 index 0000000..24548e7 --- /dev/null +++ b/target/release/.fingerprint/option-ext-8c28fcc54e443152/lib-option_ext.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":17153617223804709240,"profile":2040997289075261528,"path":2724063177985257693,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/option-ext-8c28fcc54e443152/dep-lib-option_ext","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/overload-94fa3b5a5c6dc522/dep-lib-overload b/target/release/.fingerprint/overload-94fa3b5a5c6dc522/dep-lib-overload new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/overload-94fa3b5a5c6dc522/dep-lib-overload differ diff --git a/target/release/.fingerprint/overload-94fa3b5a5c6dc522/invoked.timestamp b/target/release/.fingerprint/overload-94fa3b5a5c6dc522/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/overload-94fa3b5a5c6dc522/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/overload-94fa3b5a5c6dc522/lib-overload b/target/release/.fingerprint/overload-94fa3b5a5c6dc522/lib-overload new file mode 100644 index 0000000..e9149bb --- /dev/null +++ b/target/release/.fingerprint/overload-94fa3b5a5c6dc522/lib-overload @@ -0,0 +1 @@ +1a9927f41b70f7c1 \ No newline at end of file diff --git a/target/release/.fingerprint/overload-94fa3b5a5c6dc522/lib-overload.json b/target/release/.fingerprint/overload-94fa3b5a5c6dc522/lib-overload.json new file mode 100644 index 0000000..7fc41fc --- /dev/null +++ b/target/release/.fingerprint/overload-94fa3b5a5c6dc522/lib-overload.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":15172315466741368323,"profile":2040997289075261528,"path":17653989092243775246,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/overload-94fa3b5a5c6dc522/dep-lib-overload","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/pin-project-lite-1fa7cdba4ce9f504/dep-lib-pin_project_lite b/target/release/.fingerprint/pin-project-lite-1fa7cdba4ce9f504/dep-lib-pin_project_lite new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/pin-project-lite-1fa7cdba4ce9f504/dep-lib-pin_project_lite differ diff --git a/target/release/.fingerprint/pin-project-lite-1fa7cdba4ce9f504/invoked.timestamp b/target/release/.fingerprint/pin-project-lite-1fa7cdba4ce9f504/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/pin-project-lite-1fa7cdba4ce9f504/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/pin-project-lite-1fa7cdba4ce9f504/lib-pin_project_lite b/target/release/.fingerprint/pin-project-lite-1fa7cdba4ce9f504/lib-pin_project_lite new file mode 100644 index 0000000..84f641b --- /dev/null +++ b/target/release/.fingerprint/pin-project-lite-1fa7cdba4ce9f504/lib-pin_project_lite @@ -0,0 +1 @@ +ec822b1b1299398b \ No newline at end of file diff --git a/target/release/.fingerprint/pin-project-lite-1fa7cdba4ce9f504/lib-pin_project_lite.json b/target/release/.fingerprint/pin-project-lite-1fa7cdba4ce9f504/lib-pin_project_lite.json new file mode 100644 index 0000000..9edcb60 --- /dev/null +++ b/target/release/.fingerprint/pin-project-lite-1fa7cdba4ce9f504/lib-pin_project_lite.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":7529200858990304138,"profile":10149259270356951432,"path":9982677318068386141,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/pin-project-lite-1fa7cdba4ce9f504/dep-lib-pin_project_lite","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/pkg-config-c6d62bb11f7b3580/dep-lib-pkg_config b/target/release/.fingerprint/pkg-config-c6d62bb11f7b3580/dep-lib-pkg_config new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/pkg-config-c6d62bb11f7b3580/dep-lib-pkg_config differ diff --git a/target/release/.fingerprint/pkg-config-c6d62bb11f7b3580/invoked.timestamp b/target/release/.fingerprint/pkg-config-c6d62bb11f7b3580/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/pkg-config-c6d62bb11f7b3580/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/pkg-config-c6d62bb11f7b3580/lib-pkg_config b/target/release/.fingerprint/pkg-config-c6d62bb11f7b3580/lib-pkg_config new file mode 100644 index 0000000..1cfa487 --- /dev/null +++ b/target/release/.fingerprint/pkg-config-c6d62bb11f7b3580/lib-pkg_config @@ -0,0 +1 @@ +05edccd503ac59d4 \ No newline at end of file diff --git a/target/release/.fingerprint/pkg-config-c6d62bb11f7b3580/lib-pkg_config.json b/target/release/.fingerprint/pkg-config-c6d62bb11f7b3580/lib-pkg_config.json new file mode 100644 index 0000000..c9468a2 --- /dev/null +++ b/target/release/.fingerprint/pkg-config-c6d62bb11f7b3580/lib-pkg_config.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":4588055084852603002,"profile":1369601567987815722,"path":12492219672538192291,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/pkg-config-c6d62bb11f7b3580/dep-lib-pkg_config","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-475c00bc4da0cbec/run-build-script-build-script-build b/target/release/.fingerprint/proc-macro2-475c00bc4da0cbec/run-build-script-build-script-build new file mode 100644 index 0000000..27354c1 --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-475c00bc4da0cbec/run-build-script-build-script-build @@ -0,0 +1 @@ +111540453b33f4be \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-475c00bc4da0cbec/run-build-script-build-script-build.json b/target/release/.fingerprint/proc-macro2-475c00bc4da0cbec/run-build-script-build-script-build.json new file mode 100644 index 0000000..e79f2ac --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-475c00bc4da0cbec/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[3060637413840920116,"build_script_build",false,10050066889214462001]],"local":[{"RerunIfChanged":{"output":"release/build/proc-macro2-475c00bc4da0cbec/output","paths":["build/probe.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-bbfcd600545c0d42/build-script-build-script-build b/target/release/.fingerprint/proc-macro2-bbfcd600545c0d42/build-script-build-script-build new file mode 100644 index 0000000..28e3ee9 --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-bbfcd600545c0d42/build-script-build-script-build @@ -0,0 +1 @@ +31088b949602798b \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-bbfcd600545c0d42/build-script-build-script-build.json b/target/release/.fingerprint/proc-macro2-bbfcd600545c0d42/build-script-build-script-build.json new file mode 100644 index 0000000..b7ce789 --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-bbfcd600545c0d42/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":5408242616063297496,"profile":1369601567987815722,"path":7264888834690448728,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro2-bbfcd600545c0d42/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-bbfcd600545c0d42/dep-build-script-build-script-build b/target/release/.fingerprint/proc-macro2-bbfcd600545c0d42/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/proc-macro2-bbfcd600545c0d42/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/proc-macro2-bbfcd600545c0d42/invoked.timestamp b/target/release/.fingerprint/proc-macro2-bbfcd600545c0d42/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-bbfcd600545c0d42/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-da36b031605c1ddc/dep-lib-proc_macro2 b/target/release/.fingerprint/proc-macro2-da36b031605c1ddc/dep-lib-proc_macro2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/proc-macro2-da36b031605c1ddc/dep-lib-proc_macro2 differ diff --git a/target/release/.fingerprint/proc-macro2-da36b031605c1ddc/invoked.timestamp b/target/release/.fingerprint/proc-macro2-da36b031605c1ddc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-da36b031605c1ddc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-da36b031605c1ddc/lib-proc_macro2 b/target/release/.fingerprint/proc-macro2-da36b031605c1ddc/lib-proc_macro2 new file mode 100644 index 0000000..bd69f58 --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-da36b031605c1ddc/lib-proc_macro2 @@ -0,0 +1 @@ +4780288969de1890 \ No newline at end of file diff --git a/target/release/.fingerprint/proc-macro2-da36b031605c1ddc/lib-proc_macro2.json b/target/release/.fingerprint/proc-macro2-da36b031605c1ddc/lib-proc_macro2.json new file mode 100644 index 0000000..2da1aae --- /dev/null +++ b/target/release/.fingerprint/proc-macro2-da36b031605c1ddc/lib-proc_macro2.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":369203346396300798,"profile":1369601567987815722,"path":9130122189997694748,"deps":[[1988483478007900009,"unicode_ident",false,14281792075506225790],[3060637413840920116,"build_script_build",false,13759679091181622545]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro2-da36b031605c1ddc/dep-lib-proc_macro2","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/quote-21aeee0f329238fb/dep-lib-quote b/target/release/.fingerprint/quote-21aeee0f329238fb/dep-lib-quote new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/quote-21aeee0f329238fb/dep-lib-quote differ diff --git a/target/release/.fingerprint/quote-21aeee0f329238fb/invoked.timestamp b/target/release/.fingerprint/quote-21aeee0f329238fb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/quote-21aeee0f329238fb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/quote-21aeee0f329238fb/lib-quote b/target/release/.fingerprint/quote-21aeee0f329238fb/lib-quote new file mode 100644 index 0000000..92f4fc6 --- /dev/null +++ b/target/release/.fingerprint/quote-21aeee0f329238fb/lib-quote @@ -0,0 +1 @@ +3d14cf8fa66f93fe \ No newline at end of file diff --git a/target/release/.fingerprint/quote-21aeee0f329238fb/lib-quote.json b/target/release/.fingerprint/quote-21aeee0f329238fb/lib-quote.json new file mode 100644 index 0000000..2b24731 --- /dev/null +++ b/target/release/.fingerprint/quote-21aeee0f329238fb/lib-quote.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":3570458776599611685,"profile":1369601567987815722,"path":17954717268996290055,"deps":[[3060637413840920116,"proc_macro2",false,10383293485756743751]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/quote-21aeee0f329238fb/dep-lib-quote","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/regex-05939fcd75661170/dep-lib-regex b/target/release/.fingerprint/regex-05939fcd75661170/dep-lib-regex new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/regex-05939fcd75661170/dep-lib-regex differ diff --git a/target/release/.fingerprint/regex-05939fcd75661170/invoked.timestamp b/target/release/.fingerprint/regex-05939fcd75661170/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/regex-05939fcd75661170/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/regex-05939fcd75661170/lib-regex b/target/release/.fingerprint/regex-05939fcd75661170/lib-regex new file mode 100644 index 0000000..8e5f3fc --- /dev/null +++ b/target/release/.fingerprint/regex-05939fcd75661170/lib-regex @@ -0,0 +1 @@ +45e8c28c90fa220b \ No newline at end of file diff --git a/target/release/.fingerprint/regex-05939fcd75661170/lib-regex.json b/target/release/.fingerprint/regex-05939fcd75661170/lib-regex.json new file mode 100644 index 0000000..94a1eb2 --- /dev/null +++ b/target/release/.fingerprint/regex-05939fcd75661170/lib-regex.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"std\", \"unicode-case\", \"unicode-perl\"]","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":2040997289075261528,"path":2478883369138598978,"deps":[[555019317135488525,"regex_automata",false,8416940012638233711],[9408802513701742484,"regex_syntax",false,3376125886953302231]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/regex-05939fcd75661170/dep-lib-regex","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/regex-automata-0936a2775daea9d6/dep-lib-regex_automata b/target/release/.fingerprint/regex-automata-0936a2775daea9d6/dep-lib-regex_automata new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/regex-automata-0936a2775daea9d6/dep-lib-regex_automata differ diff --git a/target/release/.fingerprint/regex-automata-0936a2775daea9d6/invoked.timestamp b/target/release/.fingerprint/regex-automata-0936a2775daea9d6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/regex-automata-0936a2775daea9d6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/regex-automata-0936a2775daea9d6/lib-regex_automata b/target/release/.fingerprint/regex-automata-0936a2775daea9d6/lib-regex_automata new file mode 100644 index 0000000..51d4d46 --- /dev/null +++ b/target/release/.fingerprint/regex-automata-0936a2775daea9d6/lib-regex_automata @@ -0,0 +1 @@ +6fe412bd58face74 \ No newline at end of file diff --git a/target/release/.fingerprint/regex-automata-0936a2775daea9d6/lib-regex_automata.json b/target/release/.fingerprint/regex-automata-0936a2775daea9d6/lib-regex_automata.json new file mode 100644 index 0000000..bf32014 --- /dev/null +++ b/target/release/.fingerprint/regex-automata-0936a2775daea9d6/lib-regex_automata.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"alloc\", \"meta\", \"nfa-pikevm\", \"nfa-thompson\", \"std\", \"syntax\", \"unicode-case\", \"unicode-perl\", \"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":2040997289075261528,"path":14560668240816838616,"deps":[[9408802513701742484,"regex_syntax",false,3376125886953302231]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/regex-automata-0936a2775daea9d6/dep-lib-regex_automata","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/regex-automata-36c17437fa6ac77d/dep-lib-regex_automata b/target/release/.fingerprint/regex-automata-36c17437fa6ac77d/dep-lib-regex_automata new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/regex-automata-36c17437fa6ac77d/dep-lib-regex_automata differ diff --git a/target/release/.fingerprint/regex-automata-36c17437fa6ac77d/invoked.timestamp b/target/release/.fingerprint/regex-automata-36c17437fa6ac77d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/regex-automata-36c17437fa6ac77d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/regex-automata-36c17437fa6ac77d/lib-regex_automata b/target/release/.fingerprint/regex-automata-36c17437fa6ac77d/lib-regex_automata new file mode 100644 index 0000000..500a9f4 --- /dev/null +++ b/target/release/.fingerprint/regex-automata-36c17437fa6ac77d/lib-regex_automata @@ -0,0 +1 @@ +da3caa587249654e \ No newline at end of file diff --git a/target/release/.fingerprint/regex-automata-36c17437fa6ac77d/lib-regex_automata.json b/target/release/.fingerprint/regex-automata-36c17437fa6ac77d/lib-regex_automata.json new file mode 100644 index 0000000..d254bc9 --- /dev/null +++ b/target/release/.fingerprint/regex-automata-36c17437fa6ac77d/lib-regex_automata.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"default\", \"regex-syntax\", \"std\"]","declared_features":"[\"default\", \"fst\", \"regex-syntax\", \"std\", \"transducer\"]","target":189779444668410301,"profile":2040997289075261528,"path":8084408560356701127,"deps":[[7982432068776955834,"regex_syntax",false,4135468418999755438]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/regex-automata-36c17437fa6ac77d/dep-lib-regex_automata","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/regex-syntax-278fc833d6e378c8/dep-lib-regex_syntax b/target/release/.fingerprint/regex-syntax-278fc833d6e378c8/dep-lib-regex_syntax new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/regex-syntax-278fc833d6e378c8/dep-lib-regex_syntax differ diff --git a/target/release/.fingerprint/regex-syntax-278fc833d6e378c8/invoked.timestamp b/target/release/.fingerprint/regex-syntax-278fc833d6e378c8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/regex-syntax-278fc833d6e378c8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/regex-syntax-278fc833d6e378c8/lib-regex_syntax b/target/release/.fingerprint/regex-syntax-278fc833d6e378c8/lib-regex_syntax new file mode 100644 index 0000000..b125d55 --- /dev/null +++ b/target/release/.fingerprint/regex-syntax-278fc833d6e378c8/lib-regex_syntax @@ -0,0 +1 @@ +aea253ce9d226439 \ No newline at end of file diff --git a/target/release/.fingerprint/regex-syntax-278fc833d6e378c8/lib-regex_syntax.json b/target/release/.fingerprint/regex-syntax-278fc833d6e378c8/lib-regex_syntax.json new file mode 100644 index 0000000..c570935 --- /dev/null +++ b/target/release/.fingerprint/regex-syntax-278fc833d6e378c8/lib-regex_syntax.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"default\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","declared_features":"[\"default\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","target":7529137146482485884,"profile":2040997289075261528,"path":18411493022340162106,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/regex-syntax-278fc833d6e378c8/dep-lib-regex_syntax","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/regex-syntax-9c0764dd3734bc10/dep-lib-regex_syntax b/target/release/.fingerprint/regex-syntax-9c0764dd3734bc10/dep-lib-regex_syntax new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/regex-syntax-9c0764dd3734bc10/dep-lib-regex_syntax differ diff --git a/target/release/.fingerprint/regex-syntax-9c0764dd3734bc10/invoked.timestamp b/target/release/.fingerprint/regex-syntax-9c0764dd3734bc10/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/regex-syntax-9c0764dd3734bc10/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/regex-syntax-9c0764dd3734bc10/lib-regex_syntax b/target/release/.fingerprint/regex-syntax-9c0764dd3734bc10/lib-regex_syntax new file mode 100644 index 0000000..1b444c3 --- /dev/null +++ b/target/release/.fingerprint/regex-syntax-9c0764dd3734bc10/lib-regex_syntax @@ -0,0 +1 @@ +d728da509b68da2e \ No newline at end of file diff --git a/target/release/.fingerprint/regex-syntax-9c0764dd3734bc10/lib-regex_syntax.json b/target/release/.fingerprint/regex-syntax-9c0764dd3734bc10/lib-regex_syntax.json new file mode 100644 index 0000000..9020122 --- /dev/null +++ b/target/release/.fingerprint/regex-syntax-9c0764dd3734bc10/lib-regex_syntax.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"std\", \"unicode-case\", \"unicode-perl\"]","declared_features":"[\"arbitrary\", \"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","target":742186494246220192,"profile":2040997289075261528,"path":8768593236070018123,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/regex-syntax-9c0764dd3734bc10/dep-lib-regex_syntax","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/rusqlite-6466f1598a85e8fc/dep-lib-rusqlite b/target/release/.fingerprint/rusqlite-6466f1598a85e8fc/dep-lib-rusqlite new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/rusqlite-6466f1598a85e8fc/dep-lib-rusqlite differ diff --git a/target/release/.fingerprint/rusqlite-6466f1598a85e8fc/invoked.timestamp b/target/release/.fingerprint/rusqlite-6466f1598a85e8fc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/rusqlite-6466f1598a85e8fc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/rusqlite-6466f1598a85e8fc/lib-rusqlite b/target/release/.fingerprint/rusqlite-6466f1598a85e8fc/lib-rusqlite new file mode 100644 index 0000000..ef88e5f --- /dev/null +++ b/target/release/.fingerprint/rusqlite-6466f1598a85e8fc/lib-rusqlite @@ -0,0 +1 @@ +25dd90b1992c67cf \ No newline at end of file diff --git a/target/release/.fingerprint/rusqlite-6466f1598a85e8fc/lib-rusqlite.json b/target/release/.fingerprint/rusqlite-6466f1598a85e8fc/lib-rusqlite.json new file mode 100644 index 0000000..17b0914 --- /dev/null +++ b/target/release/.fingerprint/rusqlite-6466f1598a85e8fc/lib-rusqlite.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"bundled\", \"modern_sqlite\"]","declared_features":"[\"array\", \"backup\", \"blob\", \"buildtime_bindgen\", \"bundled\", \"bundled-full\", \"bundled-sqlcipher\", \"bundled-sqlcipher-vendored-openssl\", \"bundled-windows\", \"chrono\", \"collation\", \"column_decltype\", \"csv\", \"csvtab\", \"extra_check\", \"functions\", \"hooks\", \"i128_blob\", \"in_gecko\", \"limits\", \"load_extension\", \"loadable_extension\", \"modern-full\", \"modern_sqlite\", \"release_memory\", \"rusqlite-macros\", \"serde_json\", \"serialize\", \"series\", \"session\", \"sqlcipher\", \"time\", \"trace\", \"unlock_notify\", \"url\", \"uuid\", \"vtab\", \"wasm32-wasi-vfs\", \"window\", \"with-asan\"]","target":10662205063260755052,"profile":2040997289075261528,"path":402185755359498904,"deps":[[3056352129074654578,"hashlink",false,5628520544735898740],[5510864063823219921,"fallible_streaming_iterator",false,8552745081982913985],[6048213226671835012,"smallvec",false,13040686971658754908],[6166349630582887940,"bitflags",false,10135884282368686019],[9986166984836792091,"libsqlite3_sys",false,10002925590023881488],[12860549049674006569,"fallible_iterator",false,12944913816775710420]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/rusqlite-6466f1598a85e8fc/dep-lib-rusqlite","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/same-file-fc3f371f398801a0/dep-lib-same_file b/target/release/.fingerprint/same-file-fc3f371f398801a0/dep-lib-same_file new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/same-file-fc3f371f398801a0/dep-lib-same_file differ diff --git a/target/release/.fingerprint/same-file-fc3f371f398801a0/invoked.timestamp b/target/release/.fingerprint/same-file-fc3f371f398801a0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/same-file-fc3f371f398801a0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/same-file-fc3f371f398801a0/lib-same_file b/target/release/.fingerprint/same-file-fc3f371f398801a0/lib-same_file new file mode 100644 index 0000000..11d8849 --- /dev/null +++ b/target/release/.fingerprint/same-file-fc3f371f398801a0/lib-same_file @@ -0,0 +1 @@ +5c53c2bdfd66f351 \ No newline at end of file diff --git a/target/release/.fingerprint/same-file-fc3f371f398801a0/lib-same_file.json b/target/release/.fingerprint/same-file-fc3f371f398801a0/lib-same_file.json new file mode 100644 index 0000000..2dd0fb3 --- /dev/null +++ b/target/release/.fingerprint/same-file-fc3f371f398801a0/lib-same_file.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":5850851708384281287,"profile":2040997289075261528,"path":1166879419955480027,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/same-file-fc3f371f398801a0/dep-lib-same_file","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/sharded-slab-b9545388d9527f67/dep-lib-sharded_slab b/target/release/.fingerprint/sharded-slab-b9545388d9527f67/dep-lib-sharded_slab new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/sharded-slab-b9545388d9527f67/dep-lib-sharded_slab differ diff --git a/target/release/.fingerprint/sharded-slab-b9545388d9527f67/invoked.timestamp b/target/release/.fingerprint/sharded-slab-b9545388d9527f67/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/sharded-slab-b9545388d9527f67/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/sharded-slab-b9545388d9527f67/lib-sharded_slab b/target/release/.fingerprint/sharded-slab-b9545388d9527f67/lib-sharded_slab new file mode 100644 index 0000000..af0b37a --- /dev/null +++ b/target/release/.fingerprint/sharded-slab-b9545388d9527f67/lib-sharded_slab @@ -0,0 +1 @@ +8423c259e26e24fb \ No newline at end of file diff --git a/target/release/.fingerprint/sharded-slab-b9545388d9527f67/lib-sharded_slab.json b/target/release/.fingerprint/sharded-slab-b9545388d9527f67/lib-sharded_slab.json new file mode 100644 index 0000000..718b3a7 --- /dev/null +++ b/target/release/.fingerprint/sharded-slab-b9545388d9527f67/lib-sharded_slab.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[\"loom\"]","target":12629115416767553567,"profile":2040997289075261528,"path":14157910318677299963,"deps":[[17917672826516349275,"lazy_static",false,4822397865572435156]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/sharded-slab-b9545388d9527f67/dep-lib-sharded_slab","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/shlex-3f4d9a7f242aae72/dep-lib-shlex b/target/release/.fingerprint/shlex-3f4d9a7f242aae72/dep-lib-shlex new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/shlex-3f4d9a7f242aae72/dep-lib-shlex differ diff --git a/target/release/.fingerprint/shlex-3f4d9a7f242aae72/invoked.timestamp b/target/release/.fingerprint/shlex-3f4d9a7f242aae72/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/shlex-3f4d9a7f242aae72/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/shlex-3f4d9a7f242aae72/lib-shlex b/target/release/.fingerprint/shlex-3f4d9a7f242aae72/lib-shlex new file mode 100644 index 0000000..3689948 --- /dev/null +++ b/target/release/.fingerprint/shlex-3f4d9a7f242aae72/lib-shlex @@ -0,0 +1 @@ +bd63190372519d8e \ No newline at end of file diff --git a/target/release/.fingerprint/shlex-3f4d9a7f242aae72/lib-shlex.json b/target/release/.fingerprint/shlex-3f4d9a7f242aae72/lib-shlex.json new file mode 100644 index 0000000..4fd786c --- /dev/null +++ b/target/release/.fingerprint/shlex-3f4d9a7f242aae72/lib-shlex.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":929485496544747924,"profile":1369601567987815722,"path":7843192093052270098,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/shlex-3f4d9a7f242aae72/dep-lib-shlex","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/smallvec-e6c5ff3af311c91d/dep-lib-smallvec b/target/release/.fingerprint/smallvec-e6c5ff3af311c91d/dep-lib-smallvec new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/smallvec-e6c5ff3af311c91d/dep-lib-smallvec differ diff --git a/target/release/.fingerprint/smallvec-e6c5ff3af311c91d/invoked.timestamp b/target/release/.fingerprint/smallvec-e6c5ff3af311c91d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/smallvec-e6c5ff3af311c91d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/smallvec-e6c5ff3af311c91d/lib-smallvec b/target/release/.fingerprint/smallvec-e6c5ff3af311c91d/lib-smallvec new file mode 100644 index 0000000..1749017 --- /dev/null +++ b/target/release/.fingerprint/smallvec-e6c5ff3af311c91d/lib-smallvec @@ -0,0 +1 @@ +5cdbc84cb5d3f9b4 \ No newline at end of file diff --git a/target/release/.fingerprint/smallvec-e6c5ff3af311c91d/lib-smallvec.json b/target/release/.fingerprint/smallvec-e6c5ff3af311c91d/lib-smallvec.json new file mode 100644 index 0000000..77e4896 --- /dev/null +++ b/target/release/.fingerprint/smallvec-e6c5ff3af311c91d/lib-smallvec.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","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":2040997289075261528,"path":10784609811075818211,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/smallvec-e6c5ff3af311c91d/dep-lib-smallvec","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/strsim-aff96e3b8811a5dc/dep-lib-strsim b/target/release/.fingerprint/strsim-aff96e3b8811a5dc/dep-lib-strsim new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/strsim-aff96e3b8811a5dc/dep-lib-strsim differ diff --git a/target/release/.fingerprint/strsim-aff96e3b8811a5dc/invoked.timestamp b/target/release/.fingerprint/strsim-aff96e3b8811a5dc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/strsim-aff96e3b8811a5dc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/strsim-aff96e3b8811a5dc/lib-strsim b/target/release/.fingerprint/strsim-aff96e3b8811a5dc/lib-strsim new file mode 100644 index 0000000..9cc39b1 --- /dev/null +++ b/target/release/.fingerprint/strsim-aff96e3b8811a5dc/lib-strsim @@ -0,0 +1 @@ +53afe271a906978e \ No newline at end of file diff --git a/target/release/.fingerprint/strsim-aff96e3b8811a5dc/lib-strsim.json b/target/release/.fingerprint/strsim-aff96e3b8811a5dc/lib-strsim.json new file mode 100644 index 0000000..59bc3a0 --- /dev/null +++ b/target/release/.fingerprint/strsim-aff96e3b8811a5dc/lib-strsim.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":14520901741915772287,"profile":2040997289075261528,"path":9342497242864002324,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/strsim-aff96e3b8811a5dc/dep-lib-strsim","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/syn-6756b4a38928df5c/dep-lib-syn b/target/release/.fingerprint/syn-6756b4a38928df5c/dep-lib-syn new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/syn-6756b4a38928df5c/dep-lib-syn differ diff --git a/target/release/.fingerprint/syn-6756b4a38928df5c/invoked.timestamp b/target/release/.fingerprint/syn-6756b4a38928df5c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/syn-6756b4a38928df5c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/syn-6756b4a38928df5c/lib-syn b/target/release/.fingerprint/syn-6756b4a38928df5c/lib-syn new file mode 100644 index 0000000..5a9d41b --- /dev/null +++ b/target/release/.fingerprint/syn-6756b4a38928df5c/lib-syn @@ -0,0 +1 @@ +d05d3cd7ea51a4d5 \ No newline at end of file diff --git a/target/release/.fingerprint/syn-6756b4a38928df5c/lib-syn.json b/target/release/.fingerprint/syn-6756b4a38928df5c/lib-syn.json new file mode 100644 index 0000000..6773f8f --- /dev/null +++ b/target/release/.fingerprint/syn-6756b4a38928df5c/lib-syn.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"visit-mut\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"test\", \"visit\", \"visit-mut\"]","target":9442126953582868550,"profile":1369601567987815722,"path":13891244618182624159,"deps":[[1988483478007900009,"unicode_ident",false,14281792075506225790],[3060637413840920116,"proc_macro2",false,10383293485756743751],[17990358020177143287,"quote",false,18344128468378129469]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/syn-6756b4a38928df5c/dep-lib-syn","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/thread_local-54e9a92d4c4727cd/dep-lib-thread_local b/target/release/.fingerprint/thread_local-54e9a92d4c4727cd/dep-lib-thread_local new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/thread_local-54e9a92d4c4727cd/dep-lib-thread_local differ diff --git a/target/release/.fingerprint/thread_local-54e9a92d4c4727cd/invoked.timestamp b/target/release/.fingerprint/thread_local-54e9a92d4c4727cd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/thread_local-54e9a92d4c4727cd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/thread_local-54e9a92d4c4727cd/lib-thread_local b/target/release/.fingerprint/thread_local-54e9a92d4c4727cd/lib-thread_local new file mode 100644 index 0000000..504ab10 --- /dev/null +++ b/target/release/.fingerprint/thread_local-54e9a92d4c4727cd/lib-thread_local @@ -0,0 +1 @@ +8c973c4541b83fe8 \ No newline at end of file diff --git a/target/release/.fingerprint/thread_local-54e9a92d4c4727cd/lib-thread_local.json b/target/release/.fingerprint/thread_local-54e9a92d4c4727cd/lib-thread_local.json new file mode 100644 index 0000000..d27bbf1 --- /dev/null +++ b/target/release/.fingerprint/thread_local-54e9a92d4c4727cd/lib-thread_local.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[\"nightly\"]","target":9592561222065884489,"profile":2040997289075261528,"path":17530391594280073885,"deps":[[3722963349756955755,"once_cell",false,16974215088539759309],[10411997081178400487,"cfg_if",false,12340485484065969001]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/thread_local-54e9a92d4c4727cd/dep-lib-thread_local","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/tracing-attributes-ec7d429034764125/dep-lib-tracing_attributes b/target/release/.fingerprint/tracing-attributes-ec7d429034764125/dep-lib-tracing_attributes new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/tracing-attributes-ec7d429034764125/dep-lib-tracing_attributes differ diff --git a/target/release/.fingerprint/tracing-attributes-ec7d429034764125/invoked.timestamp b/target/release/.fingerprint/tracing-attributes-ec7d429034764125/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/tracing-attributes-ec7d429034764125/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/tracing-attributes-ec7d429034764125/lib-tracing_attributes b/target/release/.fingerprint/tracing-attributes-ec7d429034764125/lib-tracing_attributes new file mode 100644 index 0000000..b76f2db --- /dev/null +++ b/target/release/.fingerprint/tracing-attributes-ec7d429034764125/lib-tracing_attributes @@ -0,0 +1 @@ +a8d7e31381f1a28e \ No newline at end of file diff --git a/target/release/.fingerprint/tracing-attributes-ec7d429034764125/lib-tracing_attributes.json b/target/release/.fingerprint/tracing-attributes-ec7d429034764125/lib-tracing_attributes.json new file mode 100644 index 0000000..d68c661 --- /dev/null +++ b/target/release/.fingerprint/tracing-attributes-ec7d429034764125/lib-tracing_attributes.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[\"async-await\"]","target":8647784244936583625,"profile":7919881607709858648,"path":7262298653938114005,"deps":[[3060637413840920116,"proc_macro2",false,10383293485756743751],[17990358020177143287,"quote",false,18344128468378129469],[18149961000318489080,"syn",false,15394519495334452688]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/tracing-attributes-ec7d429034764125/dep-lib-tracing_attributes","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/tracing-b66cda8937eb421a/dep-lib-tracing b/target/release/.fingerprint/tracing-b66cda8937eb421a/dep-lib-tracing new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/tracing-b66cda8937eb421a/dep-lib-tracing differ diff --git a/target/release/.fingerprint/tracing-b66cda8937eb421a/invoked.timestamp b/target/release/.fingerprint/tracing-b66cda8937eb421a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/tracing-b66cda8937eb421a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/tracing-b66cda8937eb421a/lib-tracing b/target/release/.fingerprint/tracing-b66cda8937eb421a/lib-tracing new file mode 100644 index 0000000..015d0ca --- /dev/null +++ b/target/release/.fingerprint/tracing-b66cda8937eb421a/lib-tracing @@ -0,0 +1 @@ +bdcbed6bd0b73703 \ No newline at end of file diff --git a/target/release/.fingerprint/tracing-b66cda8937eb421a/lib-tracing.json b/target/release/.fingerprint/tracing-b66cda8937eb421a/lib-tracing.json new file mode 100644 index 0000000..5093b38 --- /dev/null +++ b/target/release/.fingerprint/tracing-b66cda8937eb421a/lib-tracing.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"attributes\", \"default\", \"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":10369491684090452477,"path":17245286711870371801,"deps":[[1906322745568073236,"pin_project_lite",false,10032217947988787948],[2967683870285097694,"tracing_attributes",false,10278042836299667368],[11033263105862272874,"tracing_core",false,10515411938690524684]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/tracing-b66cda8937eb421a/dep-lib-tracing","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/tracing-core-9195eaccc1cbbd86/dep-lib-tracing_core b/target/release/.fingerprint/tracing-core-9195eaccc1cbbd86/dep-lib-tracing_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/tracing-core-9195eaccc1cbbd86/dep-lib-tracing_core differ diff --git a/target/release/.fingerprint/tracing-core-9195eaccc1cbbd86/invoked.timestamp b/target/release/.fingerprint/tracing-core-9195eaccc1cbbd86/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/tracing-core-9195eaccc1cbbd86/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/tracing-core-9195eaccc1cbbd86/lib-tracing_core b/target/release/.fingerprint/tracing-core-9195eaccc1cbbd86/lib-tracing_core new file mode 100644 index 0000000..350a4a2 --- /dev/null +++ b/target/release/.fingerprint/tracing-core-9195eaccc1cbbd86/lib-tracing_core @@ -0,0 +1 @@ +0ce68cf8713fee91 \ No newline at end of file diff --git a/target/release/.fingerprint/tracing-core-9195eaccc1cbbd86/lib-tracing_core.json b/target/release/.fingerprint/tracing-core-9195eaccc1cbbd86/lib-tracing_core.json new file mode 100644 index 0000000..5db9925 --- /dev/null +++ b/target/release/.fingerprint/tracing-core-9195eaccc1cbbd86/lib-tracing_core.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"default\", \"once_cell\", \"std\"]","declared_features":"[\"default\", \"once_cell\", \"std\", \"valuable\"]","target":14276081467424924844,"profile":10369491684090452477,"path":7279593124516322163,"deps":[[3722963349756955755,"once_cell",false,16974215088539759309]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/tracing-core-9195eaccc1cbbd86/dep-lib-tracing_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/tracing-log-5b33dd22edc54f5f/dep-lib-tracing_log b/target/release/.fingerprint/tracing-log-5b33dd22edc54f5f/dep-lib-tracing_log new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/tracing-log-5b33dd22edc54f5f/dep-lib-tracing_log differ diff --git a/target/release/.fingerprint/tracing-log-5b33dd22edc54f5f/invoked.timestamp b/target/release/.fingerprint/tracing-log-5b33dd22edc54f5f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/tracing-log-5b33dd22edc54f5f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/tracing-log-5b33dd22edc54f5f/lib-tracing_log b/target/release/.fingerprint/tracing-log-5b33dd22edc54f5f/lib-tracing_log new file mode 100644 index 0000000..a2a440f --- /dev/null +++ b/target/release/.fingerprint/tracing-log-5b33dd22edc54f5f/lib-tracing_log @@ -0,0 +1 @@ +00182ca75b6955c1 \ No newline at end of file diff --git a/target/release/.fingerprint/tracing-log-5b33dd22edc54f5f/lib-tracing_log.json b/target/release/.fingerprint/tracing-log-5b33dd22edc54f5f/lib-tracing_log.json new file mode 100644 index 0000000..8fd623f --- /dev/null +++ b/target/release/.fingerprint/tracing-log-5b33dd22edc54f5f/lib-tracing_log.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"log-tracer\", \"std\"]","declared_features":"[\"ahash\", \"default\", \"interest-cache\", \"log-tracer\", \"lru\", \"std\"]","target":13317203838154184687,"profile":2040997289075261528,"path":7301394735813194124,"deps":[[3722963349756955755,"once_cell",false,16974215088539759309],[5986029879202738730,"log",false,5380483519908736360],[11033263105862272874,"tracing_core",false,10515411938690524684]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/tracing-log-5b33dd22edc54f5f/dep-lib-tracing_log","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/tracing-subscriber-4f1b7a8ecdf25521/dep-lib-tracing_subscriber b/target/release/.fingerprint/tracing-subscriber-4f1b7a8ecdf25521/dep-lib-tracing_subscriber new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/tracing-subscriber-4f1b7a8ecdf25521/dep-lib-tracing_subscriber differ diff --git a/target/release/.fingerprint/tracing-subscriber-4f1b7a8ecdf25521/invoked.timestamp b/target/release/.fingerprint/tracing-subscriber-4f1b7a8ecdf25521/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/tracing-subscriber-4f1b7a8ecdf25521/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/tracing-subscriber-4f1b7a8ecdf25521/lib-tracing_subscriber b/target/release/.fingerprint/tracing-subscriber-4f1b7a8ecdf25521/lib-tracing_subscriber new file mode 100644 index 0000000..9993f2a --- /dev/null +++ b/target/release/.fingerprint/tracing-subscriber-4f1b7a8ecdf25521/lib-tracing_subscriber @@ -0,0 +1 @@ +d135e2446f48193a \ No newline at end of file diff --git a/target/release/.fingerprint/tracing-subscriber-4f1b7a8ecdf25521/lib-tracing_subscriber.json b/target/release/.fingerprint/tracing-subscriber-4f1b7a8ecdf25521/lib-tracing_subscriber.json new file mode 100644 index 0000000..98a0802 --- /dev/null +++ b/target/release/.fingerprint/tracing-subscriber-4f1b7a8ecdf25521/lib-tracing_subscriber.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"alloc\", \"ansi\", \"default\", \"env-filter\", \"fmt\", \"matchers\", \"nu-ansi-term\", \"once_cell\", \"regex\", \"registry\", \"sharded-slab\", \"smallvec\", \"std\", \"thread_local\", \"tracing\", \"tracing-log\"]","declared_features":"[\"alloc\", \"ansi\", \"chrono\", \"default\", \"env-filter\", \"fmt\", \"json\", \"local-time\", \"matchers\", \"nu-ansi-term\", \"once_cell\", \"parking_lot\", \"regex\", \"registry\", \"serde\", \"serde_json\", \"sharded-slab\", \"smallvec\", \"std\", \"thread_local\", \"time\", \"tracing\", \"tracing-log\", \"tracing-serde\", \"valuable\", \"valuable-serde\", \"valuable_crate\"]","target":4817557058868189149,"profile":10369491684090452477,"path":8236561393792940628,"deps":[[1009387600818341822,"matchers",false,17010512190480973203],[1017461770342116999,"sharded_slab",false,18096711121129055108],[3722963349756955755,"once_cell",false,16974215088539759309],[6048213226671835012,"smallvec",false,13040686971658754908],[8606274917505247608,"tracing",false,231856011624696765],[8614575489689151157,"nu_ansi_term",false,16763728883193594659],[9451456094439810778,"regex",false,802479182369187909],[10806489435541507125,"tracing_log",false,13931156864708122624],[11033263105862272874,"tracing_core",false,10515411938690524684],[12427285511609802057,"thread_local",false,16735297330806036364]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/tracing-subscriber-4f1b7a8ecdf25521/dep-lib-tracing_subscriber","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-ident-02b0d04ef026a7b6/dep-lib-unicode_ident b/target/release/.fingerprint/unicode-ident-02b0d04ef026a7b6/dep-lib-unicode_ident new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/unicode-ident-02b0d04ef026a7b6/dep-lib-unicode_ident differ diff --git a/target/release/.fingerprint/unicode-ident-02b0d04ef026a7b6/invoked.timestamp b/target/release/.fingerprint/unicode-ident-02b0d04ef026a7b6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/unicode-ident-02b0d04ef026a7b6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-ident-02b0d04ef026a7b6/lib-unicode_ident b/target/release/.fingerprint/unicode-ident-02b0d04ef026a7b6/lib-unicode_ident new file mode 100644 index 0000000..4f6c120 --- /dev/null +++ b/target/release/.fingerprint/unicode-ident-02b0d04ef026a7b6/lib-unicode_ident @@ -0,0 +1 @@ +7e928978391e33c6 \ No newline at end of file diff --git a/target/release/.fingerprint/unicode-ident-02b0d04ef026a7b6/lib-unicode_ident.json b/target/release/.fingerprint/unicode-ident-02b0d04ef026a7b6/lib-unicode_ident.json new file mode 100644 index 0000000..e036732 --- /dev/null +++ b/target/release/.fingerprint/unicode-ident-02b0d04ef026a7b6/lib-unicode_ident.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":5438535436255082082,"profile":1369601567987815722,"path":16651710929480889652,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/unicode-ident-02b0d04ef026a7b6/dep-lib-unicode_ident","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/utf8parse-a65b6a9ab8fee7e7/dep-lib-utf8parse b/target/release/.fingerprint/utf8parse-a65b6a9ab8fee7e7/dep-lib-utf8parse new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/utf8parse-a65b6a9ab8fee7e7/dep-lib-utf8parse differ diff --git a/target/release/.fingerprint/utf8parse-a65b6a9ab8fee7e7/invoked.timestamp b/target/release/.fingerprint/utf8parse-a65b6a9ab8fee7e7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/utf8parse-a65b6a9ab8fee7e7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/utf8parse-a65b6a9ab8fee7e7/lib-utf8parse b/target/release/.fingerprint/utf8parse-a65b6a9ab8fee7e7/lib-utf8parse new file mode 100644 index 0000000..005aa70 --- /dev/null +++ b/target/release/.fingerprint/utf8parse-a65b6a9ab8fee7e7/lib-utf8parse @@ -0,0 +1 @@ +57fa8c332e95a4d1 \ No newline at end of file diff --git a/target/release/.fingerprint/utf8parse-a65b6a9ab8fee7e7/lib-utf8parse.json b/target/release/.fingerprint/utf8parse-a65b6a9ab8fee7e7/lib-utf8parse.json new file mode 100644 index 0000000..32a5240 --- /dev/null +++ b/target/release/.fingerprint/utf8parse-a65b6a9ab8fee7e7/lib-utf8parse.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[\"default\"]","declared_features":"[\"default\", \"nightly\"]","target":13040855110431087744,"profile":2040997289075261528,"path":7746052328631032542,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/utf8parse-a65b6a9ab8fee7e7/dep-lib-utf8parse","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/vcpkg-0a82a1ed7dcb5df3/dep-lib-vcpkg b/target/release/.fingerprint/vcpkg-0a82a1ed7dcb5df3/dep-lib-vcpkg new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/vcpkg-0a82a1ed7dcb5df3/dep-lib-vcpkg differ diff --git a/target/release/.fingerprint/vcpkg-0a82a1ed7dcb5df3/invoked.timestamp b/target/release/.fingerprint/vcpkg-0a82a1ed7dcb5df3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/vcpkg-0a82a1ed7dcb5df3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/vcpkg-0a82a1ed7dcb5df3/lib-vcpkg b/target/release/.fingerprint/vcpkg-0a82a1ed7dcb5df3/lib-vcpkg new file mode 100644 index 0000000..b0e2584 --- /dev/null +++ b/target/release/.fingerprint/vcpkg-0a82a1ed7dcb5df3/lib-vcpkg @@ -0,0 +1 @@ +5c3b02fd51bc1b5c \ No newline at end of file diff --git a/target/release/.fingerprint/vcpkg-0a82a1ed7dcb5df3/lib-vcpkg.json b/target/release/.fingerprint/vcpkg-0a82a1ed7dcb5df3/lib-vcpkg.json new file mode 100644 index 0000000..1b9d49e --- /dev/null +++ b/target/release/.fingerprint/vcpkg-0a82a1ed7dcb5df3/lib-vcpkg.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":3860171895115171228,"profile":1369601567987815722,"path":4903344651404129777,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/vcpkg-0a82a1ed7dcb5df3/dep-lib-vcpkg","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/version_check-ac861858003339ac/dep-lib-version_check b/target/release/.fingerprint/version_check-ac861858003339ac/dep-lib-version_check new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/version_check-ac861858003339ac/dep-lib-version_check differ diff --git a/target/release/.fingerprint/version_check-ac861858003339ac/invoked.timestamp b/target/release/.fingerprint/version_check-ac861858003339ac/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/version_check-ac861858003339ac/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/version_check-ac861858003339ac/lib-version_check b/target/release/.fingerprint/version_check-ac861858003339ac/lib-version_check new file mode 100644 index 0000000..69c2ec8 --- /dev/null +++ b/target/release/.fingerprint/version_check-ac861858003339ac/lib-version_check @@ -0,0 +1 @@ +ae837c6434fe7732 \ No newline at end of file diff --git a/target/release/.fingerprint/version_check-ac861858003339ac/lib-version_check.json b/target/release/.fingerprint/version_check-ac861858003339ac/lib-version_check.json new file mode 100644 index 0000000..807a6f4 --- /dev/null +++ b/target/release/.fingerprint/version_check-ac861858003339ac/lib-version_check.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":18099224280402537651,"profile":1369601567987815722,"path":10750368337081493200,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/version_check-ac861858003339ac/dep-lib-version_check","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/walkdir-77a185459770fb5f/dep-lib-walkdir b/target/release/.fingerprint/walkdir-77a185459770fb5f/dep-lib-walkdir new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/walkdir-77a185459770fb5f/dep-lib-walkdir differ diff --git a/target/release/.fingerprint/walkdir-77a185459770fb5f/invoked.timestamp b/target/release/.fingerprint/walkdir-77a185459770fb5f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/walkdir-77a185459770fb5f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/walkdir-77a185459770fb5f/lib-walkdir b/target/release/.fingerprint/walkdir-77a185459770fb5f/lib-walkdir new file mode 100644 index 0000000..3f4aadc --- /dev/null +++ b/target/release/.fingerprint/walkdir-77a185459770fb5f/lib-walkdir @@ -0,0 +1 @@ +b0ffbf01c5546893 \ No newline at end of file diff --git a/target/release/.fingerprint/walkdir-77a185459770fb5f/lib-walkdir.json b/target/release/.fingerprint/walkdir-77a185459770fb5f/lib-walkdir.json new file mode 100644 index 0000000..4bb161a --- /dev/null +++ b/target/release/.fingerprint/walkdir-77a185459770fb5f/lib-walkdir.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"[]","declared_features":"[]","target":3552558796056091662,"profile":2040997289075261528,"path":17202573322991169514,"deps":[[11781824977070132858,"same_file",false,5905176776409240412]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/walkdir-77a185459770fb5f/dep-lib-walkdir","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-09d68b6c0ab1aa6c/build-script-build-script-build b/target/release/.fingerprint/zerocopy-09d68b6c0ab1aa6c/build-script-build-script-build new file mode 100644 index 0000000..02f6cf3 --- /dev/null +++ b/target/release/.fingerprint/zerocopy-09d68b6c0ab1aa6c/build-script-build-script-build @@ -0,0 +1 @@ +ab5520537ea194a1 \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-09d68b6c0ab1aa6c/build-script-build-script-build.json b/target/release/.fingerprint/zerocopy-09d68b6c0ab1aa6c/build-script-build-script-build.json new file mode 100644 index 0000000..ae3c009 --- /dev/null +++ b/target/release/.fingerprint/zerocopy-09d68b6c0ab1aa6c/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"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":1369601567987815722,"path":16656985478367922010,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/zerocopy-09d68b6c0ab1aa6c/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-09d68b6c0ab1aa6c/dep-build-script-build-script-build b/target/release/.fingerprint/zerocopy-09d68b6c0ab1aa6c/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/zerocopy-09d68b6c0ab1aa6c/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/zerocopy-09d68b6c0ab1aa6c/invoked.timestamp b/target/release/.fingerprint/zerocopy-09d68b6c0ab1aa6c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/zerocopy-09d68b6c0ab1aa6c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-58046a768784ce6d/dep-lib-zerocopy b/target/release/.fingerprint/zerocopy-58046a768784ce6d/dep-lib-zerocopy new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/zerocopy-58046a768784ce6d/dep-lib-zerocopy differ diff --git a/target/release/.fingerprint/zerocopy-58046a768784ce6d/invoked.timestamp b/target/release/.fingerprint/zerocopy-58046a768784ce6d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/zerocopy-58046a768784ce6d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-58046a768784ce6d/lib-zerocopy b/target/release/.fingerprint/zerocopy-58046a768784ce6d/lib-zerocopy new file mode 100644 index 0000000..0917ced --- /dev/null +++ b/target/release/.fingerprint/zerocopy-58046a768784ce6d/lib-zerocopy @@ -0,0 +1 @@ +5c72051b0096c872 \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-58046a768784ce6d/lib-zerocopy.json b/target/release/.fingerprint/zerocopy-58046a768784ce6d/lib-zerocopy.json new file mode 100644 index 0000000..1a7d295 --- /dev/null +++ b/target/release/.fingerprint/zerocopy-58046a768784ce6d/lib-zerocopy.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"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":2040997289075261528,"path":3701736379410773871,"deps":[[2377604147989930065,"build_script_build",false,787634739112228848]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/zerocopy-58046a768784ce6d/dep-lib-zerocopy","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-5bd423fdb3e66d1d/run-build-script-build-script-build b/target/release/.fingerprint/zerocopy-5bd423fdb3e66d1d/run-build-script-build-script-build new file mode 100644 index 0000000..b2dbd35 --- /dev/null +++ b/target/release/.fingerprint/zerocopy-5bd423fdb3e66d1d/run-build-script-build-script-build @@ -0,0 +1 @@ +f0b78a459f3dee0a \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-5bd423fdb3e66d1d/run-build-script-build-script-build.json b/target/release/.fingerprint/zerocopy-5bd423fdb3e66d1d/run-build-script-build-script-build.json new file mode 100644 index 0000000..653c79d --- /dev/null +++ b/target/release/.fingerprint/zerocopy-5bd423fdb3e66d1d/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":13226066032359371072,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[2377604147989930065,"build_script_build",false,11643108500592154027]],"local":[{"RerunIfChanged":{"output":"release/build/zerocopy-5bd423fdb3e66d1d/output","paths":["build.rs","Cargo.toml"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/build/ahash-4d7744839a6e3fa7/invoked.timestamp b/target/release/build/ahash-4d7744839a6e3fa7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/ahash-4d7744839a6e3fa7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/ahash-4d7744839a6e3fa7/output b/target/release/build/ahash-4d7744839a6e3fa7/output new file mode 100644 index 0000000..94882eb --- /dev/null +++ b/target/release/build/ahash-4d7744839a6e3fa7/output @@ -0,0 +1,4 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(specialize) +cargo:rustc-check-cfg=cfg(folded_multiply) +cargo:rustc-cfg=folded_multiply diff --git a/target/release/build/ahash-4d7744839a6e3fa7/root-output b/target/release/build/ahash-4d7744839a6e3fa7/root-output new file mode 100644 index 0000000..fbe6886 --- /dev/null +++ b/target/release/build/ahash-4d7744839a6e3fa7/root-output @@ -0,0 +1 @@ +/home/user/Documents/GitHub/Marlin/target/release/build/ahash-4d7744839a6e3fa7/out \ No newline at end of file diff --git a/target/release/build/ahash-4d7744839a6e3fa7/stderr b/target/release/build/ahash-4d7744839a6e3fa7/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/ahash-86123424690d4910/build-script-build b/target/release/build/ahash-86123424690d4910/build-script-build new file mode 100755 index 0000000..ec89fc5 Binary files /dev/null and b/target/release/build/ahash-86123424690d4910/build-script-build differ diff --git a/target/release/build/ahash-86123424690d4910/build_script_build-86123424690d4910 b/target/release/build/ahash-86123424690d4910/build_script_build-86123424690d4910 new file mode 100755 index 0000000..ec89fc5 Binary files /dev/null and b/target/release/build/ahash-86123424690d4910/build_script_build-86123424690d4910 differ diff --git a/target/release/build/ahash-86123424690d4910/build_script_build-86123424690d4910.d b/target/release/build/ahash-86123424690d4910/build_script_build-86123424690d4910.d new file mode 100644 index 0000000..af2739c --- /dev/null +++ b/target/release/build/ahash-86123424690d4910/build_script_build-86123424690d4910.d @@ -0,0 +1,5 @@ +/home/user/Documents/GitHub/Marlin/target/release/build/ahash-86123424690d4910/build_script_build-86123424690d4910: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/build.rs + +/home/user/Documents/GitHub/Marlin/target/release/build/ahash-86123424690d4910/build_script_build-86123424690d4910.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/build.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/build.rs: diff --git a/target/release/build/anyhow-10b5e4ae048b717f/invoked.timestamp b/target/release/build/anyhow-10b5e4ae048b717f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/anyhow-10b5e4ae048b717f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/anyhow-10b5e4ae048b717f/output b/target/release/build/anyhow-10b5e4ae048b717f/output new file mode 100644 index 0000000..f4b3d56 --- /dev/null +++ b/target/release/build/anyhow-10b5e4ae048b717f/output @@ -0,0 +1,12 @@ +cargo:rerun-if-changed=src/nightly.rs +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP +cargo:rustc-check-cfg=cfg(anyhow_build_probe) +cargo:rustc-check-cfg=cfg(anyhow_nightly_testing) +cargo:rustc-check-cfg=cfg(anyhow_no_core_error) +cargo:rustc-check-cfg=cfg(anyhow_no_core_unwind_safe) +cargo:rustc-check-cfg=cfg(anyhow_no_fmt_arguments_as_str) +cargo:rustc-check-cfg=cfg(anyhow_no_ptr_addr_of) +cargo:rustc-check-cfg=cfg(anyhow_no_unsafe_op_in_unsafe_fn_lint) +cargo:rustc-check-cfg=cfg(error_generic_member_access) +cargo:rustc-check-cfg=cfg(std_backtrace) +cargo:rustc-cfg=std_backtrace diff --git a/target/release/build/anyhow-10b5e4ae048b717f/root-output b/target/release/build/anyhow-10b5e4ae048b717f/root-output new file mode 100644 index 0000000..3eefd61 --- /dev/null +++ b/target/release/build/anyhow-10b5e4ae048b717f/root-output @@ -0,0 +1 @@ +/home/user/Documents/GitHub/Marlin/target/release/build/anyhow-10b5e4ae048b717f/out \ No newline at end of file diff --git a/target/release/build/anyhow-10b5e4ae048b717f/stderr b/target/release/build/anyhow-10b5e4ae048b717f/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/anyhow-1fcf29957cb57521/build-script-build b/target/release/build/anyhow-1fcf29957cb57521/build-script-build new file mode 100755 index 0000000..42c60a1 Binary files /dev/null and b/target/release/build/anyhow-1fcf29957cb57521/build-script-build differ diff --git a/target/release/build/anyhow-1fcf29957cb57521/build_script_build-1fcf29957cb57521 b/target/release/build/anyhow-1fcf29957cb57521/build_script_build-1fcf29957cb57521 new file mode 100755 index 0000000..42c60a1 Binary files /dev/null and b/target/release/build/anyhow-1fcf29957cb57521/build_script_build-1fcf29957cb57521 differ diff --git a/target/release/build/anyhow-1fcf29957cb57521/build_script_build-1fcf29957cb57521.d b/target/release/build/anyhow-1fcf29957cb57521/build_script_build-1fcf29957cb57521.d new file mode 100644 index 0000000..ec863ad --- /dev/null +++ b/target/release/build/anyhow-1fcf29957cb57521/build_script_build-1fcf29957cb57521.d @@ -0,0 +1,5 @@ +/home/user/Documents/GitHub/Marlin/target/release/build/anyhow-1fcf29957cb57521/build_script_build-1fcf29957cb57521: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/build.rs + +/home/user/Documents/GitHub/Marlin/target/release/build/anyhow-1fcf29957cb57521/build_script_build-1fcf29957cb57521.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/build.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/build.rs: diff --git a/target/release/build/libc-9ef9785ce2203439/invoked.timestamp b/target/release/build/libc-9ef9785ce2203439/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/libc-9ef9785ce2203439/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/libc-9ef9785ce2203439/output b/target/release/build/libc-9ef9785ce2203439/output new file mode 100644 index 0000000..788098a --- /dev/null +++ b/target/release/build/libc-9ef9785ce2203439/output @@ -0,0 +1,23 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION +cargo:rustc-cfg=freebsd11 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64 +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS +cargo:rustc-cfg=libc_const_extern_fn +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(libc_const_extern_fn) +cargo:rustc-check-cfg=cfg(libc_deny_warnings) +cargo:rustc-check-cfg=cfg(libc_thread_local) +cargo:rustc-check-cfg=cfg(libc_ctest) +cargo:rustc-check-cfg=cfg(linux_time_bits64) +cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx","cygwin")) +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/target/release/build/libc-9ef9785ce2203439/root-output b/target/release/build/libc-9ef9785ce2203439/root-output new file mode 100644 index 0000000..6409e8d --- /dev/null +++ b/target/release/build/libc-9ef9785ce2203439/root-output @@ -0,0 +1 @@ +/home/user/Documents/GitHub/Marlin/target/release/build/libc-9ef9785ce2203439/out \ No newline at end of file diff --git a/target/release/build/libc-9ef9785ce2203439/stderr b/target/release/build/libc-9ef9785ce2203439/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/libc-ab559b7fa0ead692/build-script-build b/target/release/build/libc-ab559b7fa0ead692/build-script-build new file mode 100755 index 0000000..7542e48 Binary files /dev/null and b/target/release/build/libc-ab559b7fa0ead692/build-script-build differ diff --git a/target/release/build/libc-ab559b7fa0ead692/build_script_build-ab559b7fa0ead692 b/target/release/build/libc-ab559b7fa0ead692/build_script_build-ab559b7fa0ead692 new file mode 100755 index 0000000..7542e48 Binary files /dev/null and b/target/release/build/libc-ab559b7fa0ead692/build_script_build-ab559b7fa0ead692 differ diff --git a/target/release/build/libc-ab559b7fa0ead692/build_script_build-ab559b7fa0ead692.d b/target/release/build/libc-ab559b7fa0ead692/build_script_build-ab559b7fa0ead692.d new file mode 100644 index 0000000..7872402 --- /dev/null +++ b/target/release/build/libc-ab559b7fa0ead692/build_script_build-ab559b7fa0ead692.d @@ -0,0 +1,5 @@ +/home/user/Documents/GitHub/Marlin/target/release/build/libc-ab559b7fa0ead692/build_script_build-ab559b7fa0ead692: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/build.rs + +/home/user/Documents/GitHub/Marlin/target/release/build/libc-ab559b7fa0ead692/build_script_build-ab559b7fa0ead692.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/build.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/build.rs: diff --git a/target/release/build/libsqlite3-sys-aed1b7dff548c539/invoked.timestamp b/target/release/build/libsqlite3-sys-aed1b7dff548c539/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/libsqlite3-sys-aed1b7dff548c539/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/libsqlite3-sys-aed1b7dff548c539/out/bindgen.rs b/target/release/build/libsqlite3-sys-aed1b7dff548c539/out/bindgen.rs new file mode 100644 index 0000000..3edb6f9 --- /dev/null +++ b/target/release/build/libsqlite3-sys-aed1b7dff548c539/out/bindgen.rs @@ -0,0 +1,3681 @@ +/* automatically generated by rust-bindgen 0.69.2 */ + +extern "C" { + pub fn sqlite3_auto_extension( + xEntryPoint: ::std::option::Option< + unsafe extern "C" fn( + db: *mut sqlite3, + pzErrMsg: *mut *const ::std::os::raw::c_char, + pThunk: *const sqlite3_api_routines, + ) -> ::std::os::raw::c_int, + >, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_cancel_auto_extension( + xEntryPoint: ::std::option::Option< + unsafe extern "C" fn( + db: *mut sqlite3, + pzErrMsg: *mut *const ::std::os::raw::c_char, + pThunk: *const sqlite3_api_routines, + ) -> ::std::os::raw::c_int, + >, + ) -> ::std::os::raw::c_int; +} + +pub const SQLITE_VERSION: &[u8; 7] = b"3.45.0\0"; +pub const SQLITE_VERSION_NUMBER: i32 = 3045000; +pub const SQLITE_SOURCE_ID: &[u8; 85] = + b"2024-01-15 17:01:13 1066602b2b1976fe58b5150777cced894af17c803e068f5918390d6915b46e1d\0"; +pub const SQLITE_OK: i32 = 0; +pub const SQLITE_ERROR: i32 = 1; +pub const SQLITE_INTERNAL: i32 = 2; +pub const SQLITE_PERM: i32 = 3; +pub const SQLITE_ABORT: i32 = 4; +pub const SQLITE_BUSY: i32 = 5; +pub const SQLITE_LOCKED: i32 = 6; +pub const SQLITE_NOMEM: i32 = 7; +pub const SQLITE_READONLY: i32 = 8; +pub const SQLITE_INTERRUPT: i32 = 9; +pub const SQLITE_IOERR: i32 = 10; +pub const SQLITE_CORRUPT: i32 = 11; +pub const SQLITE_NOTFOUND: i32 = 12; +pub const SQLITE_FULL: i32 = 13; +pub const SQLITE_CANTOPEN: i32 = 14; +pub const SQLITE_PROTOCOL: i32 = 15; +pub const SQLITE_EMPTY: i32 = 16; +pub const SQLITE_SCHEMA: i32 = 17; +pub const SQLITE_TOOBIG: i32 = 18; +pub const SQLITE_CONSTRAINT: i32 = 19; +pub const SQLITE_MISMATCH: i32 = 20; +pub const SQLITE_MISUSE: i32 = 21; +pub const SQLITE_NOLFS: i32 = 22; +pub const SQLITE_AUTH: i32 = 23; +pub const SQLITE_FORMAT: i32 = 24; +pub const SQLITE_RANGE: i32 = 25; +pub const SQLITE_NOTADB: i32 = 26; +pub const SQLITE_NOTICE: i32 = 27; +pub const SQLITE_WARNING: i32 = 28; +pub const SQLITE_ROW: i32 = 100; +pub const SQLITE_DONE: i32 = 101; +pub const SQLITE_ERROR_MISSING_COLLSEQ: i32 = 257; +pub const SQLITE_ERROR_RETRY: i32 = 513; +pub const SQLITE_ERROR_SNAPSHOT: i32 = 769; +pub const SQLITE_IOERR_READ: i32 = 266; +pub const SQLITE_IOERR_SHORT_READ: i32 = 522; +pub const SQLITE_IOERR_WRITE: i32 = 778; +pub const SQLITE_IOERR_FSYNC: i32 = 1034; +pub const SQLITE_IOERR_DIR_FSYNC: i32 = 1290; +pub const SQLITE_IOERR_TRUNCATE: i32 = 1546; +pub const SQLITE_IOERR_FSTAT: i32 = 1802; +pub const SQLITE_IOERR_UNLOCK: i32 = 2058; +pub const SQLITE_IOERR_RDLOCK: i32 = 2314; +pub const SQLITE_IOERR_DELETE: i32 = 2570; +pub const SQLITE_IOERR_BLOCKED: i32 = 2826; +pub const SQLITE_IOERR_NOMEM: i32 = 3082; +pub const SQLITE_IOERR_ACCESS: i32 = 3338; +pub const SQLITE_IOERR_CHECKRESERVEDLOCK: i32 = 3594; +pub const SQLITE_IOERR_LOCK: i32 = 3850; +pub const SQLITE_IOERR_CLOSE: i32 = 4106; +pub const SQLITE_IOERR_DIR_CLOSE: i32 = 4362; +pub const SQLITE_IOERR_SHMOPEN: i32 = 4618; +pub const SQLITE_IOERR_SHMSIZE: i32 = 4874; +pub const SQLITE_IOERR_SHMLOCK: i32 = 5130; +pub const SQLITE_IOERR_SHMMAP: i32 = 5386; +pub const SQLITE_IOERR_SEEK: i32 = 5642; +pub const SQLITE_IOERR_DELETE_NOENT: i32 = 5898; +pub const SQLITE_IOERR_MMAP: i32 = 6154; +pub const SQLITE_IOERR_GETTEMPPATH: i32 = 6410; +pub const SQLITE_IOERR_CONVPATH: i32 = 6666; +pub const SQLITE_IOERR_VNODE: i32 = 6922; +pub const SQLITE_IOERR_AUTH: i32 = 7178; +pub const SQLITE_IOERR_BEGIN_ATOMIC: i32 = 7434; +pub const SQLITE_IOERR_COMMIT_ATOMIC: i32 = 7690; +pub const SQLITE_IOERR_ROLLBACK_ATOMIC: i32 = 7946; +pub const SQLITE_IOERR_DATA: i32 = 8202; +pub const SQLITE_IOERR_CORRUPTFS: i32 = 8458; +pub const SQLITE_IOERR_IN_PAGE: i32 = 8714; +pub const SQLITE_LOCKED_SHAREDCACHE: i32 = 262; +pub const SQLITE_LOCKED_VTAB: i32 = 518; +pub const SQLITE_BUSY_RECOVERY: i32 = 261; +pub const SQLITE_BUSY_SNAPSHOT: i32 = 517; +pub const SQLITE_BUSY_TIMEOUT: i32 = 773; +pub const SQLITE_CANTOPEN_NOTEMPDIR: i32 = 270; +pub const SQLITE_CANTOPEN_ISDIR: i32 = 526; +pub const SQLITE_CANTOPEN_FULLPATH: i32 = 782; +pub const SQLITE_CANTOPEN_CONVPATH: i32 = 1038; +pub const SQLITE_CANTOPEN_DIRTYWAL: i32 = 1294; +pub const SQLITE_CANTOPEN_SYMLINK: i32 = 1550; +pub const SQLITE_CORRUPT_VTAB: i32 = 267; +pub const SQLITE_CORRUPT_SEQUENCE: i32 = 523; +pub const SQLITE_CORRUPT_INDEX: i32 = 779; +pub const SQLITE_READONLY_RECOVERY: i32 = 264; +pub const SQLITE_READONLY_CANTLOCK: i32 = 520; +pub const SQLITE_READONLY_ROLLBACK: i32 = 776; +pub const SQLITE_READONLY_DBMOVED: i32 = 1032; +pub const SQLITE_READONLY_CANTINIT: i32 = 1288; +pub const SQLITE_READONLY_DIRECTORY: i32 = 1544; +pub const SQLITE_ABORT_ROLLBACK: i32 = 516; +pub const SQLITE_CONSTRAINT_CHECK: i32 = 275; +pub const SQLITE_CONSTRAINT_COMMITHOOK: i32 = 531; +pub const SQLITE_CONSTRAINT_FOREIGNKEY: i32 = 787; +pub const SQLITE_CONSTRAINT_FUNCTION: i32 = 1043; +pub const SQLITE_CONSTRAINT_NOTNULL: i32 = 1299; +pub const SQLITE_CONSTRAINT_PRIMARYKEY: i32 = 1555; +pub const SQLITE_CONSTRAINT_TRIGGER: i32 = 1811; +pub const SQLITE_CONSTRAINT_UNIQUE: i32 = 2067; +pub const SQLITE_CONSTRAINT_VTAB: i32 = 2323; +pub const SQLITE_CONSTRAINT_ROWID: i32 = 2579; +pub const SQLITE_CONSTRAINT_PINNED: i32 = 2835; +pub const SQLITE_CONSTRAINT_DATATYPE: i32 = 3091; +pub const SQLITE_NOTICE_RECOVER_WAL: i32 = 283; +pub const SQLITE_NOTICE_RECOVER_ROLLBACK: i32 = 539; +pub const SQLITE_NOTICE_RBU: i32 = 795; +pub const SQLITE_WARNING_AUTOINDEX: i32 = 284; +pub const SQLITE_AUTH_USER: i32 = 279; +pub const SQLITE_OK_LOAD_PERMANENTLY: i32 = 256; +pub const SQLITE_OK_SYMLINK: i32 = 512; +pub const SQLITE_OPEN_READONLY: i32 = 1; +pub const SQLITE_OPEN_READWRITE: i32 = 2; +pub const SQLITE_OPEN_CREATE: i32 = 4; +pub const SQLITE_OPEN_DELETEONCLOSE: i32 = 8; +pub const SQLITE_OPEN_EXCLUSIVE: i32 = 16; +pub const SQLITE_OPEN_AUTOPROXY: i32 = 32; +pub const SQLITE_OPEN_URI: i32 = 64; +pub const SQLITE_OPEN_MEMORY: i32 = 128; +pub const SQLITE_OPEN_MAIN_DB: i32 = 256; +pub const SQLITE_OPEN_TEMP_DB: i32 = 512; +pub const SQLITE_OPEN_TRANSIENT_DB: i32 = 1024; +pub const SQLITE_OPEN_MAIN_JOURNAL: i32 = 2048; +pub const SQLITE_OPEN_TEMP_JOURNAL: i32 = 4096; +pub const SQLITE_OPEN_SUBJOURNAL: i32 = 8192; +pub const SQLITE_OPEN_SUPER_JOURNAL: i32 = 16384; +pub const SQLITE_OPEN_NOMUTEX: i32 = 32768; +pub const SQLITE_OPEN_FULLMUTEX: i32 = 65536; +pub const SQLITE_OPEN_SHAREDCACHE: i32 = 131072; +pub const SQLITE_OPEN_PRIVATECACHE: i32 = 262144; +pub const SQLITE_OPEN_WAL: i32 = 524288; +pub const SQLITE_OPEN_NOFOLLOW: i32 = 16777216; +pub const SQLITE_OPEN_EXRESCODE: i32 = 33554432; +pub const SQLITE_OPEN_MASTER_JOURNAL: i32 = 16384; +pub const SQLITE_IOCAP_ATOMIC: i32 = 1; +pub const SQLITE_IOCAP_ATOMIC512: i32 = 2; +pub const SQLITE_IOCAP_ATOMIC1K: i32 = 4; +pub const SQLITE_IOCAP_ATOMIC2K: i32 = 8; +pub const SQLITE_IOCAP_ATOMIC4K: i32 = 16; +pub const SQLITE_IOCAP_ATOMIC8K: i32 = 32; +pub const SQLITE_IOCAP_ATOMIC16K: i32 = 64; +pub const SQLITE_IOCAP_ATOMIC32K: i32 = 128; +pub const SQLITE_IOCAP_ATOMIC64K: i32 = 256; +pub const SQLITE_IOCAP_SAFE_APPEND: i32 = 512; +pub const SQLITE_IOCAP_SEQUENTIAL: i32 = 1024; +pub const SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN: i32 = 2048; +pub const SQLITE_IOCAP_POWERSAFE_OVERWRITE: i32 = 4096; +pub const SQLITE_IOCAP_IMMUTABLE: i32 = 8192; +pub const SQLITE_IOCAP_BATCH_ATOMIC: i32 = 16384; +pub const SQLITE_LOCK_NONE: i32 = 0; +pub const SQLITE_LOCK_SHARED: i32 = 1; +pub const SQLITE_LOCK_RESERVED: i32 = 2; +pub const SQLITE_LOCK_PENDING: i32 = 3; +pub const SQLITE_LOCK_EXCLUSIVE: i32 = 4; +pub const SQLITE_SYNC_NORMAL: i32 = 2; +pub const SQLITE_SYNC_FULL: i32 = 3; +pub const SQLITE_SYNC_DATAONLY: i32 = 16; +pub const SQLITE_FCNTL_LOCKSTATE: i32 = 1; +pub const SQLITE_FCNTL_GET_LOCKPROXYFILE: i32 = 2; +pub const SQLITE_FCNTL_SET_LOCKPROXYFILE: i32 = 3; +pub const SQLITE_FCNTL_LAST_ERRNO: i32 = 4; +pub const SQLITE_FCNTL_SIZE_HINT: i32 = 5; +pub const SQLITE_FCNTL_CHUNK_SIZE: i32 = 6; +pub const SQLITE_FCNTL_FILE_POINTER: i32 = 7; +pub const SQLITE_FCNTL_SYNC_OMITTED: i32 = 8; +pub const SQLITE_FCNTL_WIN32_AV_RETRY: i32 = 9; +pub const SQLITE_FCNTL_PERSIST_WAL: i32 = 10; +pub const SQLITE_FCNTL_OVERWRITE: i32 = 11; +pub const SQLITE_FCNTL_VFSNAME: i32 = 12; +pub const SQLITE_FCNTL_POWERSAFE_OVERWRITE: i32 = 13; +pub const SQLITE_FCNTL_PRAGMA: i32 = 14; +pub const SQLITE_FCNTL_BUSYHANDLER: i32 = 15; +pub const SQLITE_FCNTL_TEMPFILENAME: i32 = 16; +pub const SQLITE_FCNTL_MMAP_SIZE: i32 = 18; +pub const SQLITE_FCNTL_TRACE: i32 = 19; +pub const SQLITE_FCNTL_HAS_MOVED: i32 = 20; +pub const SQLITE_FCNTL_SYNC: i32 = 21; +pub const SQLITE_FCNTL_COMMIT_PHASETWO: i32 = 22; +pub const SQLITE_FCNTL_WIN32_SET_HANDLE: i32 = 23; +pub const SQLITE_FCNTL_WAL_BLOCK: i32 = 24; +pub const SQLITE_FCNTL_ZIPVFS: i32 = 25; +pub const SQLITE_FCNTL_RBU: i32 = 26; +pub const SQLITE_FCNTL_VFS_POINTER: i32 = 27; +pub const SQLITE_FCNTL_JOURNAL_POINTER: i32 = 28; +pub const SQLITE_FCNTL_WIN32_GET_HANDLE: i32 = 29; +pub const SQLITE_FCNTL_PDB: i32 = 30; +pub const SQLITE_FCNTL_BEGIN_ATOMIC_WRITE: i32 = 31; +pub const SQLITE_FCNTL_COMMIT_ATOMIC_WRITE: i32 = 32; +pub const SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE: i32 = 33; +pub const SQLITE_FCNTL_LOCK_TIMEOUT: i32 = 34; +pub const SQLITE_FCNTL_DATA_VERSION: i32 = 35; +pub const SQLITE_FCNTL_SIZE_LIMIT: i32 = 36; +pub const SQLITE_FCNTL_CKPT_DONE: i32 = 37; +pub const SQLITE_FCNTL_RESERVE_BYTES: i32 = 38; +pub const SQLITE_FCNTL_CKPT_START: i32 = 39; +pub const SQLITE_FCNTL_EXTERNAL_READER: i32 = 40; +pub const SQLITE_FCNTL_CKSM_FILE: i32 = 41; +pub const SQLITE_FCNTL_RESET_CACHE: i32 = 42; +pub const SQLITE_GET_LOCKPROXYFILE: i32 = 2; +pub const SQLITE_SET_LOCKPROXYFILE: i32 = 3; +pub const SQLITE_LAST_ERRNO: i32 = 4; +pub const SQLITE_ACCESS_EXISTS: i32 = 0; +pub const SQLITE_ACCESS_READWRITE: i32 = 1; +pub const SQLITE_ACCESS_READ: i32 = 2; +pub const SQLITE_SHM_UNLOCK: i32 = 1; +pub const SQLITE_SHM_LOCK: i32 = 2; +pub const SQLITE_SHM_SHARED: i32 = 4; +pub const SQLITE_SHM_EXCLUSIVE: i32 = 8; +pub const SQLITE_SHM_NLOCK: i32 = 8; +pub const SQLITE_CONFIG_SINGLETHREAD: i32 = 1; +pub const SQLITE_CONFIG_MULTITHREAD: i32 = 2; +pub const SQLITE_CONFIG_SERIALIZED: i32 = 3; +pub const SQLITE_CONFIG_MALLOC: i32 = 4; +pub const SQLITE_CONFIG_GETMALLOC: i32 = 5; +pub const SQLITE_CONFIG_SCRATCH: i32 = 6; +pub const SQLITE_CONFIG_PAGECACHE: i32 = 7; +pub const SQLITE_CONFIG_HEAP: i32 = 8; +pub const SQLITE_CONFIG_MEMSTATUS: i32 = 9; +pub const SQLITE_CONFIG_MUTEX: i32 = 10; +pub const SQLITE_CONFIG_GETMUTEX: i32 = 11; +pub const SQLITE_CONFIG_LOOKASIDE: i32 = 13; +pub const SQLITE_CONFIG_PCACHE: i32 = 14; +pub const SQLITE_CONFIG_GETPCACHE: i32 = 15; +pub const SQLITE_CONFIG_LOG: i32 = 16; +pub const SQLITE_CONFIG_URI: i32 = 17; +pub const SQLITE_CONFIG_PCACHE2: i32 = 18; +pub const SQLITE_CONFIG_GETPCACHE2: i32 = 19; +pub const SQLITE_CONFIG_COVERING_INDEX_SCAN: i32 = 20; +pub const SQLITE_CONFIG_SQLLOG: i32 = 21; +pub const SQLITE_CONFIG_MMAP_SIZE: i32 = 22; +pub const SQLITE_CONFIG_WIN32_HEAPSIZE: i32 = 23; +pub const SQLITE_CONFIG_PCACHE_HDRSZ: i32 = 24; +pub const SQLITE_CONFIG_PMASZ: i32 = 25; +pub const SQLITE_CONFIG_STMTJRNL_SPILL: i32 = 26; +pub const SQLITE_CONFIG_SMALL_MALLOC: i32 = 27; +pub const SQLITE_CONFIG_SORTERREF_SIZE: i32 = 28; +pub const SQLITE_CONFIG_MEMDB_MAXSIZE: i32 = 29; +pub const SQLITE_DBCONFIG_MAINDBNAME: i32 = 1000; +pub const SQLITE_DBCONFIG_LOOKASIDE: i32 = 1001; +pub const SQLITE_DBCONFIG_ENABLE_FKEY: i32 = 1002; +pub const SQLITE_DBCONFIG_ENABLE_TRIGGER: i32 = 1003; +pub const SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER: i32 = 1004; +pub const SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION: i32 = 1005; +pub const SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE: i32 = 1006; +pub const SQLITE_DBCONFIG_ENABLE_QPSG: i32 = 1007; +pub const SQLITE_DBCONFIG_TRIGGER_EQP: i32 = 1008; +pub const SQLITE_DBCONFIG_RESET_DATABASE: i32 = 1009; +pub const SQLITE_DBCONFIG_DEFENSIVE: i32 = 1010; +pub const SQLITE_DBCONFIG_WRITABLE_SCHEMA: i32 = 1011; +pub const SQLITE_DBCONFIG_LEGACY_ALTER_TABLE: i32 = 1012; +pub const SQLITE_DBCONFIG_DQS_DML: i32 = 1013; +pub const SQLITE_DBCONFIG_DQS_DDL: i32 = 1014; +pub const SQLITE_DBCONFIG_ENABLE_VIEW: i32 = 1015; +pub const SQLITE_DBCONFIG_LEGACY_FILE_FORMAT: i32 = 1016; +pub const SQLITE_DBCONFIG_TRUSTED_SCHEMA: i32 = 1017; +pub const SQLITE_DBCONFIG_STMT_SCANSTATUS: i32 = 1018; +pub const SQLITE_DBCONFIG_REVERSE_SCANORDER: i32 = 1019; +pub const SQLITE_DBCONFIG_MAX: i32 = 1019; +pub const SQLITE_DENY: i32 = 1; +pub const SQLITE_IGNORE: i32 = 2; +pub const SQLITE_CREATE_INDEX: i32 = 1; +pub const SQLITE_CREATE_TABLE: i32 = 2; +pub const SQLITE_CREATE_TEMP_INDEX: i32 = 3; +pub const SQLITE_CREATE_TEMP_TABLE: i32 = 4; +pub const SQLITE_CREATE_TEMP_TRIGGER: i32 = 5; +pub const SQLITE_CREATE_TEMP_VIEW: i32 = 6; +pub const SQLITE_CREATE_TRIGGER: i32 = 7; +pub const SQLITE_CREATE_VIEW: i32 = 8; +pub const SQLITE_DELETE: i32 = 9; +pub const SQLITE_DROP_INDEX: i32 = 10; +pub const SQLITE_DROP_TABLE: i32 = 11; +pub const SQLITE_DROP_TEMP_INDEX: i32 = 12; +pub const SQLITE_DROP_TEMP_TABLE: i32 = 13; +pub const SQLITE_DROP_TEMP_TRIGGER: i32 = 14; +pub const SQLITE_DROP_TEMP_VIEW: i32 = 15; +pub const SQLITE_DROP_TRIGGER: i32 = 16; +pub const SQLITE_DROP_VIEW: i32 = 17; +pub const SQLITE_INSERT: i32 = 18; +pub const SQLITE_PRAGMA: i32 = 19; +pub const SQLITE_READ: i32 = 20; +pub const SQLITE_SELECT: i32 = 21; +pub const SQLITE_TRANSACTION: i32 = 22; +pub const SQLITE_UPDATE: i32 = 23; +pub const SQLITE_ATTACH: i32 = 24; +pub const SQLITE_DETACH: i32 = 25; +pub const SQLITE_ALTER_TABLE: i32 = 26; +pub const SQLITE_REINDEX: i32 = 27; +pub const SQLITE_ANALYZE: i32 = 28; +pub const SQLITE_CREATE_VTABLE: i32 = 29; +pub const SQLITE_DROP_VTABLE: i32 = 30; +pub const SQLITE_FUNCTION: i32 = 31; +pub const SQLITE_SAVEPOINT: i32 = 32; +pub const SQLITE_COPY: i32 = 0; +pub const SQLITE_RECURSIVE: i32 = 33; +pub const SQLITE_TRACE_STMT: i32 = 1; +pub const SQLITE_TRACE_PROFILE: i32 = 2; +pub const SQLITE_TRACE_ROW: i32 = 4; +pub const SQLITE_TRACE_CLOSE: i32 = 8; +pub const SQLITE_LIMIT_LENGTH: i32 = 0; +pub const SQLITE_LIMIT_SQL_LENGTH: i32 = 1; +pub const SQLITE_LIMIT_COLUMN: i32 = 2; +pub const SQLITE_LIMIT_EXPR_DEPTH: i32 = 3; +pub const SQLITE_LIMIT_COMPOUND_SELECT: i32 = 4; +pub const SQLITE_LIMIT_VDBE_OP: i32 = 5; +pub const SQLITE_LIMIT_FUNCTION_ARG: i32 = 6; +pub const SQLITE_LIMIT_ATTACHED: i32 = 7; +pub const SQLITE_LIMIT_LIKE_PATTERN_LENGTH: i32 = 8; +pub const SQLITE_LIMIT_VARIABLE_NUMBER: i32 = 9; +pub const SQLITE_LIMIT_TRIGGER_DEPTH: i32 = 10; +pub const SQLITE_LIMIT_WORKER_THREADS: i32 = 11; +pub const SQLITE_PREPARE_PERSISTENT: ::std::os::raw::c_uint = 1; +pub const SQLITE_PREPARE_NORMALIZE: ::std::os::raw::c_uint = 2; +pub const SQLITE_PREPARE_NO_VTAB: ::std::os::raw::c_uint = 4; +pub const SQLITE_INTEGER: i32 = 1; +pub const SQLITE_FLOAT: i32 = 2; +pub const SQLITE_BLOB: i32 = 4; +pub const SQLITE_NULL: i32 = 5; +pub const SQLITE_TEXT: i32 = 3; +pub const SQLITE3_TEXT: i32 = 3; +pub const SQLITE_UTF8: i32 = 1; +pub const SQLITE_UTF16LE: i32 = 2; +pub const SQLITE_UTF16BE: i32 = 3; +pub const SQLITE_UTF16: i32 = 4; +pub const SQLITE_ANY: i32 = 5; +pub const SQLITE_UTF16_ALIGNED: i32 = 8; +pub const SQLITE_DETERMINISTIC: i32 = 2048; +pub const SQLITE_DIRECTONLY: i32 = 524288; +pub const SQLITE_SUBTYPE: i32 = 1048576; +pub const SQLITE_INNOCUOUS: i32 = 2097152; +pub const SQLITE_RESULT_SUBTYPE: i32 = 16777216; +pub const SQLITE_WIN32_DATA_DIRECTORY_TYPE: i32 = 1; +pub const SQLITE_WIN32_TEMP_DIRECTORY_TYPE: i32 = 2; +pub const SQLITE_TXN_NONE: i32 = 0; +pub const SQLITE_TXN_READ: i32 = 1; +pub const SQLITE_TXN_WRITE: i32 = 2; +pub const SQLITE_INDEX_SCAN_UNIQUE: i32 = 1; +pub const SQLITE_INDEX_CONSTRAINT_EQ: i32 = 2; +pub const SQLITE_INDEX_CONSTRAINT_GT: i32 = 4; +pub const SQLITE_INDEX_CONSTRAINT_LE: i32 = 8; +pub const SQLITE_INDEX_CONSTRAINT_LT: i32 = 16; +pub const SQLITE_INDEX_CONSTRAINT_GE: i32 = 32; +pub const SQLITE_INDEX_CONSTRAINT_MATCH: i32 = 64; +pub const SQLITE_INDEX_CONSTRAINT_LIKE: i32 = 65; +pub const SQLITE_INDEX_CONSTRAINT_GLOB: i32 = 66; +pub const SQLITE_INDEX_CONSTRAINT_REGEXP: i32 = 67; +pub const SQLITE_INDEX_CONSTRAINT_NE: i32 = 68; +pub const SQLITE_INDEX_CONSTRAINT_ISNOT: i32 = 69; +pub const SQLITE_INDEX_CONSTRAINT_ISNOTNULL: i32 = 70; +pub const SQLITE_INDEX_CONSTRAINT_ISNULL: i32 = 71; +pub const SQLITE_INDEX_CONSTRAINT_IS: i32 = 72; +pub const SQLITE_INDEX_CONSTRAINT_LIMIT: i32 = 73; +pub const SQLITE_INDEX_CONSTRAINT_OFFSET: i32 = 74; +pub const SQLITE_INDEX_CONSTRAINT_FUNCTION: i32 = 150; +pub const SQLITE_MUTEX_FAST: i32 = 0; +pub const SQLITE_MUTEX_RECURSIVE: i32 = 1; +pub const SQLITE_MUTEX_STATIC_MAIN: i32 = 2; +pub const SQLITE_MUTEX_STATIC_MEM: i32 = 3; +pub const SQLITE_MUTEX_STATIC_MEM2: i32 = 4; +pub const SQLITE_MUTEX_STATIC_OPEN: i32 = 4; +pub const SQLITE_MUTEX_STATIC_PRNG: i32 = 5; +pub const SQLITE_MUTEX_STATIC_LRU: i32 = 6; +pub const SQLITE_MUTEX_STATIC_LRU2: i32 = 7; +pub const SQLITE_MUTEX_STATIC_PMEM: i32 = 7; +pub const SQLITE_MUTEX_STATIC_APP1: i32 = 8; +pub const SQLITE_MUTEX_STATIC_APP2: i32 = 9; +pub const SQLITE_MUTEX_STATIC_APP3: i32 = 10; +pub const SQLITE_MUTEX_STATIC_VFS1: i32 = 11; +pub const SQLITE_MUTEX_STATIC_VFS2: i32 = 12; +pub const SQLITE_MUTEX_STATIC_VFS3: i32 = 13; +pub const SQLITE_MUTEX_STATIC_MASTER: i32 = 2; +pub const SQLITE_TESTCTRL_FIRST: i32 = 5; +pub const SQLITE_TESTCTRL_PRNG_SAVE: i32 = 5; +pub const SQLITE_TESTCTRL_PRNG_RESTORE: i32 = 6; +pub const SQLITE_TESTCTRL_PRNG_RESET: i32 = 7; +pub const SQLITE_TESTCTRL_FK_NO_ACTION: i32 = 7; +pub const SQLITE_TESTCTRL_BITVEC_TEST: i32 = 8; +pub const SQLITE_TESTCTRL_FAULT_INSTALL: i32 = 9; +pub const SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS: i32 = 10; +pub const SQLITE_TESTCTRL_PENDING_BYTE: i32 = 11; +pub const SQLITE_TESTCTRL_ASSERT: i32 = 12; +pub const SQLITE_TESTCTRL_ALWAYS: i32 = 13; +pub const SQLITE_TESTCTRL_RESERVE: i32 = 14; +pub const SQLITE_TESTCTRL_JSON_SELFCHECK: i32 = 14; +pub const SQLITE_TESTCTRL_OPTIMIZATIONS: i32 = 15; +pub const SQLITE_TESTCTRL_ISKEYWORD: i32 = 16; +pub const SQLITE_TESTCTRL_SCRATCHMALLOC: i32 = 17; +pub const SQLITE_TESTCTRL_INTERNAL_FUNCTIONS: i32 = 17; +pub const SQLITE_TESTCTRL_LOCALTIME_FAULT: i32 = 18; +pub const SQLITE_TESTCTRL_EXPLAIN_STMT: i32 = 19; +pub const SQLITE_TESTCTRL_ONCE_RESET_THRESHOLD: i32 = 19; +pub const SQLITE_TESTCTRL_NEVER_CORRUPT: i32 = 20; +pub const SQLITE_TESTCTRL_VDBE_COVERAGE: i32 = 21; +pub const SQLITE_TESTCTRL_BYTEORDER: i32 = 22; +pub const SQLITE_TESTCTRL_ISINIT: i32 = 23; +pub const SQLITE_TESTCTRL_SORTER_MMAP: i32 = 24; +pub const SQLITE_TESTCTRL_IMPOSTER: i32 = 25; +pub const SQLITE_TESTCTRL_PARSER_COVERAGE: i32 = 26; +pub const SQLITE_TESTCTRL_RESULT_INTREAL: i32 = 27; +pub const SQLITE_TESTCTRL_PRNG_SEED: i32 = 28; +pub const SQLITE_TESTCTRL_EXTRA_SCHEMA_CHECKS: i32 = 29; +pub const SQLITE_TESTCTRL_SEEK_COUNT: i32 = 30; +pub const SQLITE_TESTCTRL_TRACEFLAGS: i32 = 31; +pub const SQLITE_TESTCTRL_TUNE: i32 = 32; +pub const SQLITE_TESTCTRL_LOGEST: i32 = 33; +pub const SQLITE_TESTCTRL_USELONGDOUBLE: i32 = 34; +pub const SQLITE_TESTCTRL_LAST: i32 = 34; +pub const SQLITE_STATUS_MEMORY_USED: i32 = 0; +pub const SQLITE_STATUS_PAGECACHE_USED: i32 = 1; +pub const SQLITE_STATUS_PAGECACHE_OVERFLOW: i32 = 2; +pub const SQLITE_STATUS_SCRATCH_USED: i32 = 3; +pub const SQLITE_STATUS_SCRATCH_OVERFLOW: i32 = 4; +pub const SQLITE_STATUS_MALLOC_SIZE: i32 = 5; +pub const SQLITE_STATUS_PARSER_STACK: i32 = 6; +pub const SQLITE_STATUS_PAGECACHE_SIZE: i32 = 7; +pub const SQLITE_STATUS_SCRATCH_SIZE: i32 = 8; +pub const SQLITE_STATUS_MALLOC_COUNT: i32 = 9; +pub const SQLITE_DBSTATUS_LOOKASIDE_USED: i32 = 0; +pub const SQLITE_DBSTATUS_CACHE_USED: i32 = 1; +pub const SQLITE_DBSTATUS_SCHEMA_USED: i32 = 2; +pub const SQLITE_DBSTATUS_STMT_USED: i32 = 3; +pub const SQLITE_DBSTATUS_LOOKASIDE_HIT: i32 = 4; +pub const SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE: i32 = 5; +pub const SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL: i32 = 6; +pub const SQLITE_DBSTATUS_CACHE_HIT: i32 = 7; +pub const SQLITE_DBSTATUS_CACHE_MISS: i32 = 8; +pub const SQLITE_DBSTATUS_CACHE_WRITE: i32 = 9; +pub const SQLITE_DBSTATUS_DEFERRED_FKS: i32 = 10; +pub const SQLITE_DBSTATUS_CACHE_USED_SHARED: i32 = 11; +pub const SQLITE_DBSTATUS_CACHE_SPILL: i32 = 12; +pub const SQLITE_DBSTATUS_MAX: i32 = 12; +pub const SQLITE_STMTSTATUS_FULLSCAN_STEP: i32 = 1; +pub const SQLITE_STMTSTATUS_SORT: i32 = 2; +pub const SQLITE_STMTSTATUS_AUTOINDEX: i32 = 3; +pub const SQLITE_STMTSTATUS_VM_STEP: i32 = 4; +pub const SQLITE_STMTSTATUS_REPREPARE: i32 = 5; +pub const SQLITE_STMTSTATUS_RUN: i32 = 6; +pub const SQLITE_STMTSTATUS_FILTER_MISS: i32 = 7; +pub const SQLITE_STMTSTATUS_FILTER_HIT: i32 = 8; +pub const SQLITE_STMTSTATUS_MEMUSED: i32 = 99; +pub const SQLITE_CHECKPOINT_PASSIVE: i32 = 0; +pub const SQLITE_CHECKPOINT_FULL: i32 = 1; +pub const SQLITE_CHECKPOINT_RESTART: i32 = 2; +pub const SQLITE_CHECKPOINT_TRUNCATE: i32 = 3; +pub const SQLITE_VTAB_CONSTRAINT_SUPPORT: i32 = 1; +pub const SQLITE_VTAB_INNOCUOUS: i32 = 2; +pub const SQLITE_VTAB_DIRECTONLY: i32 = 3; +pub const SQLITE_VTAB_USES_ALL_SCHEMAS: i32 = 4; +pub const SQLITE_ROLLBACK: i32 = 1; +pub const SQLITE_FAIL: i32 = 3; +pub const SQLITE_REPLACE: i32 = 5; +pub const SQLITE_SCANSTAT_NLOOP: i32 = 0; +pub const SQLITE_SCANSTAT_NVISIT: i32 = 1; +pub const SQLITE_SCANSTAT_EST: i32 = 2; +pub const SQLITE_SCANSTAT_NAME: i32 = 3; +pub const SQLITE_SCANSTAT_EXPLAIN: i32 = 4; +pub const SQLITE_SCANSTAT_SELECTID: i32 = 5; +pub const SQLITE_SCANSTAT_PARENTID: i32 = 6; +pub const SQLITE_SCANSTAT_NCYCLE: i32 = 7; +pub const SQLITE_SCANSTAT_COMPLEX: i32 = 1; +pub const SQLITE_SERIALIZE_NOCOPY: ::std::os::raw::c_uint = 1; +pub const SQLITE_DESERIALIZE_FREEONCLOSE: ::std::os::raw::c_uint = 1; +pub const SQLITE_DESERIALIZE_RESIZEABLE: ::std::os::raw::c_uint = 2; +pub const SQLITE_DESERIALIZE_READONLY: ::std::os::raw::c_uint = 4; +pub const NOT_WITHIN: i32 = 0; +pub const PARTLY_WITHIN: i32 = 1; +pub const FULLY_WITHIN: i32 = 2; +pub const SQLITE_SESSION_OBJCONFIG_SIZE: i32 = 1; +pub const SQLITE_SESSION_OBJCONFIG_ROWID: i32 = 2; +pub const SQLITE_CHANGESETSTART_INVERT: i32 = 2; +pub const SQLITE_CHANGESETAPPLY_NOSAVEPOINT: i32 = 1; +pub const SQLITE_CHANGESETAPPLY_INVERT: i32 = 2; +pub const SQLITE_CHANGESETAPPLY_IGNORENOOP: i32 = 4; +pub const SQLITE_CHANGESETAPPLY_FKNOACTION: i32 = 8; +pub const SQLITE_CHANGESET_DATA: i32 = 1; +pub const SQLITE_CHANGESET_NOTFOUND: i32 = 2; +pub const SQLITE_CHANGESET_CONFLICT: i32 = 3; +pub const SQLITE_CHANGESET_CONSTRAINT: i32 = 4; +pub const SQLITE_CHANGESET_FOREIGN_KEY: i32 = 5; +pub const SQLITE_CHANGESET_OMIT: i32 = 0; +pub const SQLITE_CHANGESET_REPLACE: i32 = 1; +pub const SQLITE_CHANGESET_ABORT: i32 = 2; +pub const SQLITE_SESSION_CONFIG_STRMSIZE: i32 = 1; +pub const FTS5_TOKENIZE_QUERY: i32 = 1; +pub const FTS5_TOKENIZE_PREFIX: i32 = 2; +pub const FTS5_TOKENIZE_DOCUMENT: i32 = 4; +pub const FTS5_TOKENIZE_AUX: i32 = 8; +pub const FTS5_TOKEN_COLOCATED: i32 = 1; +extern "C" { + pub static sqlite3_version: [::std::os::raw::c_char; 0usize]; +} +extern "C" { + pub fn sqlite3_libversion() -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_sourceid() -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_libversion_number() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_compileoption_used( + zOptName: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_compileoption_get(N: ::std::os::raw::c_int) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_threadsafe() -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3 { + _unused: [u8; 0], +} +pub type sqlite_int64 = ::std::os::raw::c_longlong; +pub type sqlite_uint64 = ::std::os::raw::c_ulonglong; +pub type sqlite3_int64 = sqlite_int64; +pub type sqlite3_uint64 = sqlite_uint64; +extern "C" { + pub fn sqlite3_close(arg1: *mut sqlite3) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_close_v2(arg1: *mut sqlite3) -> ::std::os::raw::c_int; +} +pub type sqlite3_callback = ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: ::std::os::raw::c_int, + arg3: *mut *mut ::std::os::raw::c_char, + arg4: *mut *mut ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int, +>; +extern "C" { + pub fn sqlite3_exec( + arg1: *mut sqlite3, + sql: *const ::std::os::raw::c_char, + callback: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: ::std::os::raw::c_int, + arg3: *mut *mut ::std::os::raw::c_char, + arg4: *mut *mut ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int, + >, + arg2: *mut ::std::os::raw::c_void, + errmsg: *mut *mut ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_file { + pub pMethods: *const sqlite3_io_methods, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_io_methods { + pub iVersion: ::std::os::raw::c_int, + pub xClose: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_file) -> ::std::os::raw::c_int, + >, + pub xRead: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_file, + arg2: *mut ::std::os::raw::c_void, + iAmt: ::std::os::raw::c_int, + iOfst: sqlite3_int64, + ) -> ::std::os::raw::c_int, + >, + pub xWrite: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_file, + arg2: *const ::std::os::raw::c_void, + iAmt: ::std::os::raw::c_int, + iOfst: sqlite3_int64, + ) -> ::std::os::raw::c_int, + >, + pub xTruncate: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_file, size: sqlite3_int64) -> ::std::os::raw::c_int, + >, + pub xSync: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_file, + flags: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xFileSize: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_file, + pSize: *mut sqlite3_int64, + ) -> ::std::os::raw::c_int, + >, + pub xLock: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_file, + arg2: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xUnlock: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_file, + arg2: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xCheckReservedLock: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_file, + pResOut: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xFileControl: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_file, + op: ::std::os::raw::c_int, + pArg: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int, + >, + pub xSectorSize: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_file) -> ::std::os::raw::c_int, + >, + pub xDeviceCharacteristics: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_file) -> ::std::os::raw::c_int, + >, + pub xShmMap: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_file, + iPg: ::std::os::raw::c_int, + pgsz: ::std::os::raw::c_int, + arg2: ::std::os::raw::c_int, + arg3: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int, + >, + pub xShmLock: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_file, + offset: ::std::os::raw::c_int, + n: ::std::os::raw::c_int, + flags: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xShmBarrier: ::std::option::Option, + pub xShmUnmap: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_file, + deleteFlag: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xFetch: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_file, + iOfst: sqlite3_int64, + iAmt: ::std::os::raw::c_int, + pp: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int, + >, + pub xUnfetch: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_file, + iOfst: sqlite3_int64, + p: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int, + >, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_mutex { + _unused: [u8; 0], +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_api_routines { + _unused: [u8; 0], +} +pub type sqlite3_filename = *const ::std::os::raw::c_char; +pub type sqlite3_syscall_ptr = ::std::option::Option; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_vfs { + pub iVersion: ::std::os::raw::c_int, + pub szOsFile: ::std::os::raw::c_int, + pub mxPathname: ::std::os::raw::c_int, + pub pNext: *mut sqlite3_vfs, + pub zName: *const ::std::os::raw::c_char, + pub pAppData: *mut ::std::os::raw::c_void, + pub xOpen: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vfs, + zName: sqlite3_filename, + arg2: *mut sqlite3_file, + flags: ::std::os::raw::c_int, + pOutFlags: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xDelete: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vfs, + zName: *const ::std::os::raw::c_char, + syncDir: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xAccess: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vfs, + zName: *const ::std::os::raw::c_char, + flags: ::std::os::raw::c_int, + pResOut: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xFullPathname: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vfs, + zName: *const ::std::os::raw::c_char, + nOut: ::std::os::raw::c_int, + zOut: *mut ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int, + >, + pub xDlOpen: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vfs, + zFilename: *const ::std::os::raw::c_char, + ) -> *mut ::std::os::raw::c_void, + >, + pub xDlError: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vfs, + nByte: ::std::os::raw::c_int, + zErrMsg: *mut ::std::os::raw::c_char, + ), + >, + pub xDlSym: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vfs, + arg2: *mut ::std::os::raw::c_void, + zSymbol: *const ::std::os::raw::c_char, + ) -> ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vfs, + arg2: *mut ::std::os::raw::c_void, + zSymbol: *const ::std::os::raw::c_char, + ), + >, + >, + pub xDlClose: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_vfs, arg2: *mut ::std::os::raw::c_void), + >, + pub xRandomness: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vfs, + nByte: ::std::os::raw::c_int, + zOut: *mut ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int, + >, + pub xSleep: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vfs, + microseconds: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xCurrentTime: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_vfs, arg2: *mut f64) -> ::std::os::raw::c_int, + >, + pub xGetLastError: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vfs, + arg2: ::std::os::raw::c_int, + arg3: *mut ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int, + >, + pub xCurrentTimeInt64: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vfs, + arg2: *mut sqlite3_int64, + ) -> ::std::os::raw::c_int, + >, + pub xSetSystemCall: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vfs, + zName: *const ::std::os::raw::c_char, + arg2: sqlite3_syscall_ptr, + ) -> ::std::os::raw::c_int, + >, + pub xGetSystemCall: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vfs, + zName: *const ::std::os::raw::c_char, + ) -> sqlite3_syscall_ptr, + >, + pub xNextSystemCall: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vfs, + zName: *const ::std::os::raw::c_char, + ) -> *const ::std::os::raw::c_char, + >, +} +extern "C" { + pub fn sqlite3_initialize() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_shutdown() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_os_init() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_os_end() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_config(arg1: ::std::os::raw::c_int, ...) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_db_config( + arg1: *mut sqlite3, + op: ::std::os::raw::c_int, + ... + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_mem_methods { + pub xMalloc: ::std::option::Option< + unsafe extern "C" fn(arg1: ::std::os::raw::c_int) -> *mut ::std::os::raw::c_void, + >, + pub xFree: ::std::option::Option, + pub xRealloc: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: ::std::os::raw::c_int, + ) -> *mut ::std::os::raw::c_void, + >, + pub xSize: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void) -> ::std::os::raw::c_int, + >, + pub xRoundup: ::std::option::Option< + unsafe extern "C" fn(arg1: ::std::os::raw::c_int) -> ::std::os::raw::c_int, + >, + pub xInit: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void) -> ::std::os::raw::c_int, + >, + pub xShutdown: ::std::option::Option, + pub pAppData: *mut ::std::os::raw::c_void, +} +extern "C" { + pub fn sqlite3_extended_result_codes( + arg1: *mut sqlite3, + onoff: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_last_insert_rowid(arg1: *mut sqlite3) -> sqlite3_int64; +} +extern "C" { + pub fn sqlite3_set_last_insert_rowid(arg1: *mut sqlite3, arg2: sqlite3_int64); +} +extern "C" { + pub fn sqlite3_changes(arg1: *mut sqlite3) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_changes64(arg1: *mut sqlite3) -> sqlite3_int64; +} +extern "C" { + pub fn sqlite3_total_changes(arg1: *mut sqlite3) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_total_changes64(arg1: *mut sqlite3) -> sqlite3_int64; +} +extern "C" { + pub fn sqlite3_interrupt(arg1: *mut sqlite3); +} +extern "C" { + pub fn sqlite3_is_interrupted(arg1: *mut sqlite3) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_complete(sql: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_complete16(sql: *const ::std::os::raw::c_void) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_busy_handler( + arg1: *mut sqlite3, + arg2: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + arg3: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_busy_timeout( + arg1: *mut sqlite3, + ms: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_get_table( + db: *mut sqlite3, + zSql: *const ::std::os::raw::c_char, + pazResult: *mut *mut *mut ::std::os::raw::c_char, + pnRow: *mut ::std::os::raw::c_int, + pnColumn: *mut ::std::os::raw::c_int, + pzErrmsg: *mut *mut ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_free_table(result: *mut *mut ::std::os::raw::c_char); +} +extern "C" { + pub fn sqlite3_mprintf(arg1: *const ::std::os::raw::c_char, ...) + -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_snprintf( + arg1: ::std::os::raw::c_int, + arg2: *mut ::std::os::raw::c_char, + arg3: *const ::std::os::raw::c_char, + ... + ) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_malloc(arg1: ::std::os::raw::c_int) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_malloc64(arg1: sqlite3_uint64) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_realloc( + arg1: *mut ::std::os::raw::c_void, + arg2: ::std::os::raw::c_int, + ) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_realloc64( + arg1: *mut ::std::os::raw::c_void, + arg2: sqlite3_uint64, + ) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_free(arg1: *mut ::std::os::raw::c_void); +} +extern "C" { + pub fn sqlite3_msize(arg1: *mut ::std::os::raw::c_void) -> sqlite3_uint64; +} +extern "C" { + pub fn sqlite3_memory_used() -> sqlite3_int64; +} +extern "C" { + pub fn sqlite3_memory_highwater(resetFlag: ::std::os::raw::c_int) -> sqlite3_int64; +} +extern "C" { + pub fn sqlite3_randomness(N: ::std::os::raw::c_int, P: *mut ::std::os::raw::c_void); +} +extern "C" { + pub fn sqlite3_set_authorizer( + arg1: *mut sqlite3, + xAuth: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: ::std::os::raw::c_int, + arg3: *const ::std::os::raw::c_char, + arg4: *const ::std::os::raw::c_char, + arg5: *const ::std::os::raw::c_char, + arg6: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int, + >, + pUserData: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_trace( + arg1: *mut sqlite3, + xTrace: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: *const ::std::os::raw::c_char, + ), + >, + arg2: *mut ::std::os::raw::c_void, + ) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_profile( + arg1: *mut sqlite3, + xProfile: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: *const ::std::os::raw::c_char, + arg3: sqlite3_uint64, + ), + >, + arg2: *mut ::std::os::raw::c_void, + ) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_trace_v2( + arg1: *mut sqlite3, + uMask: ::std::os::raw::c_uint, + xCallback: ::std::option::Option< + unsafe extern "C" fn( + arg1: ::std::os::raw::c_uint, + arg2: *mut ::std::os::raw::c_void, + arg3: *mut ::std::os::raw::c_void, + arg4: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int, + >, + pCtx: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_progress_handler( + arg1: *mut sqlite3, + arg2: ::std::os::raw::c_int, + arg3: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void) -> ::std::os::raw::c_int, + >, + arg4: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + pub fn sqlite3_open( + filename: *const ::std::os::raw::c_char, + ppDb: *mut *mut sqlite3, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_open16( + filename: *const ::std::os::raw::c_void, + ppDb: *mut *mut sqlite3, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_open_v2( + filename: *const ::std::os::raw::c_char, + ppDb: *mut *mut sqlite3, + flags: ::std::os::raw::c_int, + zVfs: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_uri_parameter( + z: sqlite3_filename, + zParam: *const ::std::os::raw::c_char, + ) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_uri_boolean( + z: sqlite3_filename, + zParam: *const ::std::os::raw::c_char, + bDefault: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_uri_int64( + arg1: sqlite3_filename, + arg2: *const ::std::os::raw::c_char, + arg3: sqlite3_int64, + ) -> sqlite3_int64; +} +extern "C" { + pub fn sqlite3_uri_key( + z: sqlite3_filename, + N: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_filename_database(arg1: sqlite3_filename) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_filename_journal(arg1: sqlite3_filename) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_filename_wal(arg1: sqlite3_filename) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_database_file_object(arg1: *const ::std::os::raw::c_char) -> *mut sqlite3_file; +} +extern "C" { + pub fn sqlite3_create_filename( + zDatabase: *const ::std::os::raw::c_char, + zJournal: *const ::std::os::raw::c_char, + zWal: *const ::std::os::raw::c_char, + nParam: ::std::os::raw::c_int, + azParam: *mut *const ::std::os::raw::c_char, + ) -> sqlite3_filename; +} +extern "C" { + pub fn sqlite3_free_filename(arg1: sqlite3_filename); +} +extern "C" { + pub fn sqlite3_errcode(db: *mut sqlite3) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_extended_errcode(db: *mut sqlite3) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_errmsg(arg1: *mut sqlite3) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_errmsg16(arg1: *mut sqlite3) -> *const ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_errstr(arg1: ::std::os::raw::c_int) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_error_offset(db: *mut sqlite3) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_stmt { + _unused: [u8; 0], +} +extern "C" { + pub fn sqlite3_limit( + arg1: *mut sqlite3, + id: ::std::os::raw::c_int, + newVal: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_prepare( + db: *mut sqlite3, + zSql: *const ::std::os::raw::c_char, + nByte: ::std::os::raw::c_int, + ppStmt: *mut *mut sqlite3_stmt, + pzTail: *mut *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_prepare_v2( + db: *mut sqlite3, + zSql: *const ::std::os::raw::c_char, + nByte: ::std::os::raw::c_int, + ppStmt: *mut *mut sqlite3_stmt, + pzTail: *mut *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_prepare_v3( + db: *mut sqlite3, + zSql: *const ::std::os::raw::c_char, + nByte: ::std::os::raw::c_int, + prepFlags: ::std::os::raw::c_uint, + ppStmt: *mut *mut sqlite3_stmt, + pzTail: *mut *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_prepare16( + db: *mut sqlite3, + zSql: *const ::std::os::raw::c_void, + nByte: ::std::os::raw::c_int, + ppStmt: *mut *mut sqlite3_stmt, + pzTail: *mut *const ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_prepare16_v2( + db: *mut sqlite3, + zSql: *const ::std::os::raw::c_void, + nByte: ::std::os::raw::c_int, + ppStmt: *mut *mut sqlite3_stmt, + pzTail: *mut *const ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_prepare16_v3( + db: *mut sqlite3, + zSql: *const ::std::os::raw::c_void, + nByte: ::std::os::raw::c_int, + prepFlags: ::std::os::raw::c_uint, + ppStmt: *mut *mut sqlite3_stmt, + pzTail: *mut *const ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_sql(pStmt: *mut sqlite3_stmt) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_expanded_sql(pStmt: *mut sqlite3_stmt) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_stmt_readonly(pStmt: *mut sqlite3_stmt) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_stmt_isexplain(pStmt: *mut sqlite3_stmt) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_stmt_explain( + pStmt: *mut sqlite3_stmt, + eMode: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_stmt_busy(arg1: *mut sqlite3_stmt) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_value { + _unused: [u8; 0], +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_context { + _unused: [u8; 0], +} +extern "C" { + pub fn sqlite3_bind_blob( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + arg3: *const ::std::os::raw::c_void, + n: ::std::os::raw::c_int, + arg4: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_bind_blob64( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + arg3: *const ::std::os::raw::c_void, + arg4: sqlite3_uint64, + arg5: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_bind_double( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + arg3: f64, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_bind_int( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + arg3: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_bind_int64( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + arg3: sqlite3_int64, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_bind_null( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_bind_text( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + arg3: *const ::std::os::raw::c_char, + arg4: ::std::os::raw::c_int, + arg5: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_bind_text16( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + arg3: *const ::std::os::raw::c_void, + arg4: ::std::os::raw::c_int, + arg5: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_bind_text64( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + arg3: *const ::std::os::raw::c_char, + arg4: sqlite3_uint64, + arg5: ::std::option::Option, + encoding: ::std::os::raw::c_uchar, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_bind_value( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + arg3: *const sqlite3_value, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_bind_pointer( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + arg3: *mut ::std::os::raw::c_void, + arg4: *const ::std::os::raw::c_char, + arg5: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_bind_zeroblob( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + n: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_bind_zeroblob64( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + arg3: sqlite3_uint64, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_bind_parameter_count(arg1: *mut sqlite3_stmt) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_bind_parameter_name( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_bind_parameter_index( + arg1: *mut sqlite3_stmt, + zName: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_clear_bindings(arg1: *mut sqlite3_stmt) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_column_count(pStmt: *mut sqlite3_stmt) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_column_name( + arg1: *mut sqlite3_stmt, + N: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_column_name16( + arg1: *mut sqlite3_stmt, + N: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_column_database_name( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_column_database_name16( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_column_table_name( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_column_table_name16( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_column_origin_name( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_column_origin_name16( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_column_decltype( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_column_decltype16( + arg1: *mut sqlite3_stmt, + arg2: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_step(arg1: *mut sqlite3_stmt) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_data_count(pStmt: *mut sqlite3_stmt) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_column_blob( + arg1: *mut sqlite3_stmt, + iCol: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_column_double(arg1: *mut sqlite3_stmt, iCol: ::std::os::raw::c_int) -> f64; +} +extern "C" { + pub fn sqlite3_column_int( + arg1: *mut sqlite3_stmt, + iCol: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_column_int64( + arg1: *mut sqlite3_stmt, + iCol: ::std::os::raw::c_int, + ) -> sqlite3_int64; +} +extern "C" { + pub fn sqlite3_column_text( + arg1: *mut sqlite3_stmt, + iCol: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_uchar; +} +extern "C" { + pub fn sqlite3_column_text16( + arg1: *mut sqlite3_stmt, + iCol: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_column_value( + arg1: *mut sqlite3_stmt, + iCol: ::std::os::raw::c_int, + ) -> *mut sqlite3_value; +} +extern "C" { + pub fn sqlite3_column_bytes( + arg1: *mut sqlite3_stmt, + iCol: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_column_bytes16( + arg1: *mut sqlite3_stmt, + iCol: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_column_type( + arg1: *mut sqlite3_stmt, + iCol: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_finalize(pStmt: *mut sqlite3_stmt) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_reset(pStmt: *mut sqlite3_stmt) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_create_function( + db: *mut sqlite3, + zFunctionName: *const ::std::os::raw::c_char, + nArg: ::std::os::raw::c_int, + eTextRep: ::std::os::raw::c_int, + pApp: *mut ::std::os::raw::c_void, + xFunc: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_context, + arg2: ::std::os::raw::c_int, + arg3: *mut *mut sqlite3_value, + ), + >, + xStep: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_context, + arg2: ::std::os::raw::c_int, + arg3: *mut *mut sqlite3_value, + ), + >, + xFinal: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_create_function16( + db: *mut sqlite3, + zFunctionName: *const ::std::os::raw::c_void, + nArg: ::std::os::raw::c_int, + eTextRep: ::std::os::raw::c_int, + pApp: *mut ::std::os::raw::c_void, + xFunc: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_context, + arg2: ::std::os::raw::c_int, + arg3: *mut *mut sqlite3_value, + ), + >, + xStep: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_context, + arg2: ::std::os::raw::c_int, + arg3: *mut *mut sqlite3_value, + ), + >, + xFinal: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_create_function_v2( + db: *mut sqlite3, + zFunctionName: *const ::std::os::raw::c_char, + nArg: ::std::os::raw::c_int, + eTextRep: ::std::os::raw::c_int, + pApp: *mut ::std::os::raw::c_void, + xFunc: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_context, + arg2: ::std::os::raw::c_int, + arg3: *mut *mut sqlite3_value, + ), + >, + xStep: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_context, + arg2: ::std::os::raw::c_int, + arg3: *mut *mut sqlite3_value, + ), + >, + xFinal: ::std::option::Option, + xDestroy: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_create_window_function( + db: *mut sqlite3, + zFunctionName: *const ::std::os::raw::c_char, + nArg: ::std::os::raw::c_int, + eTextRep: ::std::os::raw::c_int, + pApp: *mut ::std::os::raw::c_void, + xStep: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_context, + arg2: ::std::os::raw::c_int, + arg3: *mut *mut sqlite3_value, + ), + >, + xFinal: ::std::option::Option, + xValue: ::std::option::Option, + xInverse: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_context, + arg2: ::std::os::raw::c_int, + arg3: *mut *mut sqlite3_value, + ), + >, + xDestroy: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_aggregate_count(arg1: *mut sqlite3_context) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_expired(arg1: *mut sqlite3_stmt) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_transfer_bindings( + arg1: *mut sqlite3_stmt, + arg2: *mut sqlite3_stmt, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_global_recover() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_thread_cleanup(); +} +extern "C" { + pub fn sqlite3_memory_alarm( + arg1: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: sqlite3_int64, + arg3: ::std::os::raw::c_int, + ), + >, + arg2: *mut ::std::os::raw::c_void, + arg3: sqlite3_int64, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_value_blob(arg1: *mut sqlite3_value) -> *const ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_value_double(arg1: *mut sqlite3_value) -> f64; +} +extern "C" { + pub fn sqlite3_value_int(arg1: *mut sqlite3_value) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_value_int64(arg1: *mut sqlite3_value) -> sqlite3_int64; +} +extern "C" { + pub fn sqlite3_value_pointer( + arg1: *mut sqlite3_value, + arg2: *const ::std::os::raw::c_char, + ) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_value_text(arg1: *mut sqlite3_value) -> *const ::std::os::raw::c_uchar; +} +extern "C" { + pub fn sqlite3_value_text16(arg1: *mut sqlite3_value) -> *const ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_value_text16le(arg1: *mut sqlite3_value) -> *const ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_value_text16be(arg1: *mut sqlite3_value) -> *const ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_value_bytes(arg1: *mut sqlite3_value) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_value_bytes16(arg1: *mut sqlite3_value) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_value_type(arg1: *mut sqlite3_value) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_value_numeric_type(arg1: *mut sqlite3_value) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_value_nochange(arg1: *mut sqlite3_value) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_value_frombind(arg1: *mut sqlite3_value) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_value_encoding(arg1: *mut sqlite3_value) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_value_subtype(arg1: *mut sqlite3_value) -> ::std::os::raw::c_uint; +} +extern "C" { + pub fn sqlite3_value_dup(arg1: *const sqlite3_value) -> *mut sqlite3_value; +} +extern "C" { + pub fn sqlite3_value_free(arg1: *mut sqlite3_value); +} +extern "C" { + pub fn sqlite3_aggregate_context( + arg1: *mut sqlite3_context, + nBytes: ::std::os::raw::c_int, + ) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_user_data(arg1: *mut sqlite3_context) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_context_db_handle(arg1: *mut sqlite3_context) -> *mut sqlite3; +} +extern "C" { + pub fn sqlite3_get_auxdata( + arg1: *mut sqlite3_context, + N: ::std::os::raw::c_int, + ) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_set_auxdata( + arg1: *mut sqlite3_context, + N: ::std::os::raw::c_int, + arg2: *mut ::std::os::raw::c_void, + arg3: ::std::option::Option, + ); +} +extern "C" { + pub fn sqlite3_get_clientdata( + arg1: *mut sqlite3, + arg2: *const ::std::os::raw::c_char, + ) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_set_clientdata( + arg1: *mut sqlite3, + arg2: *const ::std::os::raw::c_char, + arg3: *mut ::std::os::raw::c_void, + arg4: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +pub type sqlite3_destructor_type = + ::std::option::Option; +extern "C" { + pub fn sqlite3_result_blob( + arg1: *mut sqlite3_context, + arg2: *const ::std::os::raw::c_void, + arg3: ::std::os::raw::c_int, + arg4: ::std::option::Option, + ); +} +extern "C" { + pub fn sqlite3_result_blob64( + arg1: *mut sqlite3_context, + arg2: *const ::std::os::raw::c_void, + arg3: sqlite3_uint64, + arg4: ::std::option::Option, + ); +} +extern "C" { + pub fn sqlite3_result_double(arg1: *mut sqlite3_context, arg2: f64); +} +extern "C" { + pub fn sqlite3_result_error( + arg1: *mut sqlite3_context, + arg2: *const ::std::os::raw::c_char, + arg3: ::std::os::raw::c_int, + ); +} +extern "C" { + pub fn sqlite3_result_error16( + arg1: *mut sqlite3_context, + arg2: *const ::std::os::raw::c_void, + arg3: ::std::os::raw::c_int, + ); +} +extern "C" { + pub fn sqlite3_result_error_toobig(arg1: *mut sqlite3_context); +} +extern "C" { + pub fn sqlite3_result_error_nomem(arg1: *mut sqlite3_context); +} +extern "C" { + pub fn sqlite3_result_error_code(arg1: *mut sqlite3_context, arg2: ::std::os::raw::c_int); +} +extern "C" { + pub fn sqlite3_result_int(arg1: *mut sqlite3_context, arg2: ::std::os::raw::c_int); +} +extern "C" { + pub fn sqlite3_result_int64(arg1: *mut sqlite3_context, arg2: sqlite3_int64); +} +extern "C" { + pub fn sqlite3_result_null(arg1: *mut sqlite3_context); +} +extern "C" { + pub fn sqlite3_result_text( + arg1: *mut sqlite3_context, + arg2: *const ::std::os::raw::c_char, + arg3: ::std::os::raw::c_int, + arg4: ::std::option::Option, + ); +} +extern "C" { + pub fn sqlite3_result_text64( + arg1: *mut sqlite3_context, + arg2: *const ::std::os::raw::c_char, + arg3: sqlite3_uint64, + arg4: ::std::option::Option, + encoding: ::std::os::raw::c_uchar, + ); +} +extern "C" { + pub fn sqlite3_result_text16( + arg1: *mut sqlite3_context, + arg2: *const ::std::os::raw::c_void, + arg3: ::std::os::raw::c_int, + arg4: ::std::option::Option, + ); +} +extern "C" { + pub fn sqlite3_result_text16le( + arg1: *mut sqlite3_context, + arg2: *const ::std::os::raw::c_void, + arg3: ::std::os::raw::c_int, + arg4: ::std::option::Option, + ); +} +extern "C" { + pub fn sqlite3_result_text16be( + arg1: *mut sqlite3_context, + arg2: *const ::std::os::raw::c_void, + arg3: ::std::os::raw::c_int, + arg4: ::std::option::Option, + ); +} +extern "C" { + pub fn sqlite3_result_value(arg1: *mut sqlite3_context, arg2: *mut sqlite3_value); +} +extern "C" { + pub fn sqlite3_result_pointer( + arg1: *mut sqlite3_context, + arg2: *mut ::std::os::raw::c_void, + arg3: *const ::std::os::raw::c_char, + arg4: ::std::option::Option, + ); +} +extern "C" { + pub fn sqlite3_result_zeroblob(arg1: *mut sqlite3_context, n: ::std::os::raw::c_int); +} +extern "C" { + pub fn sqlite3_result_zeroblob64( + arg1: *mut sqlite3_context, + n: sqlite3_uint64, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_result_subtype(arg1: *mut sqlite3_context, arg2: ::std::os::raw::c_uint); +} +extern "C" { + pub fn sqlite3_create_collation( + arg1: *mut sqlite3, + zName: *const ::std::os::raw::c_char, + eTextRep: ::std::os::raw::c_int, + pArg: *mut ::std::os::raw::c_void, + xCompare: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: ::std::os::raw::c_int, + arg3: *const ::std::os::raw::c_void, + arg4: ::std::os::raw::c_int, + arg5: *const ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int, + >, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_create_collation_v2( + arg1: *mut sqlite3, + zName: *const ::std::os::raw::c_char, + eTextRep: ::std::os::raw::c_int, + pArg: *mut ::std::os::raw::c_void, + xCompare: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: ::std::os::raw::c_int, + arg3: *const ::std::os::raw::c_void, + arg4: ::std::os::raw::c_int, + arg5: *const ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int, + >, + xDestroy: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_create_collation16( + arg1: *mut sqlite3, + zName: *const ::std::os::raw::c_void, + eTextRep: ::std::os::raw::c_int, + pArg: *mut ::std::os::raw::c_void, + xCompare: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: ::std::os::raw::c_int, + arg3: *const ::std::os::raw::c_void, + arg4: ::std::os::raw::c_int, + arg5: *const ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int, + >, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_collation_needed( + arg1: *mut sqlite3, + arg2: *mut ::std::os::raw::c_void, + arg3: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: *mut sqlite3, + eTextRep: ::std::os::raw::c_int, + arg3: *const ::std::os::raw::c_char, + ), + >, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_collation_needed16( + arg1: *mut sqlite3, + arg2: *mut ::std::os::raw::c_void, + arg3: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: *mut sqlite3, + eTextRep: ::std::os::raw::c_int, + arg3: *const ::std::os::raw::c_void, + ), + >, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_sleep(arg1: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub static mut sqlite3_temp_directory: *mut ::std::os::raw::c_char; +} +extern "C" { + pub static mut sqlite3_data_directory: *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_win32_set_directory( + type_: ::std::os::raw::c_ulong, + zValue: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_win32_set_directory8( + type_: ::std::os::raw::c_ulong, + zValue: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_win32_set_directory16( + type_: ::std::os::raw::c_ulong, + zValue: *const ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_get_autocommit(arg1: *mut sqlite3) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_db_handle(arg1: *mut sqlite3_stmt) -> *mut sqlite3; +} +extern "C" { + pub fn sqlite3_db_name( + db: *mut sqlite3, + N: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_db_filename( + db: *mut sqlite3, + zDbName: *const ::std::os::raw::c_char, + ) -> sqlite3_filename; +} +extern "C" { + pub fn sqlite3_db_readonly( + db: *mut sqlite3, + zDbName: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_txn_state( + arg1: *mut sqlite3, + zSchema: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_next_stmt(pDb: *mut sqlite3, pStmt: *mut sqlite3_stmt) -> *mut sqlite3_stmt; +} +extern "C" { + pub fn sqlite3_commit_hook( + arg1: *mut sqlite3, + arg2: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void) -> ::std::os::raw::c_int, + >, + arg3: *mut ::std::os::raw::c_void, + ) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_rollback_hook( + arg1: *mut sqlite3, + arg2: ::std::option::Option, + arg3: *mut ::std::os::raw::c_void, + ) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_autovacuum_pages( + db: *mut sqlite3, + arg1: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: *const ::std::os::raw::c_char, + arg3: ::std::os::raw::c_uint, + arg4: ::std::os::raw::c_uint, + arg5: ::std::os::raw::c_uint, + ) -> ::std::os::raw::c_uint, + >, + arg2: *mut ::std::os::raw::c_void, + arg3: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_update_hook( + arg1: *mut sqlite3, + arg2: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: ::std::os::raw::c_int, + arg3: *const ::std::os::raw::c_char, + arg4: *const ::std::os::raw::c_char, + arg5: sqlite3_int64, + ), + >, + arg3: *mut ::std::os::raw::c_void, + ) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_enable_shared_cache(arg1: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_release_memory(arg1: ::std::os::raw::c_int) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_db_release_memory(arg1: *mut sqlite3) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_soft_heap_limit64(N: sqlite3_int64) -> sqlite3_int64; +} +extern "C" { + pub fn sqlite3_hard_heap_limit64(N: sqlite3_int64) -> sqlite3_int64; +} +extern "C" { + pub fn sqlite3_soft_heap_limit(N: ::std::os::raw::c_int); +} +extern "C" { + pub fn sqlite3_table_column_metadata( + db: *mut sqlite3, + zDbName: *const ::std::os::raw::c_char, + zTableName: *const ::std::os::raw::c_char, + zColumnName: *const ::std::os::raw::c_char, + pzDataType: *mut *const ::std::os::raw::c_char, + pzCollSeq: *mut *const ::std::os::raw::c_char, + pNotNull: *mut ::std::os::raw::c_int, + pPrimaryKey: *mut ::std::os::raw::c_int, + pAutoinc: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_load_extension( + db: *mut sqlite3, + zFile: *const ::std::os::raw::c_char, + zProc: *const ::std::os::raw::c_char, + pzErrMsg: *mut *mut ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_enable_load_extension( + db: *mut sqlite3, + onoff: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_reset_auto_extension(); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_module { + pub iVersion: ::std::os::raw::c_int, + pub xCreate: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3, + pAux: *mut ::std::os::raw::c_void, + argc: ::std::os::raw::c_int, + argv: *const *const ::std::os::raw::c_char, + ppVTab: *mut *mut sqlite3_vtab, + arg2: *mut *mut ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int, + >, + pub xConnect: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3, + pAux: *mut ::std::os::raw::c_void, + argc: ::std::os::raw::c_int, + argv: *const *const ::std::os::raw::c_char, + ppVTab: *mut *mut sqlite3_vtab, + arg2: *mut *mut ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int, + >, + pub xBestIndex: ::std::option::Option< + unsafe extern "C" fn( + pVTab: *mut sqlite3_vtab, + arg1: *mut sqlite3_index_info, + ) -> ::std::os::raw::c_int, + >, + pub xDisconnect: ::std::option::Option< + unsafe extern "C" fn(pVTab: *mut sqlite3_vtab) -> ::std::os::raw::c_int, + >, + pub xDestroy: ::std::option::Option< + unsafe extern "C" fn(pVTab: *mut sqlite3_vtab) -> ::std::os::raw::c_int, + >, + pub xOpen: ::std::option::Option< + unsafe extern "C" fn( + pVTab: *mut sqlite3_vtab, + ppCursor: *mut *mut sqlite3_vtab_cursor, + ) -> ::std::os::raw::c_int, + >, + pub xClose: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_vtab_cursor) -> ::std::os::raw::c_int, + >, + pub xFilter: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vtab_cursor, + idxNum: ::std::os::raw::c_int, + idxStr: *const ::std::os::raw::c_char, + argc: ::std::os::raw::c_int, + argv: *mut *mut sqlite3_value, + ) -> ::std::os::raw::c_int, + >, + pub xNext: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_vtab_cursor) -> ::std::os::raw::c_int, + >, + pub xEof: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_vtab_cursor) -> ::std::os::raw::c_int, + >, + pub xColumn: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vtab_cursor, + arg2: *mut sqlite3_context, + arg3: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xRowid: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vtab_cursor, + pRowid: *mut sqlite3_int64, + ) -> ::std::os::raw::c_int, + >, + pub xUpdate: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_vtab, + arg2: ::std::os::raw::c_int, + arg3: *mut *mut sqlite3_value, + arg4: *mut sqlite3_int64, + ) -> ::std::os::raw::c_int, + >, + pub xBegin: ::std::option::Option< + unsafe extern "C" fn(pVTab: *mut sqlite3_vtab) -> ::std::os::raw::c_int, + >, + pub xSync: ::std::option::Option< + unsafe extern "C" fn(pVTab: *mut sqlite3_vtab) -> ::std::os::raw::c_int, + >, + pub xCommit: ::std::option::Option< + unsafe extern "C" fn(pVTab: *mut sqlite3_vtab) -> ::std::os::raw::c_int, + >, + pub xRollback: ::std::option::Option< + unsafe extern "C" fn(pVTab: *mut sqlite3_vtab) -> ::std::os::raw::c_int, + >, + pub xFindFunction: ::std::option::Option< + unsafe extern "C" fn( + pVtab: *mut sqlite3_vtab, + nArg: ::std::os::raw::c_int, + zName: *const ::std::os::raw::c_char, + pxFunc: *mut ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_context, + arg2: ::std::os::raw::c_int, + arg3: *mut *mut sqlite3_value, + ), + >, + ppArg: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int, + >, + pub xRename: ::std::option::Option< + unsafe extern "C" fn( + pVtab: *mut sqlite3_vtab, + zNew: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int, + >, + pub xSavepoint: ::std::option::Option< + unsafe extern "C" fn( + pVTab: *mut sqlite3_vtab, + arg1: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xRelease: ::std::option::Option< + unsafe extern "C" fn( + pVTab: *mut sqlite3_vtab, + arg1: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xRollbackTo: ::std::option::Option< + unsafe extern "C" fn( + pVTab: *mut sqlite3_vtab, + arg1: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xShadowName: ::std::option::Option< + unsafe extern "C" fn(arg1: *const ::std::os::raw::c_char) -> ::std::os::raw::c_int, + >, + pub xIntegrity: ::std::option::Option< + unsafe extern "C" fn( + pVTab: *mut sqlite3_vtab, + zSchema: *const ::std::os::raw::c_char, + zTabName: *const ::std::os::raw::c_char, + mFlags: ::std::os::raw::c_int, + pzErr: *mut *mut ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int, + >, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_index_info { + pub nConstraint: ::std::os::raw::c_int, + pub aConstraint: *mut sqlite3_index_constraint, + pub nOrderBy: ::std::os::raw::c_int, + pub aOrderBy: *mut sqlite3_index_orderby, + pub aConstraintUsage: *mut sqlite3_index_constraint_usage, + pub idxNum: ::std::os::raw::c_int, + pub idxStr: *mut ::std::os::raw::c_char, + pub needToFreeIdxStr: ::std::os::raw::c_int, + pub orderByConsumed: ::std::os::raw::c_int, + pub estimatedCost: f64, + pub estimatedRows: sqlite3_int64, + pub idxFlags: ::std::os::raw::c_int, + pub colUsed: sqlite3_uint64, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_index_constraint { + pub iColumn: ::std::os::raw::c_int, + pub op: ::std::os::raw::c_uchar, + pub usable: ::std::os::raw::c_uchar, + pub iTermOffset: ::std::os::raw::c_int, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_index_orderby { + pub iColumn: ::std::os::raw::c_int, + pub desc: ::std::os::raw::c_uchar, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_index_constraint_usage { + pub argvIndex: ::std::os::raw::c_int, + pub omit: ::std::os::raw::c_uchar, +} +extern "C" { + pub fn sqlite3_create_module( + db: *mut sqlite3, + zName: *const ::std::os::raw::c_char, + p: *const sqlite3_module, + pClientData: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_create_module_v2( + db: *mut sqlite3, + zName: *const ::std::os::raw::c_char, + p: *const sqlite3_module, + pClientData: *mut ::std::os::raw::c_void, + xDestroy: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_drop_modules( + db: *mut sqlite3, + azKeep: *mut *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_vtab { + pub pModule: *const sqlite3_module, + pub nRef: ::std::os::raw::c_int, + pub zErrMsg: *mut ::std::os::raw::c_char, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_vtab_cursor { + pub pVtab: *mut sqlite3_vtab, +} +extern "C" { + pub fn sqlite3_declare_vtab( + arg1: *mut sqlite3, + zSQL: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_overload_function( + arg1: *mut sqlite3, + zFuncName: *const ::std::os::raw::c_char, + nArg: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_blob { + _unused: [u8; 0], +} +extern "C" { + pub fn sqlite3_blob_open( + arg1: *mut sqlite3, + zDb: *const ::std::os::raw::c_char, + zTable: *const ::std::os::raw::c_char, + zColumn: *const ::std::os::raw::c_char, + iRow: sqlite3_int64, + flags: ::std::os::raw::c_int, + ppBlob: *mut *mut sqlite3_blob, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_blob_reopen( + arg1: *mut sqlite3_blob, + arg2: sqlite3_int64, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_blob_close(arg1: *mut sqlite3_blob) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_blob_bytes(arg1: *mut sqlite3_blob) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_blob_read( + arg1: *mut sqlite3_blob, + Z: *mut ::std::os::raw::c_void, + N: ::std::os::raw::c_int, + iOffset: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_blob_write( + arg1: *mut sqlite3_blob, + z: *const ::std::os::raw::c_void, + n: ::std::os::raw::c_int, + iOffset: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_vfs_find(zVfsName: *const ::std::os::raw::c_char) -> *mut sqlite3_vfs; +} +extern "C" { + pub fn sqlite3_vfs_register( + arg1: *mut sqlite3_vfs, + makeDflt: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_vfs_unregister(arg1: *mut sqlite3_vfs) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_mutex_alloc(arg1: ::std::os::raw::c_int) -> *mut sqlite3_mutex; +} +extern "C" { + pub fn sqlite3_mutex_free(arg1: *mut sqlite3_mutex); +} +extern "C" { + pub fn sqlite3_mutex_enter(arg1: *mut sqlite3_mutex); +} +extern "C" { + pub fn sqlite3_mutex_try(arg1: *mut sqlite3_mutex) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_mutex_leave(arg1: *mut sqlite3_mutex); +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_mutex_methods { + pub xMutexInit: ::std::option::Option ::std::os::raw::c_int>, + pub xMutexEnd: ::std::option::Option ::std::os::raw::c_int>, + pub xMutexAlloc: ::std::option::Option< + unsafe extern "C" fn(arg1: ::std::os::raw::c_int) -> *mut sqlite3_mutex, + >, + pub xMutexFree: ::std::option::Option, + pub xMutexEnter: ::std::option::Option, + pub xMutexTry: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_mutex) -> ::std::os::raw::c_int, + >, + pub xMutexLeave: ::std::option::Option, + pub xMutexHeld: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_mutex) -> ::std::os::raw::c_int, + >, + pub xMutexNotheld: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_mutex) -> ::std::os::raw::c_int, + >, +} +extern "C" { + pub fn sqlite3_mutex_held(arg1: *mut sqlite3_mutex) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_mutex_notheld(arg1: *mut sqlite3_mutex) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_db_mutex(arg1: *mut sqlite3) -> *mut sqlite3_mutex; +} +extern "C" { + pub fn sqlite3_file_control( + arg1: *mut sqlite3, + zDbName: *const ::std::os::raw::c_char, + op: ::std::os::raw::c_int, + arg2: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_test_control(op: ::std::os::raw::c_int, ...) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_keyword_count() -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_keyword_name( + arg1: ::std::os::raw::c_int, + arg2: *mut *const ::std::os::raw::c_char, + arg3: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_keyword_check( + arg1: *const ::std::os::raw::c_char, + arg2: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_str { + _unused: [u8; 0], +} +extern "C" { + pub fn sqlite3_str_new(arg1: *mut sqlite3) -> *mut sqlite3_str; +} +extern "C" { + pub fn sqlite3_str_finish(arg1: *mut sqlite3_str) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_str_appendf(arg1: *mut sqlite3_str, zFormat: *const ::std::os::raw::c_char, ...); +} +extern "C" { + pub fn sqlite3_str_append( + arg1: *mut sqlite3_str, + zIn: *const ::std::os::raw::c_char, + N: ::std::os::raw::c_int, + ); +} +extern "C" { + pub fn sqlite3_str_appendall(arg1: *mut sqlite3_str, zIn: *const ::std::os::raw::c_char); +} +extern "C" { + pub fn sqlite3_str_appendchar( + arg1: *mut sqlite3_str, + N: ::std::os::raw::c_int, + C: ::std::os::raw::c_char, + ); +} +extern "C" { + pub fn sqlite3_str_reset(arg1: *mut sqlite3_str); +} +extern "C" { + pub fn sqlite3_str_errcode(arg1: *mut sqlite3_str) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_str_length(arg1: *mut sqlite3_str) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_str_value(arg1: *mut sqlite3_str) -> *mut ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_status( + op: ::std::os::raw::c_int, + pCurrent: *mut ::std::os::raw::c_int, + pHighwater: *mut ::std::os::raw::c_int, + resetFlag: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_status64( + op: ::std::os::raw::c_int, + pCurrent: *mut sqlite3_int64, + pHighwater: *mut sqlite3_int64, + resetFlag: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_db_status( + arg1: *mut sqlite3, + op: ::std::os::raw::c_int, + pCur: *mut ::std::os::raw::c_int, + pHiwtr: *mut ::std::os::raw::c_int, + resetFlg: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_stmt_status( + arg1: *mut sqlite3_stmt, + op: ::std::os::raw::c_int, + resetFlg: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_pcache { + _unused: [u8; 0], +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_pcache_page { + pub pBuf: *mut ::std::os::raw::c_void, + pub pExtra: *mut ::std::os::raw::c_void, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_pcache_methods2 { + pub iVersion: ::std::os::raw::c_int, + pub pArg: *mut ::std::os::raw::c_void, + pub xInit: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void) -> ::std::os::raw::c_int, + >, + pub xShutdown: ::std::option::Option, + pub xCreate: ::std::option::Option< + unsafe extern "C" fn( + szPage: ::std::os::raw::c_int, + szExtra: ::std::os::raw::c_int, + bPurgeable: ::std::os::raw::c_int, + ) -> *mut sqlite3_pcache, + >, + pub xCachesize: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_pcache, nCachesize: ::std::os::raw::c_int), + >, + pub xPagecount: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_pcache) -> ::std::os::raw::c_int, + >, + pub xFetch: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_pcache, + key: ::std::os::raw::c_uint, + createFlag: ::std::os::raw::c_int, + ) -> *mut sqlite3_pcache_page, + >, + pub xUnpin: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_pcache, + arg2: *mut sqlite3_pcache_page, + discard: ::std::os::raw::c_int, + ), + >, + pub xRekey: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_pcache, + arg2: *mut sqlite3_pcache_page, + oldKey: ::std::os::raw::c_uint, + newKey: ::std::os::raw::c_uint, + ), + >, + pub xTruncate: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_pcache, iLimit: ::std::os::raw::c_uint), + >, + pub xDestroy: ::std::option::Option, + pub xShrink: ::std::option::Option, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_pcache_methods { + pub pArg: *mut ::std::os::raw::c_void, + pub xInit: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut ::std::os::raw::c_void) -> ::std::os::raw::c_int, + >, + pub xShutdown: ::std::option::Option, + pub xCreate: ::std::option::Option< + unsafe extern "C" fn( + szPage: ::std::os::raw::c_int, + bPurgeable: ::std::os::raw::c_int, + ) -> *mut sqlite3_pcache, + >, + pub xCachesize: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_pcache, nCachesize: ::std::os::raw::c_int), + >, + pub xPagecount: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_pcache) -> ::std::os::raw::c_int, + >, + pub xFetch: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_pcache, + key: ::std::os::raw::c_uint, + createFlag: ::std::os::raw::c_int, + ) -> *mut ::std::os::raw::c_void, + >, + pub xUnpin: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_pcache, + arg2: *mut ::std::os::raw::c_void, + discard: ::std::os::raw::c_int, + ), + >, + pub xRekey: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_pcache, + arg2: *mut ::std::os::raw::c_void, + oldKey: ::std::os::raw::c_uint, + newKey: ::std::os::raw::c_uint, + ), + >, + pub xTruncate: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_pcache, iLimit: ::std::os::raw::c_uint), + >, + pub xDestroy: ::std::option::Option, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_backup { + _unused: [u8; 0], +} +extern "C" { + pub fn sqlite3_backup_init( + pDest: *mut sqlite3, + zDestName: *const ::std::os::raw::c_char, + pSource: *mut sqlite3, + zSourceName: *const ::std::os::raw::c_char, + ) -> *mut sqlite3_backup; +} +extern "C" { + pub fn sqlite3_backup_step( + p: *mut sqlite3_backup, + nPage: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_backup_finish(p: *mut sqlite3_backup) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_backup_remaining(p: *mut sqlite3_backup) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_backup_pagecount(p: *mut sqlite3_backup) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_unlock_notify( + pBlocked: *mut sqlite3, + xNotify: ::std::option::Option< + unsafe extern "C" fn( + apArg: *mut *mut ::std::os::raw::c_void, + nArg: ::std::os::raw::c_int, + ), + >, + pNotifyArg: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_stricmp( + arg1: *const ::std::os::raw::c_char, + arg2: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_strnicmp( + arg1: *const ::std::os::raw::c_char, + arg2: *const ::std::os::raw::c_char, + arg3: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_strglob( + zGlob: *const ::std::os::raw::c_char, + zStr: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_strlike( + zGlob: *const ::std::os::raw::c_char, + zStr: *const ::std::os::raw::c_char, + cEsc: ::std::os::raw::c_uint, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_log( + iErrCode: ::std::os::raw::c_int, + zFormat: *const ::std::os::raw::c_char, + ... + ); +} +extern "C" { + pub fn sqlite3_wal_hook( + arg1: *mut sqlite3, + arg2: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: *mut sqlite3, + arg3: *const ::std::os::raw::c_char, + arg4: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + arg3: *mut ::std::os::raw::c_void, + ) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_wal_autocheckpoint( + db: *mut sqlite3, + N: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_wal_checkpoint( + db: *mut sqlite3, + zDb: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_wal_checkpoint_v2( + db: *mut sqlite3, + zDb: *const ::std::os::raw::c_char, + eMode: ::std::os::raw::c_int, + pnLog: *mut ::std::os::raw::c_int, + pnCkpt: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_vtab_config( + arg1: *mut sqlite3, + op: ::std::os::raw::c_int, + ... + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_vtab_on_conflict(arg1: *mut sqlite3) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_vtab_nochange(arg1: *mut sqlite3_context) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_vtab_collation( + arg1: *mut sqlite3_index_info, + arg2: ::std::os::raw::c_int, + ) -> *const ::std::os::raw::c_char; +} +extern "C" { + pub fn sqlite3_vtab_distinct(arg1: *mut sqlite3_index_info) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_vtab_in( + arg1: *mut sqlite3_index_info, + iCons: ::std::os::raw::c_int, + bHandle: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_vtab_in_first( + pVal: *mut sqlite3_value, + ppOut: *mut *mut sqlite3_value, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_vtab_in_next( + pVal: *mut sqlite3_value, + ppOut: *mut *mut sqlite3_value, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_vtab_rhs_value( + arg1: *mut sqlite3_index_info, + arg2: ::std::os::raw::c_int, + ppVal: *mut *mut sqlite3_value, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_stmt_scanstatus( + pStmt: *mut sqlite3_stmt, + idx: ::std::os::raw::c_int, + iScanStatusOp: ::std::os::raw::c_int, + pOut: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_stmt_scanstatus_v2( + pStmt: *mut sqlite3_stmt, + idx: ::std::os::raw::c_int, + iScanStatusOp: ::std::os::raw::c_int, + flags: ::std::os::raw::c_int, + pOut: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_stmt_scanstatus_reset(arg1: *mut sqlite3_stmt); +} +extern "C" { + pub fn sqlite3_db_cacheflush(arg1: *mut sqlite3) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_preupdate_hook( + db: *mut sqlite3, + xPreUpdate: ::std::option::Option< + unsafe extern "C" fn( + pCtx: *mut ::std::os::raw::c_void, + db: *mut sqlite3, + op: ::std::os::raw::c_int, + zDb: *const ::std::os::raw::c_char, + zName: *const ::std::os::raw::c_char, + iKey1: sqlite3_int64, + iKey2: sqlite3_int64, + ), + >, + arg1: *mut ::std::os::raw::c_void, + ) -> *mut ::std::os::raw::c_void; +} +extern "C" { + pub fn sqlite3_preupdate_old( + arg1: *mut sqlite3, + arg2: ::std::os::raw::c_int, + arg3: *mut *mut sqlite3_value, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_preupdate_count(arg1: *mut sqlite3) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_preupdate_depth(arg1: *mut sqlite3) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_preupdate_new( + arg1: *mut sqlite3, + arg2: ::std::os::raw::c_int, + arg3: *mut *mut sqlite3_value, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_preupdate_blobwrite(arg1: *mut sqlite3) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_system_errno(arg1: *mut sqlite3) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_snapshot { + pub hidden: [::std::os::raw::c_uchar; 48usize], +} +extern "C" { + pub fn sqlite3_snapshot_get( + db: *mut sqlite3, + zSchema: *const ::std::os::raw::c_char, + ppSnapshot: *mut *mut sqlite3_snapshot, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_snapshot_open( + db: *mut sqlite3, + zSchema: *const ::std::os::raw::c_char, + pSnapshot: *mut sqlite3_snapshot, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_snapshot_free(arg1: *mut sqlite3_snapshot); +} +extern "C" { + pub fn sqlite3_snapshot_cmp( + p1: *mut sqlite3_snapshot, + p2: *mut sqlite3_snapshot, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_snapshot_recover( + db: *mut sqlite3, + zDb: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3_serialize( + db: *mut sqlite3, + zSchema: *const ::std::os::raw::c_char, + piSize: *mut sqlite3_int64, + mFlags: ::std::os::raw::c_uint, + ) -> *mut ::std::os::raw::c_uchar; +} +extern "C" { + pub fn sqlite3_deserialize( + db: *mut sqlite3, + zSchema: *const ::std::os::raw::c_char, + pData: *mut ::std::os::raw::c_uchar, + szDb: sqlite3_int64, + szBuf: sqlite3_int64, + mFlags: ::std::os::raw::c_uint, + ) -> ::std::os::raw::c_int; +} +pub type sqlite3_rtree_dbl = f64; +extern "C" { + pub fn sqlite3_rtree_geometry_callback( + db: *mut sqlite3, + zGeom: *const ::std::os::raw::c_char, + xGeom: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut sqlite3_rtree_geometry, + arg2: ::std::os::raw::c_int, + arg3: *mut sqlite3_rtree_dbl, + arg4: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pContext: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_rtree_geometry { + pub pContext: *mut ::std::os::raw::c_void, + pub nParam: ::std::os::raw::c_int, + pub aParam: *mut sqlite3_rtree_dbl, + pub pUser: *mut ::std::os::raw::c_void, + pub xDelUser: ::std::option::Option, +} +extern "C" { + pub fn sqlite3_rtree_query_callback( + db: *mut sqlite3, + zQueryFunc: *const ::std::os::raw::c_char, + xQueryFunc: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut sqlite3_rtree_query_info) -> ::std::os::raw::c_int, + >, + pContext: *mut ::std::os::raw::c_void, + xDestructor: ::std::option::Option, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_rtree_query_info { + pub pContext: *mut ::std::os::raw::c_void, + pub nParam: ::std::os::raw::c_int, + pub aParam: *mut sqlite3_rtree_dbl, + pub pUser: *mut ::std::os::raw::c_void, + pub xDelUser: ::std::option::Option, + pub aCoord: *mut sqlite3_rtree_dbl, + pub anQueue: *mut ::std::os::raw::c_uint, + pub nCoord: ::std::os::raw::c_int, + pub iLevel: ::std::os::raw::c_int, + pub mxLevel: ::std::os::raw::c_int, + pub iRowid: sqlite3_int64, + pub rParentScore: sqlite3_rtree_dbl, + pub eParentWithin: ::std::os::raw::c_int, + pub eWithin: ::std::os::raw::c_int, + pub rScore: sqlite3_rtree_dbl, + pub apSqlParam: *mut *mut sqlite3_value, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_session { + _unused: [u8; 0], +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_changeset_iter { + _unused: [u8; 0], +} +extern "C" { + pub fn sqlite3session_create( + db: *mut sqlite3, + zDb: *const ::std::os::raw::c_char, + ppSession: *mut *mut sqlite3_session, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3session_delete(pSession: *mut sqlite3_session); +} +extern "C" { + pub fn sqlite3session_object_config( + arg1: *mut sqlite3_session, + op: ::std::os::raw::c_int, + pArg: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3session_enable( + pSession: *mut sqlite3_session, + bEnable: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3session_indirect( + pSession: *mut sqlite3_session, + bIndirect: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3session_attach( + pSession: *mut sqlite3_session, + zTab: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3session_table_filter( + pSession: *mut sqlite3_session, + xFilter: ::std::option::Option< + unsafe extern "C" fn( + pCtx: *mut ::std::os::raw::c_void, + zTab: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int, + >, + pCtx: *mut ::std::os::raw::c_void, + ); +} +extern "C" { + pub fn sqlite3session_changeset( + pSession: *mut sqlite3_session, + pnChangeset: *mut ::std::os::raw::c_int, + ppChangeset: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3session_changeset_size(pSession: *mut sqlite3_session) -> sqlite3_int64; +} +extern "C" { + pub fn sqlite3session_diff( + pSession: *mut sqlite3_session, + zFromDb: *const ::std::os::raw::c_char, + zTbl: *const ::std::os::raw::c_char, + pzErrMsg: *mut *mut ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3session_patchset( + pSession: *mut sqlite3_session, + pnPatchset: *mut ::std::os::raw::c_int, + ppPatchset: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3session_isempty(pSession: *mut sqlite3_session) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3session_memory_used(pSession: *mut sqlite3_session) -> sqlite3_int64; +} +extern "C" { + pub fn sqlite3changeset_start( + pp: *mut *mut sqlite3_changeset_iter, + nChangeset: ::std::os::raw::c_int, + pChangeset: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_start_v2( + pp: *mut *mut sqlite3_changeset_iter, + nChangeset: ::std::os::raw::c_int, + pChangeset: *mut ::std::os::raw::c_void, + flags: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_next(pIter: *mut sqlite3_changeset_iter) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_op( + pIter: *mut sqlite3_changeset_iter, + pzTab: *mut *const ::std::os::raw::c_char, + pnCol: *mut ::std::os::raw::c_int, + pOp: *mut ::std::os::raw::c_int, + pbIndirect: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_pk( + pIter: *mut sqlite3_changeset_iter, + pabPK: *mut *mut ::std::os::raw::c_uchar, + pnCol: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_old( + pIter: *mut sqlite3_changeset_iter, + iVal: ::std::os::raw::c_int, + ppValue: *mut *mut sqlite3_value, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_new( + pIter: *mut sqlite3_changeset_iter, + iVal: ::std::os::raw::c_int, + ppValue: *mut *mut sqlite3_value, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_conflict( + pIter: *mut sqlite3_changeset_iter, + iVal: ::std::os::raw::c_int, + ppValue: *mut *mut sqlite3_value, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_fk_conflicts( + pIter: *mut sqlite3_changeset_iter, + pnOut: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_finalize(pIter: *mut sqlite3_changeset_iter) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_invert( + nIn: ::std::os::raw::c_int, + pIn: *const ::std::os::raw::c_void, + pnOut: *mut ::std::os::raw::c_int, + ppOut: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_concat( + nA: ::std::os::raw::c_int, + pA: *mut ::std::os::raw::c_void, + nB: ::std::os::raw::c_int, + pB: *mut ::std::os::raw::c_void, + pnOut: *mut ::std::os::raw::c_int, + ppOut: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_upgrade( + db: *mut sqlite3, + zDb: *const ::std::os::raw::c_char, + nIn: ::std::os::raw::c_int, + pIn: *const ::std::os::raw::c_void, + pnOut: *mut ::std::os::raw::c_int, + ppOut: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_changegroup { + _unused: [u8; 0], +} +extern "C" { + pub fn sqlite3changegroup_new(pp: *mut *mut sqlite3_changegroup) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changegroup_schema( + arg1: *mut sqlite3_changegroup, + arg2: *mut sqlite3, + zDb: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changegroup_add( + arg1: *mut sqlite3_changegroup, + nData: ::std::os::raw::c_int, + pData: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changegroup_output( + arg1: *mut sqlite3_changegroup, + pnData: *mut ::std::os::raw::c_int, + ppData: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changegroup_delete(arg1: *mut sqlite3_changegroup); +} +extern "C" { + pub fn sqlite3changeset_apply( + db: *mut sqlite3, + nChangeset: ::std::os::raw::c_int, + pChangeset: *mut ::std::os::raw::c_void, + xFilter: ::std::option::Option< + unsafe extern "C" fn( + pCtx: *mut ::std::os::raw::c_void, + zTab: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int, + >, + xConflict: ::std::option::Option< + unsafe extern "C" fn( + pCtx: *mut ::std::os::raw::c_void, + eConflict: ::std::os::raw::c_int, + p: *mut sqlite3_changeset_iter, + ) -> ::std::os::raw::c_int, + >, + pCtx: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_apply_v2( + db: *mut sqlite3, + nChangeset: ::std::os::raw::c_int, + pChangeset: *mut ::std::os::raw::c_void, + xFilter: ::std::option::Option< + unsafe extern "C" fn( + pCtx: *mut ::std::os::raw::c_void, + zTab: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int, + >, + xConflict: ::std::option::Option< + unsafe extern "C" fn( + pCtx: *mut ::std::os::raw::c_void, + eConflict: ::std::os::raw::c_int, + p: *mut sqlite3_changeset_iter, + ) -> ::std::os::raw::c_int, + >, + pCtx: *mut ::std::os::raw::c_void, + ppRebase: *mut *mut ::std::os::raw::c_void, + pnRebase: *mut ::std::os::raw::c_int, + flags: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct sqlite3_rebaser { + _unused: [u8; 0], +} +extern "C" { + pub fn sqlite3rebaser_create(ppNew: *mut *mut sqlite3_rebaser) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3rebaser_configure( + arg1: *mut sqlite3_rebaser, + nRebase: ::std::os::raw::c_int, + pRebase: *const ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3rebaser_rebase( + arg1: *mut sqlite3_rebaser, + nIn: ::std::os::raw::c_int, + pIn: *const ::std::os::raw::c_void, + pnOut: *mut ::std::os::raw::c_int, + ppOut: *mut *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3rebaser_delete(p: *mut sqlite3_rebaser); +} +extern "C" { + pub fn sqlite3changeset_apply_strm( + db: *mut sqlite3, + xInput: ::std::option::Option< + unsafe extern "C" fn( + pIn: *mut ::std::os::raw::c_void, + pData: *mut ::std::os::raw::c_void, + pnData: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pIn: *mut ::std::os::raw::c_void, + xFilter: ::std::option::Option< + unsafe extern "C" fn( + pCtx: *mut ::std::os::raw::c_void, + zTab: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int, + >, + xConflict: ::std::option::Option< + unsafe extern "C" fn( + pCtx: *mut ::std::os::raw::c_void, + eConflict: ::std::os::raw::c_int, + p: *mut sqlite3_changeset_iter, + ) -> ::std::os::raw::c_int, + >, + pCtx: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_apply_v2_strm( + db: *mut sqlite3, + xInput: ::std::option::Option< + unsafe extern "C" fn( + pIn: *mut ::std::os::raw::c_void, + pData: *mut ::std::os::raw::c_void, + pnData: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pIn: *mut ::std::os::raw::c_void, + xFilter: ::std::option::Option< + unsafe extern "C" fn( + pCtx: *mut ::std::os::raw::c_void, + zTab: *const ::std::os::raw::c_char, + ) -> ::std::os::raw::c_int, + >, + xConflict: ::std::option::Option< + unsafe extern "C" fn( + pCtx: *mut ::std::os::raw::c_void, + eConflict: ::std::os::raw::c_int, + p: *mut sqlite3_changeset_iter, + ) -> ::std::os::raw::c_int, + >, + pCtx: *mut ::std::os::raw::c_void, + ppRebase: *mut *mut ::std::os::raw::c_void, + pnRebase: *mut ::std::os::raw::c_int, + flags: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_concat_strm( + xInputA: ::std::option::Option< + unsafe extern "C" fn( + pIn: *mut ::std::os::raw::c_void, + pData: *mut ::std::os::raw::c_void, + pnData: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pInA: *mut ::std::os::raw::c_void, + xInputB: ::std::option::Option< + unsafe extern "C" fn( + pIn: *mut ::std::os::raw::c_void, + pData: *mut ::std::os::raw::c_void, + pnData: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pInB: *mut ::std::os::raw::c_void, + xOutput: ::std::option::Option< + unsafe extern "C" fn( + pOut: *mut ::std::os::raw::c_void, + pData: *const ::std::os::raw::c_void, + nData: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pOut: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_invert_strm( + xInput: ::std::option::Option< + unsafe extern "C" fn( + pIn: *mut ::std::os::raw::c_void, + pData: *mut ::std::os::raw::c_void, + pnData: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pIn: *mut ::std::os::raw::c_void, + xOutput: ::std::option::Option< + unsafe extern "C" fn( + pOut: *mut ::std::os::raw::c_void, + pData: *const ::std::os::raw::c_void, + nData: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pOut: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_start_strm( + pp: *mut *mut sqlite3_changeset_iter, + xInput: ::std::option::Option< + unsafe extern "C" fn( + pIn: *mut ::std::os::raw::c_void, + pData: *mut ::std::os::raw::c_void, + pnData: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pIn: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changeset_start_v2_strm( + pp: *mut *mut sqlite3_changeset_iter, + xInput: ::std::option::Option< + unsafe extern "C" fn( + pIn: *mut ::std::os::raw::c_void, + pData: *mut ::std::os::raw::c_void, + pnData: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pIn: *mut ::std::os::raw::c_void, + flags: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3session_changeset_strm( + pSession: *mut sqlite3_session, + xOutput: ::std::option::Option< + unsafe extern "C" fn( + pOut: *mut ::std::os::raw::c_void, + pData: *const ::std::os::raw::c_void, + nData: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pOut: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3session_patchset_strm( + pSession: *mut sqlite3_session, + xOutput: ::std::option::Option< + unsafe extern "C" fn( + pOut: *mut ::std::os::raw::c_void, + pData: *const ::std::os::raw::c_void, + nData: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pOut: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changegroup_add_strm( + arg1: *mut sqlite3_changegroup, + xInput: ::std::option::Option< + unsafe extern "C" fn( + pIn: *mut ::std::os::raw::c_void, + pData: *mut ::std::os::raw::c_void, + pnData: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pIn: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3changegroup_output_strm( + arg1: *mut sqlite3_changegroup, + xOutput: ::std::option::Option< + unsafe extern "C" fn( + pOut: *mut ::std::os::raw::c_void, + pData: *const ::std::os::raw::c_void, + nData: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pOut: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3rebaser_rebase_strm( + pRebaser: *mut sqlite3_rebaser, + xInput: ::std::option::Option< + unsafe extern "C" fn( + pIn: *mut ::std::os::raw::c_void, + pData: *mut ::std::os::raw::c_void, + pnData: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pIn: *mut ::std::os::raw::c_void, + xOutput: ::std::option::Option< + unsafe extern "C" fn( + pOut: *mut ::std::os::raw::c_void, + pData: *const ::std::os::raw::c_void, + nData: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pOut: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +extern "C" { + pub fn sqlite3session_config( + op: ::std::os::raw::c_int, + pArg: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int; +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct Fts5Context { + _unused: [u8; 0], +} +pub type fts5_extension_function = ::std::option::Option< + unsafe extern "C" fn( + pApi: *const Fts5ExtensionApi, + pFts: *mut Fts5Context, + pCtx: *mut sqlite3_context, + nVal: ::std::os::raw::c_int, + apVal: *mut *mut sqlite3_value, + ), +>; +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct Fts5PhraseIter { + pub a: *const ::std::os::raw::c_uchar, + pub b: *const ::std::os::raw::c_uchar, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct Fts5ExtensionApi { + pub iVersion: ::std::os::raw::c_int, + pub xUserData: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut Fts5Context) -> *mut ::std::os::raw::c_void, + >, + pub xColumnCount: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut Fts5Context) -> ::std::os::raw::c_int, + >, + pub xRowCount: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + pnRow: *mut sqlite3_int64, + ) -> ::std::os::raw::c_int, + >, + pub xColumnTotalSize: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + iCol: ::std::os::raw::c_int, + pnToken: *mut sqlite3_int64, + ) -> ::std::os::raw::c_int, + >, + pub xTokenize: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + pText: *const ::std::os::raw::c_char, + nText: ::std::os::raw::c_int, + pCtx: *mut ::std::os::raw::c_void, + xToken: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + arg2: ::std::os::raw::c_int, + arg3: *const ::std::os::raw::c_char, + arg4: ::std::os::raw::c_int, + arg5: ::std::os::raw::c_int, + arg6: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + ) -> ::std::os::raw::c_int, + >, + pub xPhraseCount: ::std::option::Option< + unsafe extern "C" fn(arg1: *mut Fts5Context) -> ::std::os::raw::c_int, + >, + pub xPhraseSize: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + iPhrase: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xInstCount: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + pnInst: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xInst: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + iIdx: ::std::os::raw::c_int, + piPhrase: *mut ::std::os::raw::c_int, + piCol: *mut ::std::os::raw::c_int, + piOff: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xRowid: + ::std::option::Option sqlite3_int64>, + pub xColumnText: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + iCol: ::std::os::raw::c_int, + pz: *mut *const ::std::os::raw::c_char, + pn: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xColumnSize: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + iCol: ::std::os::raw::c_int, + pnToken: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xQueryPhrase: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + iPhrase: ::std::os::raw::c_int, + pUserData: *mut ::std::os::raw::c_void, + arg2: ::std::option::Option< + unsafe extern "C" fn( + arg1: *const Fts5ExtensionApi, + arg2: *mut Fts5Context, + arg3: *mut ::std::os::raw::c_void, + ) -> ::std::os::raw::c_int, + >, + ) -> ::std::os::raw::c_int, + >, + pub xSetAuxdata: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + pAux: *mut ::std::os::raw::c_void, + xDelete: ::std::option::Option, + ) -> ::std::os::raw::c_int, + >, + pub xGetAuxdata: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + bClear: ::std::os::raw::c_int, + ) -> *mut ::std::os::raw::c_void, + >, + pub xPhraseFirst: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + iPhrase: ::std::os::raw::c_int, + arg2: *mut Fts5PhraseIter, + arg3: *mut ::std::os::raw::c_int, + arg4: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xPhraseNext: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + arg2: *mut Fts5PhraseIter, + piCol: *mut ::std::os::raw::c_int, + piOff: *mut ::std::os::raw::c_int, + ), + >, + pub xPhraseFirstColumn: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + iPhrase: ::std::os::raw::c_int, + arg2: *mut Fts5PhraseIter, + arg3: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xPhraseNextColumn: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + arg2: *mut Fts5PhraseIter, + piCol: *mut ::std::os::raw::c_int, + ), + >, + pub xQueryToken: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + iPhrase: ::std::os::raw::c_int, + iToken: ::std::os::raw::c_int, + ppToken: *mut *const ::std::os::raw::c_char, + pnToken: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + pub xInstToken: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Context, + iIdx: ::std::os::raw::c_int, + iToken: ::std::os::raw::c_int, + arg2: *mut *const ::std::os::raw::c_char, + arg3: *mut ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct Fts5Tokenizer { + _unused: [u8; 0], +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct fts5_tokenizer { + pub xCreate: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut ::std::os::raw::c_void, + azArg: *mut *const ::std::os::raw::c_char, + nArg: ::std::os::raw::c_int, + ppOut: *mut *mut Fts5Tokenizer, + ) -> ::std::os::raw::c_int, + >, + pub xDelete: ::std::option::Option, + pub xTokenize: ::std::option::Option< + unsafe extern "C" fn( + arg1: *mut Fts5Tokenizer, + pCtx: *mut ::std::os::raw::c_void, + flags: ::std::os::raw::c_int, + pText: *const ::std::os::raw::c_char, + nText: ::std::os::raw::c_int, + xToken: ::std::option::Option< + unsafe extern "C" fn( + pCtx: *mut ::std::os::raw::c_void, + tflags: ::std::os::raw::c_int, + pToken: *const ::std::os::raw::c_char, + nToken: ::std::os::raw::c_int, + iStart: ::std::os::raw::c_int, + iEnd: ::std::os::raw::c_int, + ) -> ::std::os::raw::c_int, + >, + ) -> ::std::os::raw::c_int, + >, +} +#[repr(C)] +#[derive(Debug, Copy, Clone)] +pub struct fts5_api { + pub iVersion: ::std::os::raw::c_int, + pub xCreateTokenizer: ::std::option::Option< + unsafe extern "C" fn( + pApi: *mut fts5_api, + zName: *const ::std::os::raw::c_char, + pUserData: *mut ::std::os::raw::c_void, + pTokenizer: *mut fts5_tokenizer, + xDestroy: ::std::option::Option, + ) -> ::std::os::raw::c_int, + >, + pub xFindTokenizer: ::std::option::Option< + unsafe extern "C" fn( + pApi: *mut fts5_api, + zName: *const ::std::os::raw::c_char, + ppUserData: *mut *mut ::std::os::raw::c_void, + pTokenizer: *mut fts5_tokenizer, + ) -> ::std::os::raw::c_int, + >, + pub xCreateFunction: ::std::option::Option< + unsafe extern "C" fn( + pApi: *mut fts5_api, + zName: *const ::std::os::raw::c_char, + pUserData: *mut ::std::os::raw::c_void, + xFunction: fts5_extension_function, + xDestroy: ::std::option::Option, + ) -> ::std::os::raw::c_int, + >, +} diff --git a/target/release/build/libsqlite3-sys-aed1b7dff548c539/out/c877a2978823c39d-sqlite3.o b/target/release/build/libsqlite3-sys-aed1b7dff548c539/out/c877a2978823c39d-sqlite3.o new file mode 100644 index 0000000..ecbb819 Binary files /dev/null and b/target/release/build/libsqlite3-sys-aed1b7dff548c539/out/c877a2978823c39d-sqlite3.o differ diff --git a/target/release/build/libsqlite3-sys-aed1b7dff548c539/out/libsqlite3.a b/target/release/build/libsqlite3-sys-aed1b7dff548c539/out/libsqlite3.a new file mode 100644 index 0000000..74de586 Binary files /dev/null and b/target/release/build/libsqlite3-sys-aed1b7dff548c539/out/libsqlite3.a differ diff --git a/target/release/build/libsqlite3-sys-aed1b7dff548c539/output b/target/release/build/libsqlite3-sys-aed1b7dff548c539/output new file mode 100644 index 0000000..5c5ddb1 --- /dev/null +++ b/target/release/build/libsqlite3-sys-aed1b7dff548c539/output @@ -0,0 +1,54 @@ +cargo:rerun-if-env-changed=LIBSQLITE3_SYS_USE_PKG_CONFIG +cargo:include=/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libsqlite3-sys-0.28.0/sqlite3 +cargo:rerun-if-changed=sqlite3/sqlite3.c +cargo:rerun-if-changed=sqlite3/wasm32-wasi-vfs.c +cargo:rerun-if-env-changed=SQLITE_MAX_VARIABLE_NUMBER +cargo:rerun-if-env-changed=SQLITE_MAX_EXPR_DEPTH +cargo:rerun-if-env-changed=SQLITE_MAX_COLUMN +cargo:rerun-if-env-changed=LIBSQLITE3_FLAGS +OUT_DIR = Some(/home/user/Documents/GitHub/Marlin/target/release/build/libsqlite3-sys-aed1b7dff548c539/out) +OPT_LEVEL = Some(3) +TARGET = Some(x86_64-unknown-linux-gnu) +HOST = Some(x86_64-unknown-linux-gnu) +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 +RUSTC_WRAPPER = None +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +DEBUG = Some(false) +CARGO_CFG_TARGET_FEATURE = Some(fxsr,sse,sse2) +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_ENCODED_RUSTFLAGS = Some() +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=sqlite3 +cargo:rustc-link-search=native=/home/user/Documents/GitHub/Marlin/target/release/build/libsqlite3-sys-aed1b7dff548c539/out +cargo:lib_dir=/home/user/Documents/GitHub/Marlin/target/release/build/libsqlite3-sys-aed1b7dff548c539/out diff --git a/target/release/build/libsqlite3-sys-aed1b7dff548c539/root-output b/target/release/build/libsqlite3-sys-aed1b7dff548c539/root-output new file mode 100644 index 0000000..c72533e --- /dev/null +++ b/target/release/build/libsqlite3-sys-aed1b7dff548c539/root-output @@ -0,0 +1 @@ +/home/user/Documents/GitHub/Marlin/target/release/build/libsqlite3-sys-aed1b7dff548c539/out \ No newline at end of file diff --git a/target/release/build/libsqlite3-sys-aed1b7dff548c539/stderr b/target/release/build/libsqlite3-sys-aed1b7dff548c539/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/libsqlite3-sys-f62842305987c161/build-script-build b/target/release/build/libsqlite3-sys-f62842305987c161/build-script-build new file mode 100755 index 0000000..38d41d4 Binary files /dev/null and b/target/release/build/libsqlite3-sys-f62842305987c161/build-script-build differ diff --git a/target/release/build/libsqlite3-sys-f62842305987c161/build_script_build-f62842305987c161 b/target/release/build/libsqlite3-sys-f62842305987c161/build_script_build-f62842305987c161 new file mode 100755 index 0000000..38d41d4 Binary files /dev/null and b/target/release/build/libsqlite3-sys-f62842305987c161/build_script_build-f62842305987c161 differ diff --git a/target/release/build/libsqlite3-sys-f62842305987c161/build_script_build-f62842305987c161.d b/target/release/build/libsqlite3-sys-f62842305987c161/build_script_build-f62842305987c161.d new file mode 100644 index 0000000..68dbb73 --- /dev/null +++ b/target/release/build/libsqlite3-sys-f62842305987c161/build_script_build-f62842305987c161.d @@ -0,0 +1,7 @@ +/home/user/Documents/GitHub/Marlin/target/release/build/libsqlite3-sys-f62842305987c161/build_script_build-f62842305987c161: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libsqlite3-sys-0.28.0/build.rs + +/home/user/Documents/GitHub/Marlin/target/release/build/libsqlite3-sys-f62842305987c161/build_script_build-f62842305987c161.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libsqlite3-sys-0.28.0/build.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libsqlite3-sys-0.28.0/build.rs: + +# env-dep:CARGO_MANIFEST_DIR=/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libsqlite3-sys-0.28.0 diff --git a/target/release/build/proc-macro2-475c00bc4da0cbec/invoked.timestamp b/target/release/build/proc-macro2-475c00bc4da0cbec/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/proc-macro2-475c00bc4da0cbec/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/proc-macro2-475c00bc4da0cbec/output b/target/release/build/proc-macro2-475c00bc4da0cbec/output new file mode 100644 index 0000000..a3cdc7c --- /dev/null +++ b/target/release/build/proc-macro2-475c00bc4da0cbec/output @@ -0,0 +1,16 @@ +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(procmacro2_backtrace) +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=build/probe.rs +cargo:rustc-cfg=wrap_proc_macro +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP diff --git a/target/release/build/proc-macro2-475c00bc4da0cbec/root-output b/target/release/build/proc-macro2-475c00bc4da0cbec/root-output new file mode 100644 index 0000000..f20cf60 --- /dev/null +++ b/target/release/build/proc-macro2-475c00bc4da0cbec/root-output @@ -0,0 +1 @@ +/home/user/Documents/GitHub/Marlin/target/release/build/proc-macro2-475c00bc4da0cbec/out \ No newline at end of file diff --git a/target/release/build/proc-macro2-475c00bc4da0cbec/stderr b/target/release/build/proc-macro2-475c00bc4da0cbec/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/proc-macro2-bbfcd600545c0d42/build-script-build b/target/release/build/proc-macro2-bbfcd600545c0d42/build-script-build new file mode 100755 index 0000000..08bfb48 Binary files /dev/null and b/target/release/build/proc-macro2-bbfcd600545c0d42/build-script-build differ diff --git a/target/release/build/proc-macro2-bbfcd600545c0d42/build_script_build-bbfcd600545c0d42 b/target/release/build/proc-macro2-bbfcd600545c0d42/build_script_build-bbfcd600545c0d42 new file mode 100755 index 0000000..08bfb48 Binary files /dev/null and b/target/release/build/proc-macro2-bbfcd600545c0d42/build_script_build-bbfcd600545c0d42 differ diff --git a/target/release/build/proc-macro2-bbfcd600545c0d42/build_script_build-bbfcd600545c0d42.d b/target/release/build/proc-macro2-bbfcd600545c0d42/build_script_build-bbfcd600545c0d42.d new file mode 100644 index 0000000..bde7486 --- /dev/null +++ b/target/release/build/proc-macro2-bbfcd600545c0d42/build_script_build-bbfcd600545c0d42.d @@ -0,0 +1,5 @@ +/home/user/Documents/GitHub/Marlin/target/release/build/proc-macro2-bbfcd600545c0d42/build_script_build-bbfcd600545c0d42: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/build.rs + +/home/user/Documents/GitHub/Marlin/target/release/build/proc-macro2-bbfcd600545c0d42/build_script_build-bbfcd600545c0d42.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/build.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/build.rs: diff --git a/target/release/build/zerocopy-09d68b6c0ab1aa6c/build-script-build b/target/release/build/zerocopy-09d68b6c0ab1aa6c/build-script-build new file mode 100755 index 0000000..bc01066 Binary files /dev/null and b/target/release/build/zerocopy-09d68b6c0ab1aa6c/build-script-build differ diff --git a/target/release/build/zerocopy-09d68b6c0ab1aa6c/build_script_build-09d68b6c0ab1aa6c b/target/release/build/zerocopy-09d68b6c0ab1aa6c/build_script_build-09d68b6c0ab1aa6c new file mode 100755 index 0000000..bc01066 Binary files /dev/null and b/target/release/build/zerocopy-09d68b6c0ab1aa6c/build_script_build-09d68b6c0ab1aa6c differ diff --git a/target/release/build/zerocopy-09d68b6c0ab1aa6c/build_script_build-09d68b6c0ab1aa6c.d b/target/release/build/zerocopy-09d68b6c0ab1aa6c/build_script_build-09d68b6c0ab1aa6c.d new file mode 100644 index 0000000..e01138f --- /dev/null +++ b/target/release/build/zerocopy-09d68b6c0ab1aa6c/build_script_build-09d68b6c0ab1aa6c.d @@ -0,0 +1,5 @@ +/home/user/Documents/GitHub/Marlin/target/release/build/zerocopy-09d68b6c0ab1aa6c/build_script_build-09d68b6c0ab1aa6c: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/build.rs + +/home/user/Documents/GitHub/Marlin/target/release/build/zerocopy-09d68b6c0ab1aa6c/build_script_build-09d68b6c0ab1aa6c.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/build.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/build.rs: diff --git a/target/release/build/zerocopy-5bd423fdb3e66d1d/invoked.timestamp b/target/release/build/zerocopy-5bd423fdb3e66d1d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/zerocopy-5bd423fdb3e66d1d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/zerocopy-5bd423fdb3e66d1d/output b/target/release/build/zerocopy-5bd423fdb3e66d1d/output new file mode 100644 index 0000000..3aa1673 --- /dev/null +++ b/target/release/build/zerocopy-5bd423fdb3e66d1d/output @@ -0,0 +1,18 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-changed=Cargo.toml +cargo:rustc-check-cfg=cfg(zerocopy_aarch64_simd_1_59_0) +cargo:rustc-check-cfg=cfg(zerocopy_core_error_1_81_0) +cargo:rustc-check-cfg=cfg(zerocopy_diagnostic_on_unimplemented_1_78_0) +cargo:rustc-check-cfg=cfg(zerocopy_generic_bounds_in_const_fn_1_61_0) +cargo:rustc-check-cfg=cfg(zerocopy_panic_in_const_and_vec_try_reserve_1_57_0) +cargo:rustc-check-cfg=cfg(zerocopy_target_has_atomics_1_60_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(coverage_nightly) +cargo:rustc-cfg=zerocopy_aarch64_simd_1_59_0 +cargo:rustc-cfg=zerocopy_core_error_1_81_0 +cargo:rustc-cfg=zerocopy_diagnostic_on_unimplemented_1_78_0 +cargo:rustc-cfg=zerocopy_generic_bounds_in_const_fn_1_61_0 +cargo:rustc-cfg=zerocopy_panic_in_const_and_vec_try_reserve_1_57_0 +cargo:rustc-cfg=zerocopy_target_has_atomics_1_60_0 diff --git a/target/release/build/zerocopy-5bd423fdb3e66d1d/root-output b/target/release/build/zerocopy-5bd423fdb3e66d1d/root-output new file mode 100644 index 0000000..30535cb --- /dev/null +++ b/target/release/build/zerocopy-5bd423fdb3e66d1d/root-output @@ -0,0 +1 @@ +/home/user/Documents/GitHub/Marlin/target/release/build/zerocopy-5bd423fdb3e66d1d/out \ No newline at end of file diff --git a/target/release/build/zerocopy-5bd423fdb3e66d1d/stderr b/target/release/build/zerocopy-5bd423fdb3e66d1d/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/deps/ahash-130a203f63016575.d b/target/release/deps/ahash-130a203f63016575.d new file mode 100644 index 0000000..90e7a8f --- /dev/null +++ b/target/release/deps/ahash-130a203f63016575.d @@ -0,0 +1,12 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libahash-130a203f63016575.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/convert.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/fallback_hash.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/operations.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/random_state.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/specialize.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libahash-130a203f63016575.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/convert.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/fallback_hash.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/operations.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/random_state.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/specialize.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/ahash-130a203f63016575.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/convert.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/fallback_hash.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/operations.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/random_state.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/specialize.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/convert.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/fallback_hash.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/operations.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/random_state.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ahash-0.8.12/src/specialize.rs: diff --git a/target/release/deps/anstream-466e31fca9377762.d b/target/release/deps/anstream-466e31fca9377762.d new file mode 100644 index 0000000..707c28f --- /dev/null +++ b/target/release/deps/anstream-466e31fca9377762.d @@ -0,0 +1,16 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libanstream-466e31fca9377762.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/adapter/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/adapter/strip.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/adapter/wincon.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/stream.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/_macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/auto.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/buffer.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/fmt.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/strip.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libanstream-466e31fca9377762.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/adapter/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/adapter/strip.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/adapter/wincon.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/stream.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/_macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/auto.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/buffer.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/fmt.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/strip.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/anstream-466e31fca9377762.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/adapter/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/adapter/strip.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/adapter/wincon.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/stream.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/_macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/auto.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/buffer.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/fmt.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/strip.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/adapter/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/adapter/strip.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/adapter/wincon.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/stream.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/_macros.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/auto.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/buffer.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/fmt.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.18/src/strip.rs: diff --git a/target/release/deps/anstyle-9f5be866ba61e118.d b/target/release/deps/anstyle-9f5be866ba61e118.d new file mode 100644 index 0000000..3b9e783 --- /dev/null +++ b/target/release/deps/anstyle-9f5be866ba61e118.d @@ -0,0 +1,12 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libanstyle-9f5be866ba61e118.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/color.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/effect.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/reset.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/style.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libanstyle-9f5be866ba61e118.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/color.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/effect.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/reset.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/style.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/anstyle-9f5be866ba61e118.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/color.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/effect.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/reset.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/style.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/macros.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/color.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/effect.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/reset.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.10/src/style.rs: diff --git a/target/release/deps/anstyle_parse-e6c6d593d223def1.d b/target/release/deps/anstyle_parse-e6c6d593d223def1.d new file mode 100644 index 0000000..7642733 --- /dev/null +++ b/target/release/deps/anstyle_parse-e6c6d593d223def1.d @@ -0,0 +1,11 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libanstyle_parse-e6c6d593d223def1.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/params.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/state/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/state/definitions.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/state/table.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libanstyle_parse-e6c6d593d223def1.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/params.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/state/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/state/definitions.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/state/table.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/anstyle_parse-e6c6d593d223def1.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/params.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/state/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/state/definitions.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/state/table.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/params.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/state/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/state/definitions.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.6/src/state/table.rs: diff --git a/target/release/deps/anstyle_query-e96753c6a9066110.d b/target/release/deps/anstyle_query-e96753c6a9066110.d new file mode 100644 index 0000000..7355400 --- /dev/null +++ b/target/release/deps/anstyle_query-e96753c6a9066110.d @@ -0,0 +1,8 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libanstyle_query-e96753c6a9066110.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/src/windows.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libanstyle_query-e96753c6a9066110.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/src/windows.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/anstyle_query-e96753c6a9066110.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/src/windows.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.2/src/windows.rs: diff --git a/target/release/deps/anyhow-2510ffd6966eb36d.d b/target/release/deps/anyhow-2510ffd6966eb36d.d new file mode 100644 index 0000000..42a802d --- /dev/null +++ b/target/release/deps/anyhow-2510ffd6966eb36d.d @@ -0,0 +1,17 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libanyhow-2510ffd6966eb36d.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/backtrace.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/chain.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/context.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/ensure.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/fmt.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/kind.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/ptr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/wrapper.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libanyhow-2510ffd6966eb36d.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/backtrace.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/chain.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/context.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/ensure.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/fmt.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/kind.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/ptr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/wrapper.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/anyhow-2510ffd6966eb36d.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/backtrace.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/chain.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/context.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/ensure.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/fmt.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/kind.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/ptr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/wrapper.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/backtrace.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/chain.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/context.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/ensure.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/error.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/fmt.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/kind.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/macros.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/ptr.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.98/src/wrapper.rs: diff --git a/target/release/deps/bitflags-90ba4e04b2f70ecd.d b/target/release/deps/bitflags-90ba4e04b2f70ecd.d new file mode 100644 index 0000000..7fb47fb --- /dev/null +++ b/target/release/deps/bitflags-90ba4e04b2f70ecd.d @@ -0,0 +1,13 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libbitflags-90ba4e04b2f70ecd.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/iter.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/traits.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/public.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/internal.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/external.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libbitflags-90ba4e04b2f70ecd.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/iter.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/traits.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/public.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/internal.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/external.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/bitflags-90ba4e04b2f70ecd.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/iter.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/traits.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/public.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/internal.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/external.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/iter.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/parser.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/traits.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/public.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/internal.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.9.0/src/external.rs: diff --git a/target/release/deps/cc-8e57ca0a4f0ad779.d b/target/release/deps/cc-8e57ca0a4f0ad779.d new file mode 100644 index 0000000..9d1f1b3 --- /dev/null +++ b/target/release/deps/cc-8e57ca0a4f0ad779.d @@ -0,0 +1,20 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libcc-8e57ca0a4f0ad779.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target/apple.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target/generated.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target/llvm.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/windows/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/windows/find_tools.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/command_helpers.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/tool.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/tempfile.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/utilities.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/flags.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/detect_compiler_family.c + +/home/user/Documents/GitHub/Marlin/target/release/deps/libcc-8e57ca0a4f0ad779.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target/apple.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target/generated.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target/llvm.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/windows/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/windows/find_tools.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/command_helpers.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/tool.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/tempfile.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/utilities.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/flags.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/detect_compiler_family.c + +/home/user/Documents/GitHub/Marlin/target/release/deps/cc-8e57ca0a4f0ad779.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target/apple.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target/generated.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target/llvm.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/windows/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/windows/find_tools.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/command_helpers.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/tool.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/tempfile.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/utilities.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/flags.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/detect_compiler_family.c + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target/apple.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target/generated.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target/llvm.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/target/parser.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/windows/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/windows/find_tools.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/command_helpers.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/tool.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/tempfile.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/utilities.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/flags.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.22/src/detect_compiler_family.c: diff --git a/target/release/deps/cfg_if-da34da6838abd7f1.d b/target/release/deps/cfg_if-da34da6838abd7f1.d new file mode 100644 index 0000000..f39e6c3 --- /dev/null +++ b/target/release/deps/cfg_if-da34da6838abd7f1.d @@ -0,0 +1,7 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libcfg_if-da34da6838abd7f1.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.0/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libcfg_if-da34da6838abd7f1.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.0/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/cfg_if-da34da6838abd7f1.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.0/src/lib.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.0/src/lib.rs: diff --git a/target/release/deps/clap-83585441f817b33d.d b/target/release/deps/clap-83585441f817b33d.d new file mode 100644 index 0000000..a9f1a21 --- /dev/null +++ b/target/release/deps/clap-83585441f817b33d.d @@ -0,0 +1,9 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libclap-83585441f817b33d.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.38/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.38/src/../examples/demo.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.38/src/../examples/demo.md + +/home/user/Documents/GitHub/Marlin/target/release/deps/libclap-83585441f817b33d.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.38/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.38/src/../examples/demo.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.38/src/../examples/demo.md + +/home/user/Documents/GitHub/Marlin/target/release/deps/clap-83585441f817b33d.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.38/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.38/src/../examples/demo.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.38/src/../examples/demo.md + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.38/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.38/src/../examples/demo.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.38/src/../examples/demo.md: diff --git a/target/release/deps/clap_builder-f3fac56cc8f6c925.d b/target/release/deps/clap_builder-f3fac56cc8f6c925.d new file mode 100644 index 0000000..c93b0b2 --- /dev/null +++ b/target/release/deps/clap_builder-f3fac56cc8f6c925.d @@ -0,0 +1,59 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libclap_builder-f3fac56cc8f6c925.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/derive.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/action.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/app_settings.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/arg.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/arg_group.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/arg_predicate.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/arg_settings.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/command.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/ext.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/os_str.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/possible_value.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/range.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/resettable.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/str.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/styled_str.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/value_hint.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/value_parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/styling.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/error/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/error/context.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/error/format.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/error/kind.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/arg_matcher.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/matches/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/matches/arg_matches.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/matches/matched_arg.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/matches/value_source.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/validator.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/features/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/features/suggestions.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/mkeymap.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/help.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/help_template.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/usage.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/fmt.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/textwrap/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/textwrap/core.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/any_value.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/flat_map.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/flat_set.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/graph.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/id.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/str_to_bool.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/color.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/../README.md + +/home/user/Documents/GitHub/Marlin/target/release/deps/libclap_builder-f3fac56cc8f6c925.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/derive.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/action.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/app_settings.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/arg.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/arg_group.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/arg_predicate.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/arg_settings.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/command.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/ext.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/os_str.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/possible_value.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/range.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/resettable.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/str.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/styled_str.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/value_hint.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/value_parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/styling.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/error/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/error/context.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/error/format.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/error/kind.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/arg_matcher.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/matches/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/matches/arg_matches.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/matches/matched_arg.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/matches/value_source.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/validator.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/features/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/features/suggestions.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/mkeymap.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/help.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/help_template.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/usage.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/fmt.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/textwrap/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/textwrap/core.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/any_value.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/flat_map.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/flat_set.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/graph.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/id.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/str_to_bool.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/color.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/../README.md + +/home/user/Documents/GitHub/Marlin/target/release/deps/clap_builder-f3fac56cc8f6c925.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/derive.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/action.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/app_settings.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/arg.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/arg_group.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/arg_predicate.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/arg_settings.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/command.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/ext.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/os_str.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/possible_value.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/range.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/resettable.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/str.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/styled_str.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/value_hint.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/value_parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/styling.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/error/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/error/context.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/error/format.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/error/kind.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/arg_matcher.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/matches/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/matches/arg_matches.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/matches/matched_arg.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/matches/value_source.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/validator.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/features/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/features/suggestions.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/mkeymap.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/help.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/help_template.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/usage.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/fmt.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/textwrap/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/textwrap/core.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/any_value.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/flat_map.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/flat_set.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/graph.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/id.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/str_to_bool.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/color.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/../README.md + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/macros.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/derive.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/action.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/app_settings.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/arg.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/arg_group.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/arg_predicate.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/arg_settings.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/command.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/ext.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/os_str.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/possible_value.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/range.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/resettable.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/str.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/styled_str.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/value_hint.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/value_parser.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/builder/styling.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/error/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/error/context.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/error/format.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/error/kind.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/arg_matcher.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/error.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/matches/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/matches/arg_matches.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/matches/matched_arg.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/matches/value_source.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/parser.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/validator.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/features/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/parser/features/suggestions.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/mkeymap.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/help.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/help_template.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/usage.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/fmt.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/textwrap/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/output/textwrap/core.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/any_value.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/flat_map.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/flat_set.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/graph.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/id.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/str_to_bool.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/util/color.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.38/src/../README.md: diff --git a/target/release/deps/clap_derive-9d997a55d97f09ac.d b/target/release/deps/clap_derive-9d997a55d97f09ac.d new file mode 100644 index 0000000..94e1368 --- /dev/null +++ b/target/release/deps/clap_derive-9d997a55d97f09ac.d @@ -0,0 +1,21 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libclap_derive-9d997a55d97f09ac.so: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/attr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/args.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/into_app.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/subcommand.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/value_enum.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/dummies.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/item.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/utils/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/utils/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/utils/doc_comments.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/utils/spanned.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/utils/ty.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/../README.md + +/home/user/Documents/GitHub/Marlin/target/release/deps/clap_derive-9d997a55d97f09ac.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/attr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/args.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/into_app.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/subcommand.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/value_enum.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/dummies.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/item.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/utils/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/utils/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/utils/doc_comments.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/utils/spanned.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/utils/ty.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/../README.md + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/macros.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/attr.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/args.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/into_app.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/parser.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/subcommand.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/derives/value_enum.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/dummies.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/item.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/utils/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/utils/error.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/utils/doc_comments.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/utils/spanned.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/utils/ty.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.32/src/../README.md: diff --git a/target/release/deps/clap_lex-fb833c3ab31178a1.d b/target/release/deps/clap_lex-fb833c3ab31178a1.d new file mode 100644 index 0000000..06ddbcd --- /dev/null +++ b/target/release/deps/clap_lex-fb833c3ab31178a1.d @@ -0,0 +1,8 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libclap_lex-fb833c3ab31178a1.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.4/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.4/src/ext.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libclap_lex-fb833c3ab31178a1.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.4/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.4/src/ext.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/clap_lex-fb833c3ab31178a1.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.4/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.4/src/ext.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.4/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.4/src/ext.rs: diff --git a/target/release/deps/colorchoice-d0d218aa6d93621a.d b/target/release/deps/colorchoice-d0d218aa6d93621a.d new file mode 100644 index 0000000..e9d6135 --- /dev/null +++ b/target/release/deps/colorchoice-d0d218aa6d93621a.d @@ -0,0 +1,7 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libcolorchoice-d0d218aa6d93621a.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.3/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libcolorchoice-d0d218aa6d93621a.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.3/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/colorchoice-d0d218aa6d93621a.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.3/src/lib.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.3/src/lib.rs: diff --git a/target/release/deps/directories-3c6f096c06c9b755.d b/target/release/deps/directories-3c6f096c06c9b755.d new file mode 100644 index 0000000..aeefa0f --- /dev/null +++ b/target/release/deps/directories-3c6f096c06c9b755.d @@ -0,0 +1,8 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libdirectories-3c6f096c06c9b755.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/directories-5.0.1/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/directories-5.0.1/src/lin.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libdirectories-3c6f096c06c9b755.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/directories-5.0.1/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/directories-5.0.1/src/lin.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/directories-3c6f096c06c9b755.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/directories-5.0.1/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/directories-5.0.1/src/lin.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/directories-5.0.1/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/directories-5.0.1/src/lin.rs: diff --git a/target/release/deps/dirs_sys-18a4a1c6e108e48d.d b/target/release/deps/dirs_sys-18a4a1c6e108e48d.d new file mode 100644 index 0000000..fae2d90 --- /dev/null +++ b/target/release/deps/dirs_sys-18a4a1c6e108e48d.d @@ -0,0 +1,8 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libdirs_sys-18a4a1c6e108e48d.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dirs-sys-0.4.1/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dirs-sys-0.4.1/src/xdg_user_dirs.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libdirs_sys-18a4a1c6e108e48d.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dirs-sys-0.4.1/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dirs-sys-0.4.1/src/xdg_user_dirs.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/dirs_sys-18a4a1c6e108e48d.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dirs-sys-0.4.1/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dirs-sys-0.4.1/src/xdg_user_dirs.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dirs-sys-0.4.1/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dirs-sys-0.4.1/src/xdg_user_dirs.rs: diff --git a/target/release/deps/fallible_iterator-15b199cebb28d6c1.d b/target/release/deps/fallible_iterator-15b199cebb28d6c1.d new file mode 100644 index 0000000..3a674fb --- /dev/null +++ b/target/release/deps/fallible_iterator-15b199cebb28d6c1.d @@ -0,0 +1,7 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libfallible_iterator-15b199cebb28d6c1.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fallible-iterator-0.3.0/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libfallible_iterator-15b199cebb28d6c1.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fallible-iterator-0.3.0/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/fallible_iterator-15b199cebb28d6c1.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fallible-iterator-0.3.0/src/lib.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fallible-iterator-0.3.0/src/lib.rs: diff --git a/target/release/deps/fallible_streaming_iterator-1ff04656bece776a.d b/target/release/deps/fallible_streaming_iterator-1ff04656bece776a.d new file mode 100644 index 0000000..898386a --- /dev/null +++ b/target/release/deps/fallible_streaming_iterator-1ff04656bece776a.d @@ -0,0 +1,7 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libfallible_streaming_iterator-1ff04656bece776a.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fallible-streaming-iterator-0.1.9/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libfallible_streaming_iterator-1ff04656bece776a.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fallible-streaming-iterator-0.1.9/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/fallible_streaming_iterator-1ff04656bece776a.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fallible-streaming-iterator-0.1.9/src/lib.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fallible-streaming-iterator-0.1.9/src/lib.rs: diff --git a/target/release/deps/glob-e856cfe6c7319a0b.d b/target/release/deps/glob-e856cfe6c7319a0b.d new file mode 100644 index 0000000..92c6024 --- /dev/null +++ b/target/release/deps/glob-e856cfe6c7319a0b.d @@ -0,0 +1,7 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libglob-e856cfe6c7319a0b.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glob-0.3.2/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libglob-e856cfe6c7319a0b.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glob-0.3.2/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/glob-e856cfe6c7319a0b.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glob-0.3.2/src/lib.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/glob-0.3.2/src/lib.rs: diff --git a/target/release/deps/hashbrown-7defa6695f8987cc.d b/target/release/deps/hashbrown-7defa6695f8987cc.d new file mode 100644 index 0000000..f0aeb25 --- /dev/null +++ b/target/release/deps/hashbrown-7defa6695f8987cc.d @@ -0,0 +1,17 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libhashbrown-7defa6695f8987cc.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/alloc.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/bitmask.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/external_trait_impls/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/map.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/scopeguard.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/set.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/table.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/sse2.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libhashbrown-7defa6695f8987cc.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/alloc.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/bitmask.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/external_trait_impls/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/map.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/scopeguard.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/set.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/table.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/sse2.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/hashbrown-7defa6695f8987cc.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/alloc.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/bitmask.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/external_trait_impls/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/map.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/scopeguard.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/set.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/table.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/sse2.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/macros.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/alloc.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/bitmask.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/external_trait_impls/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/map.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/scopeguard.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/set.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/table.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.14.5/src/raw/sse2.rs: diff --git a/target/release/deps/hashlink-8975b3c8bea7e34b.d b/target/release/deps/hashlink-8975b3c8bea7e34b.d new file mode 100644 index 0000000..9be5773 --- /dev/null +++ b/target/release/deps/hashlink-8975b3c8bea7e34b.d @@ -0,0 +1,10 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libhashlink-8975b3c8bea7e34b.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashlink-0.9.1/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashlink-0.9.1/src/linked_hash_map.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashlink-0.9.1/src/linked_hash_set.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashlink-0.9.1/src/lru_cache.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libhashlink-8975b3c8bea7e34b.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashlink-0.9.1/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashlink-0.9.1/src/linked_hash_map.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashlink-0.9.1/src/linked_hash_set.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashlink-0.9.1/src/lru_cache.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/hashlink-8975b3c8bea7e34b.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashlink-0.9.1/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashlink-0.9.1/src/linked_hash_map.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashlink-0.9.1/src/linked_hash_set.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashlink-0.9.1/src/lru_cache.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashlink-0.9.1/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashlink-0.9.1/src/linked_hash_map.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashlink-0.9.1/src/linked_hash_set.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashlink-0.9.1/src/lru_cache.rs: diff --git a/target/release/deps/heck-06debb0d4d4774b1.d b/target/release/deps/heck-06debb0d4d4774b1.d new file mode 100644 index 0000000..29c168a --- /dev/null +++ b/target/release/deps/heck-06debb0d4d4774b1.d @@ -0,0 +1,15 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libheck-06debb0d4d4774b1.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/kebab.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lower_camel.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/shouty_kebab.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/shouty_snake.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/snake.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/title.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/train.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/upper_camel.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libheck-06debb0d4d4774b1.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/kebab.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lower_camel.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/shouty_kebab.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/shouty_snake.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/snake.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/title.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/train.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/upper_camel.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/heck-06debb0d4d4774b1.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/kebab.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lower_camel.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/shouty_kebab.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/shouty_snake.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/snake.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/title.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/train.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/upper_camel.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/kebab.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lower_camel.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/shouty_kebab.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/shouty_snake.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/snake.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/title.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/train.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/upper_camel.rs: diff --git a/target/release/deps/is_terminal_polyfill-1c27b69067eead0f.d b/target/release/deps/is_terminal_polyfill-1c27b69067eead0f.d new file mode 100644 index 0000000..64c22e5 --- /dev/null +++ b/target/release/deps/is_terminal_polyfill-1c27b69067eead0f.d @@ -0,0 +1,7 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libis_terminal_polyfill-1c27b69067eead0f.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.1/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libis_terminal_polyfill-1c27b69067eead0f.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.1/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/is_terminal_polyfill-1c27b69067eead0f.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.1/src/lib.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.1/src/lib.rs: diff --git a/target/release/deps/lazy_static-f91da618dd3f72e5.d b/target/release/deps/lazy_static-f91da618dd3f72e5.d new file mode 100644 index 0000000..93e8eb5 --- /dev/null +++ b/target/release/deps/lazy_static-f91da618dd3f72e5.d @@ -0,0 +1,8 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/liblazy_static-f91da618dd3f72e5.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/liblazy_static-f91da618dd3f72e5.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/lazy_static-f91da618dd3f72e5.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs: diff --git a/target/release/deps/libahash-130a203f63016575.rlib b/target/release/deps/libahash-130a203f63016575.rlib new file mode 100644 index 0000000..d4730b6 Binary files /dev/null and b/target/release/deps/libahash-130a203f63016575.rlib differ diff --git a/target/release/deps/libahash-130a203f63016575.rmeta b/target/release/deps/libahash-130a203f63016575.rmeta new file mode 100644 index 0000000..f813c9b Binary files /dev/null and b/target/release/deps/libahash-130a203f63016575.rmeta differ diff --git a/target/release/deps/libanstream-466e31fca9377762.rlib b/target/release/deps/libanstream-466e31fca9377762.rlib new file mode 100644 index 0000000..75119e7 Binary files /dev/null and b/target/release/deps/libanstream-466e31fca9377762.rlib differ diff --git a/target/release/deps/libanstream-466e31fca9377762.rmeta b/target/release/deps/libanstream-466e31fca9377762.rmeta new file mode 100644 index 0000000..0071744 Binary files /dev/null and b/target/release/deps/libanstream-466e31fca9377762.rmeta differ diff --git a/target/release/deps/libanstyle-9f5be866ba61e118.rlib b/target/release/deps/libanstyle-9f5be866ba61e118.rlib new file mode 100644 index 0000000..b62ef32 Binary files /dev/null and b/target/release/deps/libanstyle-9f5be866ba61e118.rlib differ diff --git a/target/release/deps/libanstyle-9f5be866ba61e118.rmeta b/target/release/deps/libanstyle-9f5be866ba61e118.rmeta new file mode 100644 index 0000000..ddd60a0 Binary files /dev/null and b/target/release/deps/libanstyle-9f5be866ba61e118.rmeta differ diff --git a/target/release/deps/libanstyle_parse-e6c6d593d223def1.rlib b/target/release/deps/libanstyle_parse-e6c6d593d223def1.rlib new file mode 100644 index 0000000..c929b60 Binary files /dev/null and b/target/release/deps/libanstyle_parse-e6c6d593d223def1.rlib differ diff --git a/target/release/deps/libanstyle_parse-e6c6d593d223def1.rmeta b/target/release/deps/libanstyle_parse-e6c6d593d223def1.rmeta new file mode 100644 index 0000000..842cf94 Binary files /dev/null and b/target/release/deps/libanstyle_parse-e6c6d593d223def1.rmeta differ diff --git a/target/release/deps/libanstyle_query-e96753c6a9066110.rlib b/target/release/deps/libanstyle_query-e96753c6a9066110.rlib new file mode 100644 index 0000000..7236aca Binary files /dev/null and b/target/release/deps/libanstyle_query-e96753c6a9066110.rlib differ diff --git a/target/release/deps/libanstyle_query-e96753c6a9066110.rmeta b/target/release/deps/libanstyle_query-e96753c6a9066110.rmeta new file mode 100644 index 0000000..fe0cf0b Binary files /dev/null and b/target/release/deps/libanstyle_query-e96753c6a9066110.rmeta differ diff --git a/target/release/deps/libanyhow-2510ffd6966eb36d.rlib b/target/release/deps/libanyhow-2510ffd6966eb36d.rlib new file mode 100644 index 0000000..803ac0b Binary files /dev/null and b/target/release/deps/libanyhow-2510ffd6966eb36d.rlib differ diff --git a/target/release/deps/libanyhow-2510ffd6966eb36d.rmeta b/target/release/deps/libanyhow-2510ffd6966eb36d.rmeta new file mode 100644 index 0000000..165b1bc Binary files /dev/null and b/target/release/deps/libanyhow-2510ffd6966eb36d.rmeta differ diff --git a/target/release/deps/libbitflags-90ba4e04b2f70ecd.rlib b/target/release/deps/libbitflags-90ba4e04b2f70ecd.rlib new file mode 100644 index 0000000..2efcea3 Binary files /dev/null and b/target/release/deps/libbitflags-90ba4e04b2f70ecd.rlib differ diff --git a/target/release/deps/libbitflags-90ba4e04b2f70ecd.rmeta b/target/release/deps/libbitflags-90ba4e04b2f70ecd.rmeta new file mode 100644 index 0000000..f7a6a2d Binary files /dev/null and b/target/release/deps/libbitflags-90ba4e04b2f70ecd.rmeta differ diff --git a/target/release/deps/libc-28883abc76ac857e.d b/target/release/deps/libc-28883abc76ac857e.d new file mode 100644 index 0000000..003fcf4 --- /dev/null +++ b/target/release/deps/libc-28883abc76ac857e.d @@ -0,0 +1,18 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/liblibc-28883abc76ac857e.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/primitives.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/arch/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/gnu/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/gnu/b64/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/arch/generic/mod.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/liblibc-28883abc76ac857e.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/primitives.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/arch/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/gnu/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/gnu/b64/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/arch/generic/mod.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libc-28883abc76ac857e.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/primitives.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/arch/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/gnu/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/gnu/b64/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/arch/generic/mod.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/macros.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/primitives.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/arch/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/gnu/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/gnu/b64/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.172/src/unix/linux_like/linux/arch/generic/mod.rs: diff --git a/target/release/deps/libcc-8e57ca0a4f0ad779.rlib b/target/release/deps/libcc-8e57ca0a4f0ad779.rlib new file mode 100644 index 0000000..b1c290b Binary files /dev/null and b/target/release/deps/libcc-8e57ca0a4f0ad779.rlib differ diff --git a/target/release/deps/libcc-8e57ca0a4f0ad779.rmeta b/target/release/deps/libcc-8e57ca0a4f0ad779.rmeta new file mode 100644 index 0000000..04bcf39 Binary files /dev/null and b/target/release/deps/libcc-8e57ca0a4f0ad779.rmeta differ diff --git a/target/release/deps/libcfg_if-da34da6838abd7f1.rlib b/target/release/deps/libcfg_if-da34da6838abd7f1.rlib new file mode 100644 index 0000000..1004d2e Binary files /dev/null and b/target/release/deps/libcfg_if-da34da6838abd7f1.rlib differ diff --git a/target/release/deps/libcfg_if-da34da6838abd7f1.rmeta b/target/release/deps/libcfg_if-da34da6838abd7f1.rmeta new file mode 100644 index 0000000..0ae616d Binary files /dev/null and b/target/release/deps/libcfg_if-da34da6838abd7f1.rmeta differ diff --git a/target/release/deps/libclap-83585441f817b33d.rlib b/target/release/deps/libclap-83585441f817b33d.rlib new file mode 100644 index 0000000..2f3ea30 Binary files /dev/null and b/target/release/deps/libclap-83585441f817b33d.rlib differ diff --git a/target/release/deps/libclap-83585441f817b33d.rmeta b/target/release/deps/libclap-83585441f817b33d.rmeta new file mode 100644 index 0000000..71ca8e9 Binary files /dev/null and b/target/release/deps/libclap-83585441f817b33d.rmeta differ diff --git a/target/release/deps/libclap_builder-f3fac56cc8f6c925.rlib b/target/release/deps/libclap_builder-f3fac56cc8f6c925.rlib new file mode 100644 index 0000000..65f4c06 Binary files /dev/null and b/target/release/deps/libclap_builder-f3fac56cc8f6c925.rlib differ diff --git a/target/release/deps/libclap_builder-f3fac56cc8f6c925.rmeta b/target/release/deps/libclap_builder-f3fac56cc8f6c925.rmeta new file mode 100644 index 0000000..579eb61 Binary files /dev/null and b/target/release/deps/libclap_builder-f3fac56cc8f6c925.rmeta differ diff --git a/target/release/deps/libclap_derive-9d997a55d97f09ac.so b/target/release/deps/libclap_derive-9d997a55d97f09ac.so new file mode 100755 index 0000000..23521e9 Binary files /dev/null and b/target/release/deps/libclap_derive-9d997a55d97f09ac.so differ diff --git a/target/release/deps/libclap_lex-fb833c3ab31178a1.rlib b/target/release/deps/libclap_lex-fb833c3ab31178a1.rlib new file mode 100644 index 0000000..07d69ee Binary files /dev/null and b/target/release/deps/libclap_lex-fb833c3ab31178a1.rlib differ diff --git a/target/release/deps/libclap_lex-fb833c3ab31178a1.rmeta b/target/release/deps/libclap_lex-fb833c3ab31178a1.rmeta new file mode 100644 index 0000000..d6bbf7f Binary files /dev/null and b/target/release/deps/libclap_lex-fb833c3ab31178a1.rmeta differ diff --git a/target/release/deps/libcolorchoice-d0d218aa6d93621a.rlib b/target/release/deps/libcolorchoice-d0d218aa6d93621a.rlib new file mode 100644 index 0000000..1d34196 Binary files /dev/null and b/target/release/deps/libcolorchoice-d0d218aa6d93621a.rlib differ diff --git a/target/release/deps/libcolorchoice-d0d218aa6d93621a.rmeta b/target/release/deps/libcolorchoice-d0d218aa6d93621a.rmeta new file mode 100644 index 0000000..10c6f38 Binary files /dev/null and b/target/release/deps/libcolorchoice-d0d218aa6d93621a.rmeta differ diff --git a/target/release/deps/libdirectories-3c6f096c06c9b755.rlib b/target/release/deps/libdirectories-3c6f096c06c9b755.rlib new file mode 100644 index 0000000..2c5a393 Binary files /dev/null and b/target/release/deps/libdirectories-3c6f096c06c9b755.rlib differ diff --git a/target/release/deps/libdirectories-3c6f096c06c9b755.rmeta b/target/release/deps/libdirectories-3c6f096c06c9b755.rmeta new file mode 100644 index 0000000..0caccd3 Binary files /dev/null and b/target/release/deps/libdirectories-3c6f096c06c9b755.rmeta differ diff --git a/target/release/deps/libdirs_sys-18a4a1c6e108e48d.rlib b/target/release/deps/libdirs_sys-18a4a1c6e108e48d.rlib new file mode 100644 index 0000000..c3d3727 Binary files /dev/null and b/target/release/deps/libdirs_sys-18a4a1c6e108e48d.rlib differ diff --git a/target/release/deps/libdirs_sys-18a4a1c6e108e48d.rmeta b/target/release/deps/libdirs_sys-18a4a1c6e108e48d.rmeta new file mode 100644 index 0000000..576e444 Binary files /dev/null and b/target/release/deps/libdirs_sys-18a4a1c6e108e48d.rmeta differ diff --git a/target/release/deps/libfallible_iterator-15b199cebb28d6c1.rlib b/target/release/deps/libfallible_iterator-15b199cebb28d6c1.rlib new file mode 100644 index 0000000..778385c Binary files /dev/null and b/target/release/deps/libfallible_iterator-15b199cebb28d6c1.rlib differ diff --git a/target/release/deps/libfallible_iterator-15b199cebb28d6c1.rmeta b/target/release/deps/libfallible_iterator-15b199cebb28d6c1.rmeta new file mode 100644 index 0000000..4a6f378 Binary files /dev/null and b/target/release/deps/libfallible_iterator-15b199cebb28d6c1.rmeta differ diff --git a/target/release/deps/libfallible_streaming_iterator-1ff04656bece776a.rlib b/target/release/deps/libfallible_streaming_iterator-1ff04656bece776a.rlib new file mode 100644 index 0000000..d4e98e5 Binary files /dev/null and b/target/release/deps/libfallible_streaming_iterator-1ff04656bece776a.rlib differ diff --git a/target/release/deps/libfallible_streaming_iterator-1ff04656bece776a.rmeta b/target/release/deps/libfallible_streaming_iterator-1ff04656bece776a.rmeta new file mode 100644 index 0000000..6c918a6 Binary files /dev/null and b/target/release/deps/libfallible_streaming_iterator-1ff04656bece776a.rmeta differ diff --git a/target/release/deps/libglob-e856cfe6c7319a0b.rlib b/target/release/deps/libglob-e856cfe6c7319a0b.rlib new file mode 100644 index 0000000..fb8b7b4 Binary files /dev/null and b/target/release/deps/libglob-e856cfe6c7319a0b.rlib differ diff --git a/target/release/deps/libglob-e856cfe6c7319a0b.rmeta b/target/release/deps/libglob-e856cfe6c7319a0b.rmeta new file mode 100644 index 0000000..06ac967 Binary files /dev/null and b/target/release/deps/libglob-e856cfe6c7319a0b.rmeta differ diff --git a/target/release/deps/libhashbrown-7defa6695f8987cc.rlib b/target/release/deps/libhashbrown-7defa6695f8987cc.rlib new file mode 100644 index 0000000..a6a7edc Binary files /dev/null and b/target/release/deps/libhashbrown-7defa6695f8987cc.rlib differ diff --git a/target/release/deps/libhashbrown-7defa6695f8987cc.rmeta b/target/release/deps/libhashbrown-7defa6695f8987cc.rmeta new file mode 100644 index 0000000..6b9c308 Binary files /dev/null and b/target/release/deps/libhashbrown-7defa6695f8987cc.rmeta differ diff --git a/target/release/deps/libhashlink-8975b3c8bea7e34b.rlib b/target/release/deps/libhashlink-8975b3c8bea7e34b.rlib new file mode 100644 index 0000000..b78cad5 Binary files /dev/null and b/target/release/deps/libhashlink-8975b3c8bea7e34b.rlib differ diff --git a/target/release/deps/libhashlink-8975b3c8bea7e34b.rmeta b/target/release/deps/libhashlink-8975b3c8bea7e34b.rmeta new file mode 100644 index 0000000..54721f7 Binary files /dev/null and b/target/release/deps/libhashlink-8975b3c8bea7e34b.rmeta differ diff --git a/target/release/deps/libheck-06debb0d4d4774b1.rlib b/target/release/deps/libheck-06debb0d4d4774b1.rlib new file mode 100644 index 0000000..e42c640 Binary files /dev/null and b/target/release/deps/libheck-06debb0d4d4774b1.rlib differ diff --git a/target/release/deps/libheck-06debb0d4d4774b1.rmeta b/target/release/deps/libheck-06debb0d4d4774b1.rmeta new file mode 100644 index 0000000..e8a11c3 Binary files /dev/null and b/target/release/deps/libheck-06debb0d4d4774b1.rmeta differ diff --git a/target/release/deps/libis_terminal_polyfill-1c27b69067eead0f.rlib b/target/release/deps/libis_terminal_polyfill-1c27b69067eead0f.rlib new file mode 100644 index 0000000..1a57628 Binary files /dev/null and b/target/release/deps/libis_terminal_polyfill-1c27b69067eead0f.rlib differ diff --git a/target/release/deps/libis_terminal_polyfill-1c27b69067eead0f.rmeta b/target/release/deps/libis_terminal_polyfill-1c27b69067eead0f.rmeta new file mode 100644 index 0000000..dc33e8a Binary files /dev/null and b/target/release/deps/libis_terminal_polyfill-1c27b69067eead0f.rmeta differ diff --git a/target/release/deps/liblazy_static-f91da618dd3f72e5.rlib b/target/release/deps/liblazy_static-f91da618dd3f72e5.rlib new file mode 100644 index 0000000..ae3f901 Binary files /dev/null and b/target/release/deps/liblazy_static-f91da618dd3f72e5.rlib differ diff --git a/target/release/deps/liblazy_static-f91da618dd3f72e5.rmeta b/target/release/deps/liblazy_static-f91da618dd3f72e5.rmeta new file mode 100644 index 0000000..208f6af Binary files /dev/null and b/target/release/deps/liblazy_static-f91da618dd3f72e5.rmeta differ diff --git a/target/release/deps/liblibc-28883abc76ac857e.rlib b/target/release/deps/liblibc-28883abc76ac857e.rlib new file mode 100644 index 0000000..ffa9921 Binary files /dev/null and b/target/release/deps/liblibc-28883abc76ac857e.rlib differ diff --git a/target/release/deps/liblibc-28883abc76ac857e.rmeta b/target/release/deps/liblibc-28883abc76ac857e.rmeta new file mode 100644 index 0000000..3dda86e Binary files /dev/null and b/target/release/deps/liblibc-28883abc76ac857e.rmeta differ diff --git a/target/release/deps/liblibsqlite3_sys-38970de9828b2349.rlib b/target/release/deps/liblibsqlite3_sys-38970de9828b2349.rlib new file mode 100644 index 0000000..efa39c2 Binary files /dev/null and b/target/release/deps/liblibsqlite3_sys-38970de9828b2349.rlib differ diff --git a/target/release/deps/liblibsqlite3_sys-38970de9828b2349.rmeta b/target/release/deps/liblibsqlite3_sys-38970de9828b2349.rmeta new file mode 100644 index 0000000..1c5ca7a Binary files /dev/null and b/target/release/deps/liblibsqlite3_sys-38970de9828b2349.rmeta differ diff --git a/target/release/deps/liblog-323569b758259b9b.rlib b/target/release/deps/liblog-323569b758259b9b.rlib new file mode 100644 index 0000000..ca7c3a9 Binary files /dev/null and b/target/release/deps/liblog-323569b758259b9b.rlib differ diff --git a/target/release/deps/liblog-323569b758259b9b.rmeta b/target/release/deps/liblog-323569b758259b9b.rmeta new file mode 100644 index 0000000..3b7ac7e Binary files /dev/null and b/target/release/deps/liblog-323569b758259b9b.rmeta differ diff --git a/target/release/deps/libmatchers-f3b453967c4ace5b.rlib b/target/release/deps/libmatchers-f3b453967c4ace5b.rlib new file mode 100644 index 0000000..3537355 Binary files /dev/null and b/target/release/deps/libmatchers-f3b453967c4ace5b.rlib differ diff --git a/target/release/deps/libmatchers-f3b453967c4ace5b.rmeta b/target/release/deps/libmatchers-f3b453967c4ace5b.rmeta new file mode 100644 index 0000000..c90ac43 Binary files /dev/null and b/target/release/deps/libmatchers-f3b453967c4ace5b.rmeta differ diff --git a/target/release/deps/libnu_ansi_term-c42192675aa050dd.rlib b/target/release/deps/libnu_ansi_term-c42192675aa050dd.rlib new file mode 100644 index 0000000..454b406 Binary files /dev/null and b/target/release/deps/libnu_ansi_term-c42192675aa050dd.rlib differ diff --git a/target/release/deps/libnu_ansi_term-c42192675aa050dd.rmeta b/target/release/deps/libnu_ansi_term-c42192675aa050dd.rmeta new file mode 100644 index 0000000..07a3988 Binary files /dev/null and b/target/release/deps/libnu_ansi_term-c42192675aa050dd.rmeta differ diff --git a/target/release/deps/libonce_cell-109e57aa4a9d42c0.rlib b/target/release/deps/libonce_cell-109e57aa4a9d42c0.rlib new file mode 100644 index 0000000..87295f2 Binary files /dev/null and b/target/release/deps/libonce_cell-109e57aa4a9d42c0.rlib differ diff --git a/target/release/deps/libonce_cell-109e57aa4a9d42c0.rmeta b/target/release/deps/libonce_cell-109e57aa4a9d42c0.rmeta new file mode 100644 index 0000000..914a32c Binary files /dev/null and b/target/release/deps/libonce_cell-109e57aa4a9d42c0.rmeta differ diff --git a/target/release/deps/liboption_ext-8c28fcc54e443152.rlib b/target/release/deps/liboption_ext-8c28fcc54e443152.rlib new file mode 100644 index 0000000..68a3f74 Binary files /dev/null and b/target/release/deps/liboption_ext-8c28fcc54e443152.rlib differ diff --git a/target/release/deps/liboption_ext-8c28fcc54e443152.rmeta b/target/release/deps/liboption_ext-8c28fcc54e443152.rmeta new file mode 100644 index 0000000..e53bc00 Binary files /dev/null and b/target/release/deps/liboption_ext-8c28fcc54e443152.rmeta differ diff --git a/target/release/deps/liboverload-94fa3b5a5c6dc522.rlib b/target/release/deps/liboverload-94fa3b5a5c6dc522.rlib new file mode 100644 index 0000000..cb5bec1 Binary files /dev/null and b/target/release/deps/liboverload-94fa3b5a5c6dc522.rlib differ diff --git a/target/release/deps/liboverload-94fa3b5a5c6dc522.rmeta b/target/release/deps/liboverload-94fa3b5a5c6dc522.rmeta new file mode 100644 index 0000000..05447c9 Binary files /dev/null and b/target/release/deps/liboverload-94fa3b5a5c6dc522.rmeta differ diff --git a/target/release/deps/libpin_project_lite-1fa7cdba4ce9f504.rlib b/target/release/deps/libpin_project_lite-1fa7cdba4ce9f504.rlib new file mode 100644 index 0000000..dd1cdad Binary files /dev/null and b/target/release/deps/libpin_project_lite-1fa7cdba4ce9f504.rlib differ diff --git a/target/release/deps/libpin_project_lite-1fa7cdba4ce9f504.rmeta b/target/release/deps/libpin_project_lite-1fa7cdba4ce9f504.rmeta new file mode 100644 index 0000000..024188e Binary files /dev/null and b/target/release/deps/libpin_project_lite-1fa7cdba4ce9f504.rmeta differ diff --git a/target/release/deps/libpkg_config-c6d62bb11f7b3580.rlib b/target/release/deps/libpkg_config-c6d62bb11f7b3580.rlib new file mode 100644 index 0000000..22aca43 Binary files /dev/null and b/target/release/deps/libpkg_config-c6d62bb11f7b3580.rlib differ diff --git a/target/release/deps/libpkg_config-c6d62bb11f7b3580.rmeta b/target/release/deps/libpkg_config-c6d62bb11f7b3580.rmeta new file mode 100644 index 0000000..d138c44 Binary files /dev/null and b/target/release/deps/libpkg_config-c6d62bb11f7b3580.rmeta differ diff --git a/target/release/deps/libproc_macro2-da36b031605c1ddc.rlib b/target/release/deps/libproc_macro2-da36b031605c1ddc.rlib new file mode 100644 index 0000000..d275494 Binary files /dev/null and b/target/release/deps/libproc_macro2-da36b031605c1ddc.rlib differ diff --git a/target/release/deps/libproc_macro2-da36b031605c1ddc.rmeta b/target/release/deps/libproc_macro2-da36b031605c1ddc.rmeta new file mode 100644 index 0000000..5f83ecd Binary files /dev/null and b/target/release/deps/libproc_macro2-da36b031605c1ddc.rmeta differ diff --git a/target/release/deps/libquote-21aeee0f329238fb.rlib b/target/release/deps/libquote-21aeee0f329238fb.rlib new file mode 100644 index 0000000..942417f Binary files /dev/null and b/target/release/deps/libquote-21aeee0f329238fb.rlib differ diff --git a/target/release/deps/libquote-21aeee0f329238fb.rmeta b/target/release/deps/libquote-21aeee0f329238fb.rmeta new file mode 100644 index 0000000..0a4ff1f Binary files /dev/null and b/target/release/deps/libquote-21aeee0f329238fb.rmeta differ diff --git a/target/release/deps/libregex-05939fcd75661170.rlib b/target/release/deps/libregex-05939fcd75661170.rlib new file mode 100644 index 0000000..75b6a11 Binary files /dev/null and b/target/release/deps/libregex-05939fcd75661170.rlib differ diff --git a/target/release/deps/libregex-05939fcd75661170.rmeta b/target/release/deps/libregex-05939fcd75661170.rmeta new file mode 100644 index 0000000..ea29353 Binary files /dev/null and b/target/release/deps/libregex-05939fcd75661170.rmeta differ diff --git a/target/release/deps/libregex_automata-0936a2775daea9d6.rlib b/target/release/deps/libregex_automata-0936a2775daea9d6.rlib new file mode 100644 index 0000000..99e6641 Binary files /dev/null and b/target/release/deps/libregex_automata-0936a2775daea9d6.rlib differ diff --git a/target/release/deps/libregex_automata-0936a2775daea9d6.rmeta b/target/release/deps/libregex_automata-0936a2775daea9d6.rmeta new file mode 100644 index 0000000..9404f31 Binary files /dev/null and b/target/release/deps/libregex_automata-0936a2775daea9d6.rmeta differ diff --git a/target/release/deps/libregex_automata-36c17437fa6ac77d.rlib b/target/release/deps/libregex_automata-36c17437fa6ac77d.rlib new file mode 100644 index 0000000..a55e21e Binary files /dev/null and b/target/release/deps/libregex_automata-36c17437fa6ac77d.rlib differ diff --git a/target/release/deps/libregex_automata-36c17437fa6ac77d.rmeta b/target/release/deps/libregex_automata-36c17437fa6ac77d.rmeta new file mode 100644 index 0000000..8d57b57 Binary files /dev/null and b/target/release/deps/libregex_automata-36c17437fa6ac77d.rmeta differ diff --git a/target/release/deps/libregex_syntax-278fc833d6e378c8.rlib b/target/release/deps/libregex_syntax-278fc833d6e378c8.rlib new file mode 100644 index 0000000..b578215 Binary files /dev/null and b/target/release/deps/libregex_syntax-278fc833d6e378c8.rlib differ diff --git a/target/release/deps/libregex_syntax-278fc833d6e378c8.rmeta b/target/release/deps/libregex_syntax-278fc833d6e378c8.rmeta new file mode 100644 index 0000000..b9225e9 Binary files /dev/null and b/target/release/deps/libregex_syntax-278fc833d6e378c8.rmeta differ diff --git a/target/release/deps/libregex_syntax-9c0764dd3734bc10.rlib b/target/release/deps/libregex_syntax-9c0764dd3734bc10.rlib new file mode 100644 index 0000000..b080e53 Binary files /dev/null and b/target/release/deps/libregex_syntax-9c0764dd3734bc10.rlib differ diff --git a/target/release/deps/libregex_syntax-9c0764dd3734bc10.rmeta b/target/release/deps/libregex_syntax-9c0764dd3734bc10.rmeta new file mode 100644 index 0000000..b21c325 Binary files /dev/null and b/target/release/deps/libregex_syntax-9c0764dd3734bc10.rmeta differ diff --git a/target/release/deps/librusqlite-6466f1598a85e8fc.rlib b/target/release/deps/librusqlite-6466f1598a85e8fc.rlib new file mode 100644 index 0000000..767ea70 Binary files /dev/null and b/target/release/deps/librusqlite-6466f1598a85e8fc.rlib differ diff --git a/target/release/deps/librusqlite-6466f1598a85e8fc.rmeta b/target/release/deps/librusqlite-6466f1598a85e8fc.rmeta new file mode 100644 index 0000000..4710166 Binary files /dev/null and b/target/release/deps/librusqlite-6466f1598a85e8fc.rmeta differ diff --git a/target/release/deps/libsame_file-fc3f371f398801a0.rlib b/target/release/deps/libsame_file-fc3f371f398801a0.rlib new file mode 100644 index 0000000..d9710f9 Binary files /dev/null and b/target/release/deps/libsame_file-fc3f371f398801a0.rlib differ diff --git a/target/release/deps/libsame_file-fc3f371f398801a0.rmeta b/target/release/deps/libsame_file-fc3f371f398801a0.rmeta new file mode 100644 index 0000000..25362c4 Binary files /dev/null and b/target/release/deps/libsame_file-fc3f371f398801a0.rmeta differ diff --git a/target/release/deps/libsharded_slab-b9545388d9527f67.rlib b/target/release/deps/libsharded_slab-b9545388d9527f67.rlib new file mode 100644 index 0000000..a0a2b12 Binary files /dev/null and b/target/release/deps/libsharded_slab-b9545388d9527f67.rlib differ diff --git a/target/release/deps/libsharded_slab-b9545388d9527f67.rmeta b/target/release/deps/libsharded_slab-b9545388d9527f67.rmeta new file mode 100644 index 0000000..a2bf07b Binary files /dev/null and b/target/release/deps/libsharded_slab-b9545388d9527f67.rmeta differ diff --git a/target/release/deps/libshlex-3f4d9a7f242aae72.rlib b/target/release/deps/libshlex-3f4d9a7f242aae72.rlib new file mode 100644 index 0000000..504eab7 Binary files /dev/null and b/target/release/deps/libshlex-3f4d9a7f242aae72.rlib differ diff --git a/target/release/deps/libshlex-3f4d9a7f242aae72.rmeta b/target/release/deps/libshlex-3f4d9a7f242aae72.rmeta new file mode 100644 index 0000000..ddcd603 Binary files /dev/null and b/target/release/deps/libshlex-3f4d9a7f242aae72.rmeta differ diff --git a/target/release/deps/libsmallvec-e6c5ff3af311c91d.rlib b/target/release/deps/libsmallvec-e6c5ff3af311c91d.rlib new file mode 100644 index 0000000..48925a4 Binary files /dev/null and b/target/release/deps/libsmallvec-e6c5ff3af311c91d.rlib differ diff --git a/target/release/deps/libsmallvec-e6c5ff3af311c91d.rmeta b/target/release/deps/libsmallvec-e6c5ff3af311c91d.rmeta new file mode 100644 index 0000000..f334f0c Binary files /dev/null and b/target/release/deps/libsmallvec-e6c5ff3af311c91d.rmeta differ diff --git a/target/release/deps/libsqlite3_sys-38970de9828b2349.d b/target/release/deps/libsqlite3_sys-38970de9828b2349.d new file mode 100644 index 0000000..a4695eb --- /dev/null +++ b/target/release/deps/libsqlite3_sys-38970de9828b2349.d @@ -0,0 +1,11 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/liblibsqlite3_sys-38970de9828b2349.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libsqlite3-sys-0.28.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libsqlite3-sys-0.28.0/src/error.rs /home/user/Documents/GitHub/Marlin/target/release/build/libsqlite3-sys-aed1b7dff548c539/out/bindgen.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/liblibsqlite3_sys-38970de9828b2349.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libsqlite3-sys-0.28.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libsqlite3-sys-0.28.0/src/error.rs /home/user/Documents/GitHub/Marlin/target/release/build/libsqlite3-sys-aed1b7dff548c539/out/bindgen.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libsqlite3_sys-38970de9828b2349.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libsqlite3-sys-0.28.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libsqlite3-sys-0.28.0/src/error.rs /home/user/Documents/GitHub/Marlin/target/release/build/libsqlite3-sys-aed1b7dff548c539/out/bindgen.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libsqlite3-sys-0.28.0/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libsqlite3-sys-0.28.0/src/error.rs: +/home/user/Documents/GitHub/Marlin/target/release/build/libsqlite3-sys-aed1b7dff548c539/out/bindgen.rs: + +# env-dep:OUT_DIR=/home/user/Documents/GitHub/Marlin/target/release/build/libsqlite3-sys-aed1b7dff548c539/out diff --git a/target/release/deps/libstrsim-aff96e3b8811a5dc.rlib b/target/release/deps/libstrsim-aff96e3b8811a5dc.rlib new file mode 100644 index 0000000..c681dc5 Binary files /dev/null and b/target/release/deps/libstrsim-aff96e3b8811a5dc.rlib differ diff --git a/target/release/deps/libstrsim-aff96e3b8811a5dc.rmeta b/target/release/deps/libstrsim-aff96e3b8811a5dc.rmeta new file mode 100644 index 0000000..76d8c22 Binary files /dev/null and b/target/release/deps/libstrsim-aff96e3b8811a5dc.rmeta differ diff --git a/target/release/deps/libsyn-6756b4a38928df5c.rlib b/target/release/deps/libsyn-6756b4a38928df5c.rlib new file mode 100644 index 0000000..918aed6 Binary files /dev/null and b/target/release/deps/libsyn-6756b4a38928df5c.rlib differ diff --git a/target/release/deps/libsyn-6756b4a38928df5c.rmeta b/target/release/deps/libsyn-6756b4a38928df5c.rmeta new file mode 100644 index 0000000..16ed95d Binary files /dev/null and b/target/release/deps/libsyn-6756b4a38928df5c.rmeta differ diff --git a/target/release/deps/libthread_local-54e9a92d4c4727cd.rlib b/target/release/deps/libthread_local-54e9a92d4c4727cd.rlib new file mode 100644 index 0000000..2328f0a Binary files /dev/null and b/target/release/deps/libthread_local-54e9a92d4c4727cd.rlib differ diff --git a/target/release/deps/libthread_local-54e9a92d4c4727cd.rmeta b/target/release/deps/libthread_local-54e9a92d4c4727cd.rmeta new file mode 100644 index 0000000..fd3ddd9 Binary files /dev/null and b/target/release/deps/libthread_local-54e9a92d4c4727cd.rmeta differ diff --git a/target/release/deps/libtracing-b66cda8937eb421a.rlib b/target/release/deps/libtracing-b66cda8937eb421a.rlib new file mode 100644 index 0000000..adae976 Binary files /dev/null and b/target/release/deps/libtracing-b66cda8937eb421a.rlib differ diff --git a/target/release/deps/libtracing-b66cda8937eb421a.rmeta b/target/release/deps/libtracing-b66cda8937eb421a.rmeta new file mode 100644 index 0000000..e30dee7 Binary files /dev/null and b/target/release/deps/libtracing-b66cda8937eb421a.rmeta differ diff --git a/target/release/deps/libtracing_attributes-ec7d429034764125.so b/target/release/deps/libtracing_attributes-ec7d429034764125.so new file mode 100755 index 0000000..57d6752 Binary files /dev/null and b/target/release/deps/libtracing_attributes-ec7d429034764125.so differ diff --git a/target/release/deps/libtracing_core-9195eaccc1cbbd86.rlib b/target/release/deps/libtracing_core-9195eaccc1cbbd86.rlib new file mode 100644 index 0000000..c9b821a Binary files /dev/null and b/target/release/deps/libtracing_core-9195eaccc1cbbd86.rlib differ diff --git a/target/release/deps/libtracing_core-9195eaccc1cbbd86.rmeta b/target/release/deps/libtracing_core-9195eaccc1cbbd86.rmeta new file mode 100644 index 0000000..0363a3f Binary files /dev/null and b/target/release/deps/libtracing_core-9195eaccc1cbbd86.rmeta differ diff --git a/target/release/deps/libtracing_log-5b33dd22edc54f5f.rlib b/target/release/deps/libtracing_log-5b33dd22edc54f5f.rlib new file mode 100644 index 0000000..3a07120 Binary files /dev/null and b/target/release/deps/libtracing_log-5b33dd22edc54f5f.rlib differ diff --git a/target/release/deps/libtracing_log-5b33dd22edc54f5f.rmeta b/target/release/deps/libtracing_log-5b33dd22edc54f5f.rmeta new file mode 100644 index 0000000..be6bd5f Binary files /dev/null and b/target/release/deps/libtracing_log-5b33dd22edc54f5f.rmeta differ diff --git a/target/release/deps/libtracing_subscriber-4f1b7a8ecdf25521.rlib b/target/release/deps/libtracing_subscriber-4f1b7a8ecdf25521.rlib new file mode 100644 index 0000000..25d5043 Binary files /dev/null and b/target/release/deps/libtracing_subscriber-4f1b7a8ecdf25521.rlib differ diff --git a/target/release/deps/libtracing_subscriber-4f1b7a8ecdf25521.rmeta b/target/release/deps/libtracing_subscriber-4f1b7a8ecdf25521.rmeta new file mode 100644 index 0000000..e4ab9d7 Binary files /dev/null and b/target/release/deps/libtracing_subscriber-4f1b7a8ecdf25521.rmeta differ diff --git a/target/release/deps/libunicode_ident-02b0d04ef026a7b6.rlib b/target/release/deps/libunicode_ident-02b0d04ef026a7b6.rlib new file mode 100644 index 0000000..9c32313 Binary files /dev/null and b/target/release/deps/libunicode_ident-02b0d04ef026a7b6.rlib differ diff --git a/target/release/deps/libunicode_ident-02b0d04ef026a7b6.rmeta b/target/release/deps/libunicode_ident-02b0d04ef026a7b6.rmeta new file mode 100644 index 0000000..52f2cd3 Binary files /dev/null and b/target/release/deps/libunicode_ident-02b0d04ef026a7b6.rmeta differ diff --git a/target/release/deps/libutf8parse-a65b6a9ab8fee7e7.rlib b/target/release/deps/libutf8parse-a65b6a9ab8fee7e7.rlib new file mode 100644 index 0000000..2e0af35 Binary files /dev/null and b/target/release/deps/libutf8parse-a65b6a9ab8fee7e7.rlib differ diff --git a/target/release/deps/libutf8parse-a65b6a9ab8fee7e7.rmeta b/target/release/deps/libutf8parse-a65b6a9ab8fee7e7.rmeta new file mode 100644 index 0000000..0cf198b Binary files /dev/null and b/target/release/deps/libutf8parse-a65b6a9ab8fee7e7.rmeta differ diff --git a/target/release/deps/libvcpkg-0a82a1ed7dcb5df3.rlib b/target/release/deps/libvcpkg-0a82a1ed7dcb5df3.rlib new file mode 100644 index 0000000..5672544 Binary files /dev/null and b/target/release/deps/libvcpkg-0a82a1ed7dcb5df3.rlib differ diff --git a/target/release/deps/libvcpkg-0a82a1ed7dcb5df3.rmeta b/target/release/deps/libvcpkg-0a82a1ed7dcb5df3.rmeta new file mode 100644 index 0000000..450d71a Binary files /dev/null and b/target/release/deps/libvcpkg-0a82a1ed7dcb5df3.rmeta differ diff --git a/target/release/deps/libversion_check-ac861858003339ac.rlib b/target/release/deps/libversion_check-ac861858003339ac.rlib new file mode 100644 index 0000000..ef68ff4 Binary files /dev/null and b/target/release/deps/libversion_check-ac861858003339ac.rlib differ diff --git a/target/release/deps/libversion_check-ac861858003339ac.rmeta b/target/release/deps/libversion_check-ac861858003339ac.rmeta new file mode 100644 index 0000000..4bf1f77 Binary files /dev/null and b/target/release/deps/libversion_check-ac861858003339ac.rmeta differ diff --git a/target/release/deps/libwalkdir-77a185459770fb5f.rlib b/target/release/deps/libwalkdir-77a185459770fb5f.rlib new file mode 100644 index 0000000..57b2cfd Binary files /dev/null and b/target/release/deps/libwalkdir-77a185459770fb5f.rlib differ diff --git a/target/release/deps/libwalkdir-77a185459770fb5f.rmeta b/target/release/deps/libwalkdir-77a185459770fb5f.rmeta new file mode 100644 index 0000000..2e3a105 Binary files /dev/null and b/target/release/deps/libwalkdir-77a185459770fb5f.rmeta differ diff --git a/target/release/deps/libzerocopy-58046a768784ce6d.rlib b/target/release/deps/libzerocopy-58046a768784ce6d.rlib new file mode 100644 index 0000000..b7f8e8e Binary files /dev/null and b/target/release/deps/libzerocopy-58046a768784ce6d.rlib differ diff --git a/target/release/deps/libzerocopy-58046a768784ce6d.rmeta b/target/release/deps/libzerocopy-58046a768784ce6d.rmeta new file mode 100644 index 0000000..e727241 Binary files /dev/null and b/target/release/deps/libzerocopy-58046a768784ce6d.rmeta differ diff --git a/target/release/deps/log-323569b758259b9b.d b/target/release/deps/log-323569b758259b9b.d new file mode 100644 index 0000000..90374ed --- /dev/null +++ b/target/release/deps/log-323569b758259b9b.d @@ -0,0 +1,10 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/liblog-323569b758259b9b.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/serde.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/__private_api.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/liblog-323569b758259b9b.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/serde.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/__private_api.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/log-323569b758259b9b.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/serde.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/__private_api.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/macros.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/serde.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.27/src/__private_api.rs: diff --git a/target/release/deps/marlin-634839a5e9cc4921 b/target/release/deps/marlin-634839a5e9cc4921 new file mode 100755 index 0000000..7811dc6 Binary files /dev/null and b/target/release/deps/marlin-634839a5e9cc4921 differ diff --git a/target/release/deps/marlin-634839a5e9cc4921.d b/target/release/deps/marlin-634839a5e9cc4921.d new file mode 100644 index 0000000..8d6d748 --- /dev/null +++ b/target/release/deps/marlin-634839a5e9cc4921.d @@ -0,0 +1,11 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/marlin-634839a5e9cc4921: src/main.rs src/cli.rs src/config.rs src/db/mod.rs src/logging.rs src/scan.rs src/db/migrations.sql + +/home/user/Documents/GitHub/Marlin/target/release/deps/marlin-634839a5e9cc4921.d: src/main.rs src/cli.rs src/config.rs src/db/mod.rs src/logging.rs src/scan.rs src/db/migrations.sql + +src/main.rs: +src/cli.rs: +src/config.rs: +src/db/mod.rs: +src/logging.rs: +src/scan.rs: +src/db/migrations.sql: diff --git a/target/release/deps/matchers-f3b453967c4ace5b.d b/target/release/deps/matchers-f3b453967c4ace5b.d new file mode 100644 index 0000000..500b28d --- /dev/null +++ b/target/release/deps/matchers-f3b453967c4ace5b.d @@ -0,0 +1,7 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libmatchers-f3b453967c4ace5b.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchers-0.1.0/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libmatchers-f3b453967c4ace5b.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchers-0.1.0/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/matchers-f3b453967c4ace5b.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchers-0.1.0/src/lib.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchers-0.1.0/src/lib.rs: diff --git a/target/release/deps/nu_ansi_term-c42192675aa050dd.d b/target/release/deps/nu_ansi_term-c42192675aa050dd.d new file mode 100644 index 0000000..2540efb --- /dev/null +++ b/target/release/deps/nu_ansi_term-c42192675aa050dd.d @@ -0,0 +1,17 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libnu_ansi_term-c42192675aa050dd.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/ansi.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/style.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/difference.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/display.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/write.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/windows.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/util.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/debug.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/gradient.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/rgb.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libnu_ansi_term-c42192675aa050dd.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/ansi.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/style.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/difference.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/display.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/write.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/windows.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/util.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/debug.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/gradient.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/rgb.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/nu_ansi_term-c42192675aa050dd.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/ansi.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/style.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/difference.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/display.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/write.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/windows.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/util.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/debug.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/gradient.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/rgb.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/ansi.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/style.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/difference.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/display.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/write.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/windows.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/util.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/debug.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/gradient.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.46.0/src/rgb.rs: diff --git a/target/release/deps/once_cell-109e57aa4a9d42c0.d b/target/release/deps/once_cell-109e57aa4a9d42c0.d new file mode 100644 index 0000000..b32559c --- /dev/null +++ b/target/release/deps/once_cell-109e57aa4a9d42c0.d @@ -0,0 +1,9 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libonce_cell-109e57aa4a9d42c0.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/imp_std.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/race.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libonce_cell-109e57aa4a9d42c0.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/imp_std.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/race.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/once_cell-109e57aa4a9d42c0.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/imp_std.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/race.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/imp_std.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/race.rs: diff --git a/target/release/deps/option_ext-8c28fcc54e443152.d b/target/release/deps/option_ext-8c28fcc54e443152.d new file mode 100644 index 0000000..cf91703 --- /dev/null +++ b/target/release/deps/option_ext-8c28fcc54e443152.d @@ -0,0 +1,8 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/liboption_ext-8c28fcc54e443152.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/option-ext-0.2.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/option-ext-0.2.0/src/impl.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/liboption_ext-8c28fcc54e443152.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/option-ext-0.2.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/option-ext-0.2.0/src/impl.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/option_ext-8c28fcc54e443152.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/option-ext-0.2.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/option-ext-0.2.0/src/impl.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/option-ext-0.2.0/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/option-ext-0.2.0/src/impl.rs: diff --git a/target/release/deps/overload-94fa3b5a5c6dc522.d b/target/release/deps/overload-94fa3b5a5c6dc522.d new file mode 100644 index 0000000..f1cb6d3 --- /dev/null +++ b/target/release/deps/overload-94fa3b5a5c6dc522.d @@ -0,0 +1,10 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/liboverload-94fa3b5a5c6dc522.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/overload-0.1.1/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/overload-0.1.1/src/unary.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/overload-0.1.1/src/assignment.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/overload-0.1.1/src/binary.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/liboverload-94fa3b5a5c6dc522.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/overload-0.1.1/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/overload-0.1.1/src/unary.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/overload-0.1.1/src/assignment.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/overload-0.1.1/src/binary.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/overload-94fa3b5a5c6dc522.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/overload-0.1.1/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/overload-0.1.1/src/unary.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/overload-0.1.1/src/assignment.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/overload-0.1.1/src/binary.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/overload-0.1.1/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/overload-0.1.1/src/unary.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/overload-0.1.1/src/assignment.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/overload-0.1.1/src/binary.rs: diff --git a/target/release/deps/pin_project_lite-1fa7cdba4ce9f504.d b/target/release/deps/pin_project_lite-1fa7cdba4ce9f504.d new file mode 100644 index 0000000..b63aeb4 --- /dev/null +++ b/target/release/deps/pin_project_lite-1fa7cdba4ce9f504.d @@ -0,0 +1,7 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libpin_project_lite-1fa7cdba4ce9f504.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libpin_project_lite-1fa7cdba4ce9f504.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/pin_project_lite-1fa7cdba4ce9f504.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/src/lib.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/src/lib.rs: diff --git a/target/release/deps/pkg_config-c6d62bb11f7b3580.d b/target/release/deps/pkg_config-c6d62bb11f7b3580.d new file mode 100644 index 0000000..cb41711 --- /dev/null +++ b/target/release/deps/pkg_config-c6d62bb11f7b3580.d @@ -0,0 +1,7 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libpkg_config-c6d62bb11f7b3580.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libpkg_config-c6d62bb11f7b3580.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/pkg_config-c6d62bb11f7b3580.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/src/lib.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/src/lib.rs: diff --git a/target/release/deps/proc_macro2-da36b031605c1ddc.d b/target/release/deps/proc_macro2-da36b031605c1ddc.d new file mode 100644 index 0000000..e1b391f --- /dev/null +++ b/target/release/deps/proc_macro2-da36b031605c1ddc.d @@ -0,0 +1,14 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libproc_macro2-da36b031605c1ddc.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/marker.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/parse.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/rcvec.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/detection.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/fallback.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/extra.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/wrapper.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libproc_macro2-da36b031605c1ddc.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/marker.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/parse.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/rcvec.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/detection.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/fallback.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/extra.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/wrapper.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/proc_macro2-da36b031605c1ddc.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/marker.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/parse.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/rcvec.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/detection.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/fallback.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/extra.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/wrapper.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/marker.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/parse.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/rcvec.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/detection.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/fallback.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/extra.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.95/src/wrapper.rs: diff --git a/target/release/deps/quote-21aeee0f329238fb.d b/target/release/deps/quote-21aeee0f329238fb.d new file mode 100644 index 0000000..f86541f --- /dev/null +++ b/target/release/deps/quote-21aeee0f329238fb.d @@ -0,0 +1,13 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libquote-21aeee0f329238fb.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/ext.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/format.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/ident_fragment.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/to_tokens.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/runtime.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/spanned.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libquote-21aeee0f329238fb.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/ext.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/format.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/ident_fragment.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/to_tokens.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/runtime.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/spanned.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/quote-21aeee0f329238fb.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/ext.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/format.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/ident_fragment.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/to_tokens.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/runtime.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/spanned.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/ext.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/format.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/ident_fragment.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/to_tokens.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/runtime.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.40/src/spanned.rs: diff --git a/target/release/deps/regex-05939fcd75661170.d b/target/release/deps/regex-05939fcd75661170.d new file mode 100644 index 0000000..822a298 --- /dev/null +++ b/target/release/deps/regex-05939fcd75661170.d @@ -0,0 +1,17 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libregex-05939fcd75661170.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/builders.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/bytes.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/find_byte.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regex/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regex/bytes.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regex/string.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regexset/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regexset/bytes.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regexset/string.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libregex-05939fcd75661170.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/builders.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/bytes.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/find_byte.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regex/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regex/bytes.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regex/string.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regexset/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regexset/bytes.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regexset/string.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/regex-05939fcd75661170.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/builders.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/bytes.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/find_byte.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regex/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regex/bytes.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regex/string.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regexset/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regexset/bytes.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regexset/string.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/builders.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/bytes.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/error.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/find_byte.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regex/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regex/bytes.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regex/string.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regexset/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regexset/bytes.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.11.1/src/regexset/string.rs: diff --git a/target/release/deps/regex_automata-0936a2775daea9d6.d b/target/release/deps/regex_automata-0936a2775daea9d6.d new file mode 100644 index 0000000..7928832 --- /dev/null +++ b/target/release/deps/regex_automata-0936a2775daea9d6.d @@ -0,0 +1,51 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libregex_automata-0936a2775daea9d6.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/literal.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/regex.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/reverse_inner.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/strategy.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/wrappers.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/builder.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/compiler.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/literal_trie.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/map.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/nfa.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/pikevm.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/range_trie.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/alphabet.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/captures.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/escape.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/interpolate.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/iter.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/lazy.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/look.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/pool.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/aho_corasick.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/byteset.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/memchr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/memmem.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/teddy.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/primitives.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/start.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/syntax.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/wire.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/empty.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/int.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/memchr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/search.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/sparse_set.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/unicode_data/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/utf8.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libregex_automata-0936a2775daea9d6.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/literal.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/regex.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/reverse_inner.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/strategy.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/wrappers.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/builder.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/compiler.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/literal_trie.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/map.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/nfa.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/pikevm.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/range_trie.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/alphabet.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/captures.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/escape.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/interpolate.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/iter.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/lazy.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/look.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/pool.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/aho_corasick.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/byteset.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/memchr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/memmem.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/teddy.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/primitives.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/start.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/syntax.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/wire.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/empty.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/int.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/memchr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/search.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/sparse_set.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/unicode_data/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/utf8.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/regex_automata-0936a2775daea9d6.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/literal.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/regex.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/reverse_inner.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/strategy.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/wrappers.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/builder.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/compiler.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/literal_trie.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/map.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/nfa.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/pikevm.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/range_trie.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/alphabet.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/captures.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/escape.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/interpolate.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/iter.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/lazy.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/look.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/pool.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/aho_corasick.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/byteset.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/memchr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/memmem.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/teddy.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/primitives.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/start.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/syntax.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/wire.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/empty.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/int.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/memchr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/search.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/sparse_set.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/unicode_data/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/utf8.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/macros.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/error.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/literal.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/regex.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/reverse_inner.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/strategy.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/meta/wrappers.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/builder.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/compiler.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/error.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/literal_trie.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/map.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/nfa.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/pikevm.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/nfa/thompson/range_trie.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/alphabet.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/captures.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/escape.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/interpolate.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/iter.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/lazy.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/look.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/pool.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/aho_corasick.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/byteset.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/memchr.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/memmem.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/prefilter/teddy.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/primitives.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/start.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/syntax.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/wire.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/empty.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/int.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/memchr.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/search.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/sparse_set.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/unicode_data/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.9/src/util/utf8.rs: diff --git a/target/release/deps/regex_automata-36c17437fa6ac77d.d b/target/release/deps/regex_automata-36c17437fa6ac77d.d new file mode 100644 index 0000000..3799457 --- /dev/null +++ b/target/release/deps/regex_automata-36c17437fa6ac77d.d @@ -0,0 +1,22 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libregex_automata-36c17437fa6ac77d.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/byteorder.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/classes.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/dense.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/determinize.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/dfa.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/minimize.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/nfa/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/nfa/compiler.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/nfa/map.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/nfa/range_trie.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/regex.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/sparse.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/sparse_set.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/state_id.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libregex_automata-36c17437fa6ac77d.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/byteorder.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/classes.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/dense.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/determinize.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/dfa.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/minimize.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/nfa/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/nfa/compiler.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/nfa/map.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/nfa/range_trie.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/regex.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/sparse.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/sparse_set.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/state_id.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/regex_automata-36c17437fa6ac77d.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/byteorder.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/classes.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/dense.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/determinize.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/dfa.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/minimize.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/nfa/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/nfa/compiler.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/nfa/map.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/nfa/range_trie.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/regex.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/sparse.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/sparse_set.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/state_id.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/byteorder.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/classes.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/dense.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/determinize.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/dfa.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/error.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/minimize.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/nfa/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/nfa/compiler.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/nfa/map.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/nfa/range_trie.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/regex.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/sparse.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/sparse_set.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.1.10/src/state_id.rs: diff --git a/target/release/deps/regex_syntax-278fc833d6e378c8.d b/target/release/deps/regex_syntax-278fc833d6e378c8.d new file mode 100644 index 0000000..9ba8ea7 --- /dev/null +++ b/target/release/deps/regex_syntax-278fc833d6e378c8.d @@ -0,0 +1,35 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libregex_syntax-278fc833d6e378c8.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/ast/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/ast/parse.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/ast/print.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/ast/visitor.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/either.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/interval.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/literal/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/print.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/translate.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/visitor.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/age.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/case_folding_simple.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/general_category.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/grapheme_cluster_break.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/perl_word.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/property_bool.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/property_names.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/property_values.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/script.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/script_extension.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/sentence_break.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/word_break.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/utf8.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libregex_syntax-278fc833d6e378c8.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/ast/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/ast/parse.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/ast/print.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/ast/visitor.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/either.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/interval.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/literal/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/print.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/translate.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/visitor.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/age.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/case_folding_simple.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/general_category.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/grapheme_cluster_break.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/perl_word.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/property_bool.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/property_names.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/property_values.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/script.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/script_extension.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/sentence_break.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/word_break.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/utf8.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/regex_syntax-278fc833d6e378c8.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/ast/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/ast/parse.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/ast/print.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/ast/visitor.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/either.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/interval.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/literal/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/print.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/translate.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/visitor.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/age.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/case_folding_simple.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/general_category.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/grapheme_cluster_break.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/perl_word.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/property_bool.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/property_names.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/property_values.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/script.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/script_extension.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/sentence_break.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/word_break.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/utf8.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/ast/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/ast/parse.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/ast/print.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/ast/visitor.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/either.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/error.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/interval.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/literal/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/print.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/translate.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/hir/visitor.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/parser.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/age.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/case_folding_simple.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/general_category.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/grapheme_cluster_break.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/perl_word.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/property_bool.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/property_names.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/property_values.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/script.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/script_extension.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/sentence_break.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/unicode_tables/word_break.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.6.29/src/utf8.rs: diff --git a/target/release/deps/regex_syntax-9c0764dd3734bc10.d b/target/release/deps/regex_syntax-9c0764dd3734bc10.d new file mode 100644 index 0000000..0e7a68b --- /dev/null +++ b/target/release/deps/regex_syntax-9c0764dd3734bc10.d @@ -0,0 +1,31 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libregex_syntax-9c0764dd3734bc10.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/ast/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/ast/parse.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/ast/print.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/ast/visitor.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/debug.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/either.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/interval.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/literal.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/print.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/translate.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/visitor.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/rank.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/case_folding_simple.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/perl_decimal.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/perl_space.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/perl_word.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/property_names.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/property_values.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/utf8.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libregex_syntax-9c0764dd3734bc10.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/ast/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/ast/parse.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/ast/print.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/ast/visitor.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/debug.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/either.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/interval.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/literal.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/print.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/translate.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/visitor.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/rank.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/case_folding_simple.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/perl_decimal.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/perl_space.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/perl_word.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/property_names.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/property_values.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/utf8.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/regex_syntax-9c0764dd3734bc10.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/ast/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/ast/parse.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/ast/print.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/ast/visitor.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/debug.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/either.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/interval.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/literal.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/print.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/translate.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/visitor.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/parser.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/rank.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/case_folding_simple.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/perl_decimal.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/perl_space.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/perl_word.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/property_names.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/property_values.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/utf8.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/ast/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/ast/parse.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/ast/print.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/ast/visitor.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/debug.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/either.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/error.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/interval.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/literal.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/print.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/translate.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/hir/visitor.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/parser.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/rank.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/case_folding_simple.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/perl_decimal.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/perl_space.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/perl_word.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/property_names.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/unicode_tables/property_values.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.5/src/utf8.rs: diff --git a/target/release/deps/rusqlite-6466f1598a85e8fc.d b/target/release/deps/rusqlite-6466f1598a85e8fc.d new file mode 100644 index 0000000..30829dd --- /dev/null +++ b/target/release/deps/rusqlite-6466f1598a85e8fc.d @@ -0,0 +1,29 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/librusqlite-6466f1598a85e8fc.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/busy.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/cache.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/column.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/config.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/inner_connection.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/params.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/pragma.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/raw_statement.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/row.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/statement.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/transaction.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/from_sql.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/to_sql.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/value.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/value_ref.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/version.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/util/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/util/param_cache.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/util/small_cstr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/util/sqlite_string.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/librusqlite-6466f1598a85e8fc.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/busy.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/cache.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/column.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/config.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/inner_connection.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/params.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/pragma.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/raw_statement.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/row.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/statement.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/transaction.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/from_sql.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/to_sql.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/value.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/value_ref.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/version.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/util/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/util/param_cache.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/util/small_cstr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/util/sqlite_string.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/rusqlite-6466f1598a85e8fc.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/busy.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/cache.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/column.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/config.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/inner_connection.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/params.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/pragma.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/raw_statement.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/row.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/statement.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/transaction.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/from_sql.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/to_sql.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/value.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/value_ref.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/version.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/util/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/util/param_cache.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/util/small_cstr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/util/sqlite_string.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/error.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/busy.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/cache.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/column.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/config.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/inner_connection.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/params.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/pragma.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/raw_statement.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/row.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/statement.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/transaction.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/from_sql.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/to_sql.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/value.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/types/value_ref.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/version.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/util/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/util/param_cache.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/util/small_cstr.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rusqlite-0.31.0/src/util/sqlite_string.rs: diff --git a/target/release/deps/same_file-fc3f371f398801a0.d b/target/release/deps/same_file-fc3f371f398801a0.d new file mode 100644 index 0000000..5de08a4 --- /dev/null +++ b/target/release/deps/same_file-fc3f371f398801a0.d @@ -0,0 +1,8 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libsame_file-fc3f371f398801a0.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/unix.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libsame_file-fc3f371f398801a0.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/unix.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/same_file-fc3f371f398801a0.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/unix.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/unix.rs: diff --git a/target/release/deps/sharded_slab-b9545388d9527f67.d b/target/release/deps/sharded_slab-b9545388d9527f67.d new file mode 100644 index 0000000..3153738 --- /dev/null +++ b/target/release/deps/sharded_slab-b9545388d9527f67.d @@ -0,0 +1,19 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libsharded_slab-b9545388d9527f67.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/implementation.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/pool.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/cfg.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/sync.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/clear.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/iter.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/slot.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/stack.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/shard.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/tid.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libsharded_slab-b9545388d9527f67.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/implementation.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/pool.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/cfg.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/sync.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/clear.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/iter.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/slot.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/stack.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/shard.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/tid.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/sharded_slab-b9545388d9527f67.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/implementation.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/pool.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/cfg.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/sync.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/clear.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/iter.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/slot.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/stack.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/shard.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/tid.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/macros.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/implementation.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/pool.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/cfg.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/sync.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/clear.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/iter.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/slot.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/stack.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/shard.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/tid.rs: diff --git a/target/release/deps/shlex-3f4d9a7f242aae72.d b/target/release/deps/shlex-3f4d9a7f242aae72.d new file mode 100644 index 0000000..5ab77f4 --- /dev/null +++ b/target/release/deps/shlex-3f4d9a7f242aae72.d @@ -0,0 +1,8 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libshlex-3f4d9a7f242aae72.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/bytes.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libshlex-3f4d9a7f242aae72.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/bytes.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/shlex-3f4d9a7f242aae72.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/bytes.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/bytes.rs: diff --git a/target/release/deps/smallvec-e6c5ff3af311c91d.d b/target/release/deps/smallvec-e6c5ff3af311c91d.d new file mode 100644 index 0000000..ddca6cb --- /dev/null +++ b/target/release/deps/smallvec-e6c5ff3af311c91d.d @@ -0,0 +1,7 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libsmallvec-e6c5ff3af311c91d.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libsmallvec-e6c5ff3af311c91d.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/smallvec-e6c5ff3af311c91d.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/src/lib.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.0/src/lib.rs: diff --git a/target/release/deps/strsim-aff96e3b8811a5dc.d b/target/release/deps/strsim-aff96e3b8811a5dc.d new file mode 100644 index 0000000..2309d67 --- /dev/null +++ b/target/release/deps/strsim-aff96e3b8811a5dc.d @@ -0,0 +1,7 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libstrsim-aff96e3b8811a5dc.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libstrsim-aff96e3b8811a5dc.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/strsim-aff96e3b8811a5dc.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/src/lib.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/src/lib.rs: diff --git a/target/release/deps/syn-6756b4a38928df5c.d b/target/release/deps/syn-6756b4a38928df5c.d new file mode 100644 index 0000000..a5c2da1 --- /dev/null +++ b/target/release/deps/syn-6756b4a38928df5c.d @@ -0,0 +1,58 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libsyn-6756b4a38928df5c.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/group.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/token.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/attr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/bigint.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/buffer.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/classify.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/custom_keyword.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/custom_punctuation.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/data.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/derive.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/drops.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/expr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/ext.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/file.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/fixup.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/generics.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/ident.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/item.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/lifetime.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/lit.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/lookahead.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/mac.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/meta.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/op.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/parse.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/discouraged.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/parse_macro_input.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/parse_quote.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/pat.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/path.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/precedence.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/print.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/punctuated.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/restriction.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/sealed.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/span.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/spanned.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/stmt.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/thread.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/tt.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/ty.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/verbatim.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/whitespace.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/export.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/visit_mut.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/clone.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/debug.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/eq.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/hash.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libsyn-6756b4a38928df5c.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/group.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/token.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/attr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/bigint.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/buffer.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/classify.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/custom_keyword.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/custom_punctuation.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/data.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/derive.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/drops.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/expr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/ext.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/file.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/fixup.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/generics.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/ident.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/item.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/lifetime.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/lit.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/lookahead.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/mac.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/meta.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/op.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/parse.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/discouraged.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/parse_macro_input.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/parse_quote.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/pat.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/path.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/precedence.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/print.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/punctuated.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/restriction.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/sealed.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/span.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/spanned.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/stmt.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/thread.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/tt.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/ty.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/verbatim.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/whitespace.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/export.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/visit_mut.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/clone.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/debug.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/eq.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/hash.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/syn-6756b4a38928df5c.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/group.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/token.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/attr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/bigint.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/buffer.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/classify.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/custom_keyword.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/custom_punctuation.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/data.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/derive.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/drops.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/expr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/ext.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/file.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/fixup.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/generics.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/ident.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/item.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/lifetime.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/lit.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/lookahead.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/mac.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/meta.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/op.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/parse.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/discouraged.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/parse_macro_input.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/parse_quote.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/pat.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/path.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/precedence.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/print.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/punctuated.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/restriction.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/sealed.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/span.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/spanned.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/stmt.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/thread.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/tt.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/ty.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/verbatim.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/whitespace.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/export.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/visit_mut.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/clone.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/debug.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/eq.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/hash.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/macros.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/group.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/token.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/attr.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/bigint.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/buffer.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/classify.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/custom_keyword.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/custom_punctuation.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/data.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/derive.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/drops.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/error.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/expr.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/ext.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/file.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/fixup.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/generics.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/ident.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/item.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/lifetime.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/lit.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/lookahead.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/mac.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/meta.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/op.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/parse.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/discouraged.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/parse_macro_input.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/parse_quote.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/pat.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/path.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/precedence.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/print.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/punctuated.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/restriction.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/sealed.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/span.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/spanned.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/stmt.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/thread.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/tt.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/ty.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/verbatim.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/whitespace.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/export.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/visit_mut.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/clone.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/debug.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/eq.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.101/src/gen/hash.rs: diff --git a/target/release/deps/thread_local-54e9a92d4c4727cd.d b/target/release/deps/thread_local-54e9a92d4c4727cd.d new file mode 100644 index 0000000..eb584e8 --- /dev/null +++ b/target/release/deps/thread_local-54e9a92d4c4727cd.d @@ -0,0 +1,10 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libthread_local-54e9a92d4c4727cd.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.8/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.8/src/cached.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.8/src/thread_id.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.8/src/unreachable.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libthread_local-54e9a92d4c4727cd.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.8/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.8/src/cached.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.8/src/thread_id.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.8/src/unreachable.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/thread_local-54e9a92d4c4727cd.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.8/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.8/src/cached.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.8/src/thread_id.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.8/src/unreachable.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.8/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.8/src/cached.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.8/src/thread_id.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.8/src/unreachable.rs: diff --git a/target/release/deps/tracing-b66cda8937eb421a.d b/target/release/deps/tracing-b66cda8937eb421a.d new file mode 100644 index 0000000..5f963f2 --- /dev/null +++ b/target/release/deps/tracing-b66cda8937eb421a.d @@ -0,0 +1,15 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libtracing-b66cda8937eb421a.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/dispatcher.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/field.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/instrument.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/level_filters.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/span.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/stdlib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/subscriber.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libtracing-b66cda8937eb421a.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/dispatcher.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/field.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/instrument.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/level_filters.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/span.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/stdlib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/subscriber.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/tracing-b66cda8937eb421a.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/dispatcher.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/field.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/instrument.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/level_filters.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/span.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/stdlib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/subscriber.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/macros.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/dispatcher.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/field.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/instrument.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/level_filters.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/span.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/stdlib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/subscriber.rs: diff --git a/target/release/deps/tracing_attributes-ec7d429034764125.d b/target/release/deps/tracing_attributes-ec7d429034764125.d new file mode 100644 index 0000000..deb2fe6 --- /dev/null +++ b/target/release/deps/tracing_attributes-ec7d429034764125.d @@ -0,0 +1,7 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libtracing_attributes-ec7d429034764125.so: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/src/attr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/src/expand.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/tracing_attributes-ec7d429034764125.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/src/attr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/src/expand.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/src/attr.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.28/src/expand.rs: diff --git a/target/release/deps/tracing_core-9195eaccc1cbbd86.d b/target/release/deps/tracing_core-9195eaccc1cbbd86.d new file mode 100644 index 0000000..a250a65 --- /dev/null +++ b/target/release/deps/tracing_core-9195eaccc1cbbd86.d @@ -0,0 +1,17 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libtracing_core-9195eaccc1cbbd86.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/lazy.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/callsite.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/dispatcher.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/event.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/field.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/metadata.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/parent.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/span.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/stdlib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/subscriber.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libtracing_core-9195eaccc1cbbd86.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/lazy.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/callsite.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/dispatcher.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/event.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/field.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/metadata.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/parent.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/span.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/stdlib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/subscriber.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/tracing_core-9195eaccc1cbbd86.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/lazy.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/callsite.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/dispatcher.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/event.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/field.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/metadata.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/parent.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/span.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/stdlib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/subscriber.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/lazy.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/callsite.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/dispatcher.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/event.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/field.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/metadata.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/parent.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/span.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/stdlib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.33/src/subscriber.rs: diff --git a/target/release/deps/tracing_log-5b33dd22edc54f5f.d b/target/release/deps/tracing_log-5b33dd22edc54f5f.d new file mode 100644 index 0000000..09c5395 --- /dev/null +++ b/target/release/deps/tracing_log-5b33dd22edc54f5f.d @@ -0,0 +1,8 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libtracing_log-5b33dd22edc54f5f.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-log-0.2.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-log-0.2.0/src/log_tracer.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libtracing_log-5b33dd22edc54f5f.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-log-0.2.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-log-0.2.0/src/log_tracer.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/tracing_log-5b33dd22edc54f5f.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-log-0.2.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-log-0.2.0/src/log_tracer.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-log-0.2.0/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-log-0.2.0/src/log_tracer.rs: diff --git a/target/release/deps/tracing_subscriber-4f1b7a8ecdf25521.d b/target/release/deps/tracing_subscriber-4f1b7a8ecdf25521.d new file mode 100644 index 0000000..98645af --- /dev/null +++ b/target/release/deps/tracing_subscriber-4f1b7a8ecdf25521.d @@ -0,0 +1,41 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libtracing_subscriber-4f1b7a8ecdf25521.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/field/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/field/debug.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/field/delimited.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/field/display.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/filter_fn.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/level.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/prelude.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/registry/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/layer/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/layer/context.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/layer/layered.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/util.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/env/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/env/builder.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/env/directive.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/env/field.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/layer_filters/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/layer_filters/combinator.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/targets.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/directive.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/registry/extensions.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/registry/sharded.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/registry/stack.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/reload.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/sync.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/fmt_layer.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/format/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/format/pretty.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/time/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/time/datetime.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/writer.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libtracing_subscriber-4f1b7a8ecdf25521.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/field/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/field/debug.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/field/delimited.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/field/display.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/filter_fn.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/level.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/prelude.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/registry/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/layer/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/layer/context.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/layer/layered.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/util.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/env/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/env/builder.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/env/directive.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/env/field.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/layer_filters/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/layer_filters/combinator.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/targets.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/directive.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/registry/extensions.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/registry/sharded.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/registry/stack.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/reload.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/sync.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/fmt_layer.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/format/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/format/pretty.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/time/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/time/datetime.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/writer.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/tracing_subscriber-4f1b7a8ecdf25521.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/field/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/field/debug.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/field/delimited.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/field/display.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/filter_fn.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/level.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/prelude.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/registry/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/layer/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/layer/context.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/layer/layered.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/util.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/env/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/env/builder.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/env/directive.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/env/field.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/layer_filters/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/layer_filters/combinator.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/targets.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/directive.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/registry/extensions.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/registry/sharded.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/registry/stack.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/reload.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/sync.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/fmt_layer.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/format/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/format/pretty.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/time/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/time/datetime.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/writer.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/macros.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/field/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/field/debug.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/field/delimited.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/field/display.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/filter_fn.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/level.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/prelude.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/registry/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/layer/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/layer/context.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/layer/layered.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/util.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/env/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/env/builder.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/env/directive.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/env/field.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/layer_filters/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/layer_filters/combinator.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/targets.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/filter/directive.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/registry/extensions.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/registry/sharded.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/registry/stack.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/reload.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/sync.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/fmt_layer.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/format/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/format/pretty.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/time/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/time/datetime.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.19/src/fmt/writer.rs: diff --git a/target/release/deps/unicode_ident-02b0d04ef026a7b6.d b/target/release/deps/unicode_ident-02b0d04ef026a7b6.d new file mode 100644 index 0000000..f0ef3e3 --- /dev/null +++ b/target/release/deps/unicode_ident-02b0d04ef026a7b6.d @@ -0,0 +1,8 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libunicode_ident-02b0d04ef026a7b6.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/src/tables.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libunicode_ident-02b0d04ef026a7b6.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/src/tables.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/unicode_ident-02b0d04ef026a7b6.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/src/tables.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.18/src/tables.rs: diff --git a/target/release/deps/utf8parse-a65b6a9ab8fee7e7.d b/target/release/deps/utf8parse-a65b6a9ab8fee7e7.d new file mode 100644 index 0000000..f95ea4d --- /dev/null +++ b/target/release/deps/utf8parse-a65b6a9ab8fee7e7.d @@ -0,0 +1,8 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libutf8parse-a65b6a9ab8fee7e7.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/types.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libutf8parse-a65b6a9ab8fee7e7.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/types.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/utf8parse-a65b6a9ab8fee7e7.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/types.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/types.rs: diff --git a/target/release/deps/vcpkg-0a82a1ed7dcb5df3.d b/target/release/deps/vcpkg-0a82a1ed7dcb5df3.d new file mode 100644 index 0000000..0ec4fe7 --- /dev/null +++ b/target/release/deps/vcpkg-0a82a1ed7dcb5df3.d @@ -0,0 +1,7 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libvcpkg-0a82a1ed7dcb5df3.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/vcpkg-0.2.15/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libvcpkg-0a82a1ed7dcb5df3.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/vcpkg-0.2.15/src/lib.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/vcpkg-0a82a1ed7dcb5df3.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/vcpkg-0.2.15/src/lib.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/vcpkg-0.2.15/src/lib.rs: diff --git a/target/release/deps/version_check-ac861858003339ac.d b/target/release/deps/version_check-ac861858003339ac.d new file mode 100644 index 0000000..8a22f4a --- /dev/null +++ b/target/release/deps/version_check-ac861858003339ac.d @@ -0,0 +1,10 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libversion_check-ac861858003339ac.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libversion_check-ac861858003339ac.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/version_check-ac861858003339ac.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs: diff --git a/target/release/deps/walkdir-77a185459770fb5f.d b/target/release/deps/walkdir-77a185459770fb5f.d new file mode 100644 index 0000000..d276cd9 --- /dev/null +++ b/target/release/deps/walkdir-77a185459770fb5f.d @@ -0,0 +1,10 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libwalkdir-77a185459770fb5f.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/dent.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/util.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libwalkdir-77a185459770fb5f.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/dent.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/util.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/walkdir-77a185459770fb5f.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/dent.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/util.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/dent.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/error.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/util.rs: diff --git a/target/release/deps/zerocopy-58046a768784ce6d.d b/target/release/deps/zerocopy-58046a768784ce6d.d new file mode 100644 index 0000000..834e1d1 --- /dev/null +++ b/target/release/deps/zerocopy-58046a768784ce6d.d @@ -0,0 +1,27 @@ +/home/user/Documents/GitHub/Marlin/target/release/deps/libzerocopy-58046a768784ce6d.rmeta: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/util/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/util/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/util/macro_util.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/byte_slice.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/byteorder.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/deprecated.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/impls.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/layout.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/inner.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/invariant.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/ptr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/transmute.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/ref.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/split_at.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/wrappers.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/libzerocopy-58046a768784ce6d.rlib: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/util/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/util/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/util/macro_util.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/byte_slice.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/byteorder.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/deprecated.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/impls.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/layout.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/inner.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/invariant.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/ptr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/transmute.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/ref.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/split_at.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/wrappers.rs + +/home/user/Documents/GitHub/Marlin/target/release/deps/zerocopy-58046a768784ce6d.d: /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/lib.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/util/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/util/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/util/macro_util.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/byte_slice.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/byteorder.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/deprecated.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/error.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/impls.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/layout.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/macros.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/mod.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/inner.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/invariant.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/ptr.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/transmute.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/ref.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/split_at.rs /home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/wrappers.rs + +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/lib.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/util/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/util/macros.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/util/macro_util.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/byte_slice.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/byteorder.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/deprecated.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/error.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/impls.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/layout.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/macros.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/mod.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/inner.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/invariant.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/ptr.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/pointer/transmute.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/ref.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/split_at.rs: +/home/user/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.25/src/wrappers.rs: + +# env-dep:CARGO_PKG_VERSION=0.8.25 diff --git a/target/release/marlin b/target/release/marlin new file mode 100755 index 0000000..7811dc6 Binary files /dev/null and b/target/release/marlin differ diff --git a/target/release/marlin.d b/target/release/marlin.d new file mode 100644 index 0000000..864c4d7 --- /dev/null +++ b/target/release/marlin.d @@ -0,0 +1 @@ +/home/user/Documents/GitHub/Marlin/target/release/marlin: /home/user/Documents/GitHub/Marlin/src/cli.rs /home/user/Documents/GitHub/Marlin/src/config.rs /home/user/Documents/GitHub/Marlin/src/db/migrations.sql /home/user/Documents/GitHub/Marlin/src/db/mod.rs /home/user/Documents/GitHub/Marlin/src/logging.rs /home/user/Documents/GitHub/Marlin/src/main.rs /home/user/Documents/GitHub/Marlin/src/scan.rs