Merge pull request #182496 from wackbyte/bump-wasynth

wasynth: 0.11.0 -> 0.12.0

authored by

Mario Rodas and committed by
GitHub
67d29750 f96d981d

+38 -20
+36 -18
pkgs/development/tools/wasynth/Cargo.lock
··· 25 25 26 26 [[package]] 27 27 name = "codegen-luajit" 28 - version = "0.11.0" 28 + version = "0.12.0" 29 29 dependencies = [ 30 30 "wasm-ast", 31 - "wasmparser", 31 + "wasmparser 0.86.0", 32 32 ] 33 33 34 34 [[package]] 35 35 name = "codegen-luau" 36 - version = "0.11.0" 36 + version = "0.12.0" 37 37 dependencies = [ 38 38 "wasm-ast", 39 - "wasmparser", 39 + "wasmparser 0.86.0", 40 40 ] 41 41 42 42 [[package]] ··· 52 52 53 53 [[package]] 54 54 name = "dev-test" 55 - version = "0.11.0" 55 + version = "0.12.0" 56 56 dependencies = [ 57 57 "codegen-luajit", 58 58 "codegen-luau", ··· 77 77 78 78 [[package]] 79 79 name = "hashbrown" 80 - version = "0.12.1" 80 + version = "0.12.3" 81 81 source = "registry+https://github.com/rust-lang/crates.io-index" 82 - checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3" 82 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 83 83 84 84 [[package]] 85 85 name = "indexmap" ··· 116 116 117 117 [[package]] 118 118 name = "once_cell" 119 - version = "1.12.0" 119 + version = "1.13.0" 120 120 source = "registry+https://github.com/rust-lang/crates.io-index" 121 - checksum = "7709cef83f0c1f58f666e746a08b21e0085f7440fa6a29cc194d68aac97a4225" 121 + checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1" 122 122 123 123 [[package]] 124 124 name = "proc-macro2" ··· 192 192 193 193 [[package]] 194 194 name = "unicode-ident" 195 - version = "1.0.1" 195 + version = "1.0.2" 196 196 source = "registry+https://github.com/rust-lang/crates.io-index" 197 - checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c" 197 + checksum = "15c61ba63f9235225a22310255a29b806b907c9b8c964bcbd0a2c70f3f2deea7" 198 198 199 199 [[package]] 200 200 name = "unicode-width" ··· 210 210 211 211 [[package]] 212 212 name = "wasm-ast" 213 - version = "0.11.0" 213 + version = "0.12.0" 214 214 dependencies = [ 215 - "wasmparser", 215 + "wasmparser 0.86.0", 216 216 ] 217 217 218 218 [[package]] ··· 225 225 ] 226 226 227 227 [[package]] 228 + name = "wasm-encoder" 229 + version = "0.14.0" 230 + source = "registry+https://github.com/rust-lang/crates.io-index" 231 + checksum = "f76068e87fe9b837a6bc2ccded66784173eadb828c4168643e9fddf6f9ed2e61" 232 + dependencies = [ 233 + "leb128", 234 + ] 235 + 236 + [[package]] 228 237 name = "wasm-smith" 229 - version = "0.11.1" 238 + version = "0.11.2" 230 239 source = "registry+https://github.com/rust-lang/crates.io-index" 231 - checksum = "c85cf25be85aac46356216b4662eb5768347046449a45c938ae1443b788665bb" 240 + checksum = "b73250e61e41d0e467b78559c7d761841005d724384bb0b78d52ff974acf5520" 232 241 dependencies = [ 233 242 "arbitrary", 234 243 "flagset", 235 244 "indexmap", 236 245 "leb128", 237 - "wasm-encoder", 238 - "wasmparser", 246 + "wasm-encoder 0.14.0", 247 + "wasmparser 0.87.0", 239 248 ] 240 249 241 250 [[package]] ··· 248 257 ] 249 258 250 259 [[package]] 260 + name = "wasmparser" 261 + version = "0.87.0" 262 + source = "registry+https://github.com/rust-lang/crates.io-index" 263 + checksum = "5c04e207cd2e8ecb6f9bd28a2cf3119b4c6bfeee6fe3a25cc1daf8041d00a875" 264 + dependencies = [ 265 + "indexmap", 266 + ] 267 + 268 + [[package]] 251 269 name = "wast" 252 270 version = "42.0.0" 253 271 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 256 274 "leb128", 257 275 "memchr", 258 276 "unicode-width", 259 - "wasm-encoder", 277 + "wasm-encoder 0.13.0", 260 278 ]
+2 -2
pkgs/development/tools/wasynth/default.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "wasynth"; 9 - version = "0.11.0"; 9 + version = "0.12.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "Rerumu"; 13 13 repo = "Wasynth"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-QYWseogWHAjnNRi1OVtiJYOCxOLtHKjmlAd/U8Yv4tI="; 15 + sha256 = "sha256-hbY+epUtYSQrvnAbCELsVcqd3UoXGn24FkzWfrM0K14="; 16 16 }; 17 17 18 18 # A lock file isn't provided, so it must be added manually.