1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "adler" 7version = "1.0.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 11[[package]] 12name = "anyhow" 13version = "1.0.86" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 16 17[[package]] 18name = "autocfg" 19version = "1.3.0" 20source = "registry+https://github.com/rust-lang/crates.io-index" 21checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 22 23[[package]] 24name = "bitflags" 25version = "1.3.2" 26source = "registry+https://github.com/rust-lang/crates.io-index" 27checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 28 29[[package]] 30name = "bytemuck" 31version = "1.16.3" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "102087e286b4677862ea56cf8fc58bb2cdfa8725c40ffb80fe3a008eb7f2fc83" 34 35[[package]] 36name = "byteorder-lite" 37version = "0.1.0" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" 40 41[[package]] 42name = "cfg-if" 43version = "1.0.0" 44source = "registry+https://github.com/rust-lang/crates.io-index" 45checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 46 47[[package]] 48name = "crc32fast" 49version = "1.4.2" 50source = "registry+https://github.com/rust-lang/crates.io-index" 51checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 52dependencies = [ 53 "cfg-if", 54] 55 56[[package]] 57name = "fdeflate" 58version = "0.3.4" 59source = "registry+https://github.com/rust-lang/crates.io-index" 60checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 61dependencies = [ 62 "simd-adler32", 63] 64 65[[package]] 66name = "flate2" 67version = "1.0.31" 68source = "registry+https://github.com/rust-lang/crates.io-index" 69checksum = "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920" 70dependencies = [ 71 "crc32fast", 72 "miniz_oxide", 73] 74 75[[package]] 76name = "image" 77version = "0.25.2" 78source = "registry+https://github.com/rust-lang/crates.io-index" 79checksum = "99314c8a2152b8ddb211f924cdae532d8c5e4c8bb54728e12fff1b0cd5963a10" 80dependencies = [ 81 "bytemuck", 82 "byteorder-lite", 83 "num-traits", 84 "png", 85] 86 87[[package]] 88name = "miniz_oxide" 89version = "0.7.4" 90source = "registry+https://github.com/rust-lang/crates.io-index" 91checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" 92dependencies = [ 93 "adler", 94 "simd-adler32", 95] 96 97[[package]] 98name = "num-traits" 99version = "0.2.19" 100source = "registry+https://github.com/rust-lang/crates.io-index" 101checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 102dependencies = [ 103 "autocfg", 104] 105 106[[package]] 107name = "png" 108version = "0.17.13" 109source = "registry+https://github.com/rust-lang/crates.io-index" 110checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1" 111dependencies = [ 112 "bitflags", 113 "crc32fast", 114 "fdeflate", 115 "flate2", 116 "miniz_oxide", 117] 118 119[[package]] 120name = "proc-macro2" 121version = "1.0.86" 122source = "registry+https://github.com/rust-lang/crates.io-index" 123checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 124dependencies = [ 125 "unicode-ident", 126] 127 128[[package]] 129name = "quote" 130version = "1.0.36" 131source = "registry+https://github.com/rust-lang/crates.io-index" 132checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 133dependencies = [ 134 "proc-macro2", 135] 136 137[[package]] 138name = "simd-adler32" 139version = "0.3.7" 140source = "registry+https://github.com/rust-lang/crates.io-index" 141checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 142 143[[package]] 144name = "syn" 145version = "2.0.74" 146source = "registry+https://github.com/rust-lang/crates.io-index" 147checksum = "1fceb41e3d546d0bd83421d3409b1460cc7444cd389341a4c880fe7a042cb3d7" 148dependencies = [ 149 "proc-macro2", 150 "quote", 151 "unicode-ident", 152] 153 154[[package]] 155name = "thiserror" 156version = "1.0.63" 157source = "registry+https://github.com/rust-lang/crates.io-index" 158checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" 159dependencies = [ 160 "thiserror-impl", 161] 162 163[[package]] 164name = "thiserror-impl" 165version = "1.0.63" 166source = "registry+https://github.com/rust-lang/crates.io-index" 167checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" 168dependencies = [ 169 "proc-macro2", 170 "quote", 171 "syn", 172] 173 174[[package]] 175name = "unicode-ident" 176version = "1.0.12" 177source = "registry+https://github.com/rust-lang/crates.io-index" 178checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 179 180[[package]] 181name = "wasi-nn" 182version = "0.6.0" 183source = "registry+https://github.com/rust-lang/crates.io-index" 184checksum = "7031683cc05a71515d9200fb159b28d717ded3c40dbb979d1602cf46f3a68f40" 185dependencies = [ 186 "thiserror", 187] 188 189[[package]] 190name = "wasi-nn-example-pytorch" 191version = "0.0.0" 192dependencies = [ 193 "anyhow", 194 "image", 195 "wasi-nn", 196] 197