wasmtime 10.0.1 → 11.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +146 -140
- data/ext/Cargo.toml +6 -6
- data/ext/cargo-vendor/addr2line-0.21.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/addr2line-0.21.0/CHANGELOG.md +336 -0
- data/ext/cargo-vendor/addr2line-0.21.0/Cargo.lock +704 -0
- data/ext/cargo-vendor/addr2line-0.21.0/Cargo.toml +147 -0
- data/ext/cargo-vendor/addr2line-0.21.0/examples/addr2line.rs +317 -0
- data/ext/cargo-vendor/addr2line-0.21.0/src/lib.rs +1729 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/Cargo.toml +70 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/src/ahocorasick.rs +2789 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/src/dfa.rs +816 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/src/lib.rs +327 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/src/nfa/contiguous.rs +1141 -0
- data/ext/cargo-vendor/aho-corasick-1.0.4/src/nfa/noncontiguous.rs +1710 -0
- data/ext/cargo-vendor/anyhow-1.0.75/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/anyhow-1.0.75/Cargo.toml +67 -0
- data/ext/cargo-vendor/anyhow-1.0.75/build.rs +131 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/backtrace.rs +401 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/context.rs +193 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/error.rs +996 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/kind.rs +119 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/lib.rs +689 -0
- data/ext/cargo-vendor/anyhow-1.0.75/src/wrapper.rs +81 -0
- data/ext/cargo-vendor/anyhow-1.0.75/tests/test_ensure.rs +722 -0
- data/ext/cargo-vendor/async-trait-0.1.73/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/async-trait-0.1.73/Cargo.toml +63 -0
- data/ext/cargo-vendor/async-trait-0.1.73/src/expand.rs +484 -0
- data/ext/cargo-vendor/async-trait-0.1.73/src/lib.rs +343 -0
- data/ext/cargo-vendor/async-trait-0.1.73/tests/test.rs +1606 -0
- data/ext/cargo-vendor/async-trait-0.1.73/tests/ui/consider-restricting.stderr +35 -0
- data/ext/cargo-vendor/async-trait-0.1.73/tests/ui/send-not-implemented.stderr +49 -0
- data/ext/cargo-vendor/backtrace-0.3.69/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/backtrace-0.3.69/Cargo.lock +192 -0
- data/ext/cargo-vendor/backtrace-0.3.69/Cargo.toml +145 -0
- data/ext/cargo-vendor/backtrace-0.3.69/build.rs +49 -0
- data/ext/cargo-vendor/backtrace-0.3.69/src/print/fuchsia.rs +441 -0
- data/ext/cargo-vendor/backtrace-0.3.69/src/print.rs +320 -0
- data/ext/cargo-vendor/backtrace-0.3.69/src/symbolize/gimli/parse_running_mmaps_unix.rs +295 -0
- data/ext/cargo-vendor/backtrace-0.3.69/src/symbolize/mod.rs +485 -0
- data/ext/cargo-vendor/backtrace-0.3.69/src/windows.rs +693 -0
- data/ext/cargo-vendor/cc-1.0.83/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cc-1.0.83/Cargo.lock +111 -0
- data/ext/cargo-vendor/cc-1.0.83/Cargo.toml +43 -0
- data/ext/cargo-vendor/cc-1.0.83/src/lib.rs +4024 -0
- data/ext/cargo-vendor/cc-1.0.83/tests/test.rs +477 -0
- data/ext/cargo-vendor/cranelift-bforest-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-bforest-0.98.1/Cargo.toml +31 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/Cargo.toml +160 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/build.rs +391 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/ir/libcall.rs +232 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/abi.rs +1506 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst/emit.rs +3714 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst/emit_tests.rs +7897 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/inst/mod.rs +2980 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/lower/isle.rs +837 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/lower.isle +2899 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/aarch64/mod.rs +250 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/call_conv.rs +119 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/mod.rs +436 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/abi.rs +946 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/emit.rs +3058 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/encode.rs +281 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/mod.rs +2070 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst/vector.rs +939 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst.isle +2927 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/inst_vector.isle +1650 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/lower/isle.rs +585 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/lower.isle +1984 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/riscv64/mod.rs +228 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/abi.rs +948 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/inst.isle +5043 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/lower/isle.rs +1039 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/lower.isle +3983 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/s390x/mod.rs +225 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/abi.rs +1220 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/encoding/rex.rs +588 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/args.rs +2193 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/emit.rs +4298 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/emit_state.rs +72 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/emit_tests.rs +5678 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst/mod.rs +2759 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/inst.isle +5079 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/lower/isle.rs +1096 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/lower.isle +4650 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/lower.rs +340 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isa/x64/mod.rs +230 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/isle_prelude.rs +894 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/lib.rs +140 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/abi.rs +2605 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/buffer.rs +2255 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/isle.rs +836 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/mod.rs +551 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/reg.rs +556 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/machinst/vcode.rs +1580 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/opts/extends.isle +41 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/opts/vector.isle +8 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/prelude.isle +594 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/prelude_lower.isle +1024 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/settings.rs +601 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/timing.rs +271 -0
- data/ext/cargo-vendor/cranelift-codegen-0.98.1/src/unionfind.rs +74 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/Cargo.toml +23 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/cdsl/settings.rs +429 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/isa/x86.rs +409 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/shared/instructions.rs +3847 -0
- data/ext/cargo-vendor/cranelift-codegen-meta-0.98.1/src/shared/settings.rs +341 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-codegen-shared-0.98.1/Cargo.toml +22 -0
- data/ext/cargo-vendor/cranelift-control-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-control-0.98.1/Cargo.toml +30 -0
- data/ext/cargo-vendor/cranelift-entity-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-entity-0.98.1/Cargo.toml +35 -0
- data/ext/cargo-vendor/cranelift-frontend-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-frontend-0.98.1/Cargo.toml +53 -0
- data/ext/cargo-vendor/cranelift-isle-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-isle-0.98.1/Cargo.toml +37 -0
- data/ext/cargo-vendor/cranelift-native-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-native-0.98.1/Cargo.toml +38 -0
- data/ext/cargo-vendor/cranelift-native-0.98.1/src/lib.rs +204 -0
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/Cargo.toml +85 -0
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/code_translator.rs +3544 -0
- data/ext/cargo-vendor/cranelift-wasm-0.98.1/src/environ/spec.rs +852 -0
- data/ext/cargo-vendor/gimli-0.28.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/gimli-0.28.0/CHANGELOG.md +987 -0
- data/ext/cargo-vendor/gimli-0.28.0/Cargo.toml +109 -0
- data/ext/cargo-vendor/gimli-0.28.0/LICENSE-MIT +25 -0
- data/ext/cargo-vendor/gimli-0.28.0/README.md +81 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/arch.rs +768 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/common.rs +391 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/constants.rs +1435 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/endianity.rs +256 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/leb128.rs +612 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/lib.rs +79 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/abbrev.rs +1089 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/addr.rs +128 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/aranges.rs +660 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/cfi.rs +7712 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/dwarf.rs +1184 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/endian_reader.rs +639 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/endian_slice.rs +321 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/index.rs +535 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/lazy.rs +116 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/line.rs +3130 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/lists.rs +68 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/loclists.rs +1627 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/lookup.rs +202 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/mod.rs +830 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/op.rs +4119 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/pubnames.rs +141 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/pubtypes.rs +141 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/reader.rs +502 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/rnglists.rs +1458 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/str.rs +321 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/unit.rs +6139 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/util.rs +251 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/read/value.rs +1621 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/test_util.rs +53 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/abbrev.rs +188 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/cfi.rs +1050 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/dwarf.rs +138 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/endian_vec.rs +117 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/line.rs +1957 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/loc.rs +550 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/mod.rs +425 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/op.rs +1618 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/range.rs +416 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/section.rs +172 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/str.rs +172 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/unit.rs +3152 -0
- data/ext/cargo-vendor/gimli-0.28.0/src/write/writer.rs +494 -0
- data/ext/cargo-vendor/log-0.4.20/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/log-0.4.20/CHANGELOG.md +273 -0
- data/ext/cargo-vendor/log-0.4.20/Cargo.toml +118 -0
- data/ext/cargo-vendor/log-0.4.20/README.md +121 -0
- data/ext/cargo-vendor/log-0.4.20/src/__private_api.rs +57 -0
- data/ext/cargo-vendor/log-0.4.20/src/lib.rs +1827 -0
- data/ext/cargo-vendor/log-0.4.20/src/macros.rs +240 -0
- data/ext/cargo-vendor/object-0.32.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/object-0.32.0/CHANGELOG.md +679 -0
- data/ext/cargo-vendor/object-0.32.0/Cargo.toml +163 -0
- data/ext/cargo-vendor/object-0.32.0/README.md +58 -0
- data/ext/cargo-vendor/object-0.32.0/clippy.toml +1 -0
- data/ext/cargo-vendor/object-0.32.0/src/common.rs +501 -0
- data/ext/cargo-vendor/object-0.32.0/src/elf.rs +6156 -0
- data/ext/cargo-vendor/object-0.32.0/src/pe.rs +3054 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/any.rs +1314 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/coff/import.rs +209 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/coff/mod.rs +21 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/elf/file.rs +911 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/elf/note.rs +266 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/elf/relocation.rs +576 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/elf/symbol.rs +585 -0
- data/ext/cargo-vendor/object-0.32.0/src/read/mod.rs +767 -0
- data/ext/cargo-vendor/object-0.32.0/src/write/elf/object.rs +903 -0
- data/ext/cargo-vendor/object-0.32.0/src/write/macho.rs +966 -0
- data/ext/cargo-vendor/object-0.32.0/tests/round_trip/macho.rs +63 -0
- data/ext/cargo-vendor/object-0.32.0/tests/round_trip/mod.rs +637 -0
- data/ext/cargo-vendor/quote-1.0.33/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/quote-1.0.33/Cargo.toml +50 -0
- data/ext/cargo-vendor/quote-1.0.33/src/lib.rs +1444 -0
- data/ext/cargo-vendor/quote-1.0.33/src/runtime.rs +530 -0
- data/ext/cargo-vendor/serde-1.0.185/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/serde-1.0.185/Cargo.toml +66 -0
- data/ext/cargo-vendor/serde-1.0.185/src/lib.rs +327 -0
- data/ext/cargo-vendor/serde-1.0.185/src/private/ser.rs +1385 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/Cargo.toml +59 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/README.md +114 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/crates-io.md +65 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/src/de.rs +3136 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/src/internals/attr.rs +1878 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/src/internals/symbol.rs +71 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/src/lib.rs +102 -0
- data/ext/cargo-vendor/serde_derive-1.0.185/src/ser.rs +1359 -0
- data/ext/cargo-vendor/serde_json-1.0.105/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/serde_json-1.0.105/Cargo.toml +109 -0
- data/ext/cargo-vendor/serde_json-1.0.105/src/de.rs +2678 -0
- data/ext/cargo-vendor/serde_json-1.0.105/src/lib.rs +418 -0
- data/ext/cargo-vendor/serde_json-1.0.105/src/ser.rs +2247 -0
- data/ext/cargo-vendor/serde_json-1.0.105/src/value/de.rs +1419 -0
- data/ext/cargo-vendor/serde_json-1.0.105/src/value/ser.rs +1053 -0
- data/ext/cargo-vendor/serde_json-1.0.105/tests/test.rs +2499 -0
- data/ext/cargo-vendor/syn-2.0.29/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/syn-2.0.29/Cargo.toml +150 -0
- data/ext/cargo-vendor/syn-2.0.29/src/custom_keyword.rs +259 -0
- data/ext/cargo-vendor/syn-2.0.29/src/custom_punctuation.rs +302 -0
- data/ext/cargo-vendor/syn-2.0.29/src/export.rs +69 -0
- data/ext/cargo-vendor/syn-2.0.29/src/group.rs +291 -0
- data/ext/cargo-vendor/syn-2.0.29/src/lib.rs +970 -0
- data/ext/cargo-vendor/syn-2.0.29/src/parse_quote.rs +179 -0
- data/ext/cargo-vendor/syn-2.0.29/src/span.rs +63 -0
- data/ext/cargo-vendor/syn-2.0.29/src/token.rs +1071 -0
- data/ext/cargo-vendor/syn-2.0.29/tests/common/eq.rs +864 -0
- data/ext/cargo-vendor/thiserror-1.0.47/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/thiserror-1.0.47/Cargo.toml +48 -0
- data/ext/cargo-vendor/thiserror-1.0.47/build.rs +95 -0
- data/ext/cargo-vendor/thiserror-1.0.47/src/aserror.rs +50 -0
- data/ext/cargo-vendor/thiserror-1.0.47/src/display.rs +30 -0
- data/ext/cargo-vendor/thiserror-1.0.47/src/lib.rs +258 -0
- data/ext/cargo-vendor/thiserror-1.0.47/src/provide.rs +20 -0
- data/ext/cargo-vendor/thiserror-1.0.47/tests/test_backtrace.rs +274 -0
- data/ext/cargo-vendor/thiserror-1.0.47/tests/test_option.rs +105 -0
- data/ext/cargo-vendor/thiserror-impl-1.0.47/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/thiserror-impl-1.0.47/Cargo.toml +36 -0
- data/ext/cargo-vendor/thiserror-impl-1.0.47/src/expand.rs +545 -0
- data/ext/cargo-vendor/tokio-1.32.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/tokio-1.32.0/CHANGELOG.md +2987 -0
- data/ext/cargo-vendor/tokio-1.32.0/Cargo.toml +227 -0
- data/ext/cargo-vendor/tokio-1.32.0/README.md +249 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/io/async_fd.rs +1243 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/io/interest.rs +310 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/io/ready.rs +322 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/io/split.rs +201 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/io/util/async_read_ext.rs +1298 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/process/mod.rs +1674 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/builder.rs +1336 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/io/scheduled_io.rs +600 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/batch.rs +163 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/mock.rs +55 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/runtime.rs +924 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/worker.rs +84 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/current_thread/mod.rs +764 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread/stats.rs +140 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/handle.rs +75 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/idle.rs +423 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/stats.rs +171 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/worker.rs +1595 -0
- data/ext/cargo-vendor/tokio-1.32.0/src/sync/broadcast.rs +1514 -0
- data/ext/cargo-vendor/tokio-1.32.0/tests/io_async_fd.rs +812 -0
- data/ext/cargo-vendor/tokio-1.32.0/tests/io_split.rs +116 -0
- data/ext/cargo-vendor/tokio-1.32.0/tests/rt_metrics.rs +731 -0
- data/ext/cargo-vendor/unicase-2.7.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/unicase-2.7.0/Cargo.toml +40 -0
- data/ext/cargo-vendor/unicase-2.7.0/LICENSE-APACHE +201 -0
- data/ext/cargo-vendor/unicase-2.7.0/README.md +32 -0
- data/ext/cargo-vendor/unicase-2.7.0/src/ascii.rs +186 -0
- data/ext/cargo-vendor/unicase-2.7.0/src/lib.rs +457 -0
- data/ext/cargo-vendor/unicase-2.7.0/src/unicode/map.rs +1965 -0
- data/ext/cargo-vendor/unicase-2.7.0/src/unicode/mod.rs +200 -0
- data/ext/cargo-vendor/wasi-cap-std-sync-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-cap-std-sync-11.0.0/Cargo.toml +90 -0
- data/ext/cargo-vendor/wasi-common-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasi-common-11.0.0/Cargo.toml +87 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/Cargo.toml +183 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/component.rs +397 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/host.rs +472 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/options.rs +270 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func/typed.rs +2298 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/func.rs +701 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/instance.rs +727 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/mod.rs +313 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/storage.rs +43 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/types.rs +514 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/component/values.rs +1319 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/config.rs +2058 -0
- data/ext/cargo-vendor/wasmtime-11.0.0/src/engine.rs +756 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-asm-macros-11.0.0/Cargo.toml +22 -0
- data/ext/cargo-vendor/wasmtime-cache-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cache-11.0.0/Cargo.toml +73 -0
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/Cargo.toml +58 -0
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/src/bindgen.rs +348 -0
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/src/component.rs +1354 -0
- data/ext/cargo-vendor/wasmtime-component-macro-11.0.0/tests/codegen.rs +26 -0
- data/ext/cargo-vendor/wasmtime-component-util-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-component-util-11.0.0/Cargo.toml +25 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/Cargo.toml +90 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/compiler/component.rs +593 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/compiler.rs +1297 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/func_environ.rs +2218 -0
- data/ext/cargo-vendor/wasmtime-cranelift-11.0.0/src/lib.rs +160 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/Cargo.toml +57 -0
- data/ext/cargo-vendor/wasmtime-cranelift-shared-11.0.0/src/obj.rs +565 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/Cargo.lock +681 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/Cargo.toml +116 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/examples/factc.rs +209 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/info.rs +530 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/translate/inline.rs +1069 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/translate.rs +843 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/component/types.rs +1827 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/fact/signature.rs +118 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/fact/trampoline.rs +3173 -0
- data/ext/cargo-vendor/wasmtime-environ-11.0.0/src/obj.rs +172 -0
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-fiber-11.0.0/Cargo.toml +46 -0
- data/ext/cargo-vendor/wasmtime-jit-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-11.0.0/Cargo.toml +104 -0
- data/ext/cargo-vendor/wasmtime-jit-11.0.0/src/code_memory.rs +313 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-debug-11.0.0/Cargo.toml +55 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-11.0.0/Cargo.toml +37 -0
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/Cargo.toml +110 -0
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/component.rs +727 -0
- data/ext/cargo-vendor/wasmtime-runtime-11.0.0/src/libcalls.rs +626 -0
- data/ext/cargo-vendor/wasmtime-types-11.0.1/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-types-11.0.1/Cargo.toml +34 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/Cargo.toml +153 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/clocks/host.rs +73 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/clocks.rs +12 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/ctx.rs +238 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/mod.rs +44 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/pipe.rs +233 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/clocks.rs +80 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/preview2/poll.rs +83 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched/subscription.rs +104 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched/sync.rs +156 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/src/preview2/sched.rs +110 -0
- data/ext/cargo-vendor/wasmtime-wasi-11.0.0/wit/deps/poll/poll.wit +39 -0
- data/ext/cargo-vendor/wasmtime-winch-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-winch-11.0.0/Cargo.toml +63 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/Cargo.toml +29 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/lib.rs +1648 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/rust.rs +491 -0
- data/ext/cargo-vendor/wasmtime-wit-bindgen-11.0.0/src/types.rs +183 -0
- data/ext/cargo-vendor/wast-63.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wast-63.0.0/Cargo.toml +50 -0
- data/ext/cargo-vendor/wast-63.0.0/src/core/binary.rs +1246 -0
- data/ext/cargo-vendor/wast-63.0.0/src/core/custom.rs +390 -0
- data/ext/cargo-vendor/wast-63.0.0/src/core/func.rs +136 -0
- data/ext/cargo-vendor/wast-63.0.0/src/core/module.rs +217 -0
- data/ext/cargo-vendor/wast-63.0.0/src/encode.rs +89 -0
- data/ext/cargo-vendor/wast-63.0.0/src/lib.rs +537 -0
- data/ext/cargo-vendor/wat-1.0.70/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wat-1.0.70/Cargo.toml +27 -0
- data/ext/cargo-vendor/wiggle-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-11.0.0/Cargo.toml +106 -0
- data/ext/cargo-vendor/wiggle-generate-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-generate-11.0.0/Cargo.toml +58 -0
- data/ext/cargo-vendor/wiggle-macro-11.0.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/wiggle-macro-11.0.0/Cargo.toml +55 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/Cargo.toml +62 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/abi/mod.rs +251 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/call.rs +199 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/context.rs +328 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/control.rs +437 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/env.rs +64 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/codegen/mod.rs +319 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/aarch64/abi.rs +250 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/aarch64/asm.rs +312 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/aarch64/masm.rs +293 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/mod.rs +215 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/x64/abi.rs +375 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/x64/asm.rs +855 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/x64/masm.rs +516 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/isa/x64/regs.rs +192 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/masm.rs +352 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/stack.rs +235 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/trampoline.rs +494 -0
- data/ext/cargo-vendor/winch-codegen-0.9.0/src/visitor.rs +630 -0
- data/ext/cargo-vendor/windows-targets-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows-targets-0.48.5/Cargo.toml +41 -0
- data/ext/cargo-vendor/windows-targets-0.48.5/readme.md +88 -0
- data/ext/cargo-vendor/windows-targets-0.48.5/src/lib.rs +55 -0
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.5/lib/libwindows.0.48.5.a +0 -0
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.5/lib/windows.0.48.5.lib +0 -0
- data/ext/cargo-vendor/windows_i686_gnu-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_i686_gnu-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_i686_gnu-0.48.5/lib/libwindows.0.48.5.a +0 -0
- data/ext/cargo-vendor/windows_i686_msvc-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_i686_msvc-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_i686_msvc-0.48.5/lib/windows.0.48.5.lib +0 -0
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.5/lib/libwindows.0.48.5.a +0 -0
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.5/lib/libwindows.0.48.5.a +0 -0
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.5/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.5/Cargo.toml +23 -0
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.5/lib/windows.0.48.5.lib +0 -0
- data/lib/wasmtime/version.rb +1 -1
- metadata +2291 -2262
- data/ext/cargo-vendor/addr2line-0.20.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/addr2line-0.20.0/CHANGELOG.md +0 -321
- data/ext/cargo-vendor/addr2line-0.20.0/Cargo.lock +0 -548
- data/ext/cargo-vendor/addr2line-0.20.0/Cargo.toml +0 -145
- data/ext/cargo-vendor/addr2line-0.20.0/examples/addr2line.rs +0 -306
- data/ext/cargo-vendor/addr2line-0.20.0/src/lib.rs +0 -1729
- data/ext/cargo-vendor/aho-corasick-1.0.3/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/aho-corasick-1.0.3/Cargo.toml +0 -70
- data/ext/cargo-vendor/aho-corasick-1.0.3/src/ahocorasick.rs +0 -2788
- data/ext/cargo-vendor/aho-corasick-1.0.3/src/dfa.rs +0 -804
- data/ext/cargo-vendor/aho-corasick-1.0.3/src/lib.rs +0 -326
- data/ext/cargo-vendor/aho-corasick-1.0.3/src/nfa/contiguous.rs +0 -1133
- data/ext/cargo-vendor/aho-corasick-1.0.3/src/nfa/noncontiguous.rs +0 -1328
- data/ext/cargo-vendor/anyhow-1.0.72/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/anyhow-1.0.72/Cargo.toml +0 -67
- data/ext/cargo-vendor/anyhow-1.0.72/build.rs +0 -131
- data/ext/cargo-vendor/anyhow-1.0.72/src/backtrace.rs +0 -401
- data/ext/cargo-vendor/anyhow-1.0.72/src/context.rs +0 -193
- data/ext/cargo-vendor/anyhow-1.0.72/src/error.rs +0 -992
- data/ext/cargo-vendor/anyhow-1.0.72/src/kind.rs +0 -116
- data/ext/cargo-vendor/anyhow-1.0.72/src/lib.rs +0 -683
- data/ext/cargo-vendor/anyhow-1.0.72/src/wrapper.rs +0 -81
- data/ext/cargo-vendor/anyhow-1.0.72/tests/test_ensure.rs +0 -721
- data/ext/cargo-vendor/async-trait-0.1.72/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/async-trait-0.1.72/Cargo.toml +0 -63
- data/ext/cargo-vendor/async-trait-0.1.72/src/expand.rs +0 -484
- data/ext/cargo-vendor/async-trait-0.1.72/src/lib.rs +0 -343
- data/ext/cargo-vendor/async-trait-0.1.72/tests/test.rs +0 -1606
- data/ext/cargo-vendor/async-trait-0.1.72/tests/ui/consider-restricting.stderr +0 -33
- data/ext/cargo-vendor/async-trait-0.1.72/tests/ui/send-not-implemented.stderr +0 -47
- data/ext/cargo-vendor/backtrace-0.3.68/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/backtrace-0.3.68/Cargo.lock +0 -192
- data/ext/cargo-vendor/backtrace-0.3.68/Cargo.toml +0 -144
- data/ext/cargo-vendor/backtrace-0.3.68/build.rs +0 -41
- data/ext/cargo-vendor/backtrace-0.3.68/ci/android-ndk.sh +0 -14
- data/ext/cargo-vendor/backtrace-0.3.68/ci/android-sdk.sh +0 -65
- data/ext/cargo-vendor/backtrace-0.3.68/ci/debuglink-docker.sh +0 -29
- data/ext/cargo-vendor/backtrace-0.3.68/ci/debuglink.sh +0 -75
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/aarch64-linux-android/Dockerfile +0 -18
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/aarch64-unknown-linux-gnu/Dockerfile +0 -11
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/arm-linux-androideabi/Dockerfile +0 -18
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/arm-unknown-linux-gnueabihf/Dockerfile +0 -10
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/armv7-linux-androideabi/Dockerfile +0 -18
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/armv7-unknown-linux-gnueabihf/Dockerfile +0 -10
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/i586-unknown-linux-gnu/Dockerfile +0 -5
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/i686-linux-android/Dockerfile +0 -18
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/i686-unknown-linux-gnu/Dockerfile +0 -5
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/powerpc64-unknown-linux-gnu/Dockerfile +0 -16
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/s390x-unknown-linux-gnu/Dockerfile +0 -17
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-linux-android/Dockerfile +0 -18
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-pc-windows-gnu/Dockerfile +0 -10
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-unknown-linux-gnu/Dockerfile +0 -6
- data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-unknown-linux-musl/Dockerfile +0 -6
- data/ext/cargo-vendor/backtrace-0.3.68/ci/run-docker.sh +0 -33
- data/ext/cargo-vendor/backtrace-0.3.68/ci/run.sh +0 -6
- data/ext/cargo-vendor/backtrace-0.3.68/ci/runtest-android.rs +0 -50
- data/ext/cargo-vendor/backtrace-0.3.68/src/print/fuchsia.rs +0 -436
- data/ext/cargo-vendor/backtrace-0.3.68/src/print.rs +0 -319
- data/ext/cargo-vendor/backtrace-0.3.68/src/symbolize/gimli/parse_running_mmaps_unix.rs +0 -232
- data/ext/cargo-vendor/backtrace-0.3.68/src/symbolize/mod.rs +0 -485
- data/ext/cargo-vendor/backtrace-0.3.68/src/windows.rs +0 -693
- data/ext/cargo-vendor/cc-1.0.82/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cc-1.0.82/Cargo.lock +0 -111
- data/ext/cargo-vendor/cc-1.0.82/Cargo.toml +0 -42
- data/ext/cargo-vendor/cc-1.0.82/src/lib.rs +0 -3983
- data/ext/cargo-vendor/cc-1.0.82/tests/test.rs +0 -461
- data/ext/cargo-vendor/cranelift-bforest-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-bforest-0.97.1/Cargo.toml +0 -31
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/Cargo.toml +0 -158
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/build.rs +0 -390
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/ir/libcall.rs +0 -221
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/abi.rs +0 -1294
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/emit.rs +0 -3684
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/emit_tests.rs +0 -7895
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/mod.rs +0 -2966
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/lower/isle.rs +0 -816
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/lower.isle +0 -2906
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/mod.rs +0 -238
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/call_conv.rs +0 -136
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/mod.rs +0 -424
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/abi.rs +0 -825
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/emit.rs +0 -3008
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/encode.rs +0 -262
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/mod.rs +0 -1963
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/vector.rs +0 -669
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst.isle +0 -2915
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst_vector.isle +0 -760
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/lower/isle.rs +0 -553
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/lower.isle +0 -1409
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/mod.rs +0 -216
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/abi.rs +0 -957
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/inst.isle +0 -5046
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/lower/isle.rs +0 -1018
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/lower.isle +0 -3991
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/mod.rs +0 -213
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/abi.rs +0 -985
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/encoding/rex.rs +0 -588
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/args.rs +0 -2193
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/emit.rs +0 -4090
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/emit_tests.rs +0 -5674
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/mod.rs +0 -2667
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst.isle +0 -5104
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower/isle.rs +0 -1148
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower.isle +0 -4481
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower.rs +0 -328
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/mod.rs +0 -251
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isle_prelude.rs +0 -862
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/lib.rs +0 -140
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/abi.rs +0 -2455
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/buffer.rs +0 -2277
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/isle.rs +0 -827
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/mod.rs +0 -549
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/reg.rs +0 -537
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/vcode.rs +0 -1580
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/opts/extends.isle +0 -34
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/prelude.isle +0 -578
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/prelude_lower.isle +0 -1012
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/settings.rs +0 -600
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/timing.rs +0 -271
- data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/unionfind.rs +0 -74
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/Cargo.toml +0 -23
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/cdsl/settings.rs +0 -440
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/isa/x86.rs +0 -444
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/shared/instructions.rs +0 -3867
- data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/shared/settings.rs +0 -348
- data/ext/cargo-vendor/cranelift-codegen-shared-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-codegen-shared-0.97.1/Cargo.toml +0 -22
- data/ext/cargo-vendor/cranelift-control-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-control-0.97.1/Cargo.toml +0 -30
- data/ext/cargo-vendor/cranelift-entity-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-entity-0.97.1/Cargo.toml +0 -35
- data/ext/cargo-vendor/cranelift-frontend-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-frontend-0.97.1/Cargo.toml +0 -53
- data/ext/cargo-vendor/cranelift-isle-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-isle-0.97.1/Cargo.toml +0 -37
- data/ext/cargo-vendor/cranelift-native-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-native-0.97.1/Cargo.toml +0 -38
- data/ext/cargo-vendor/cranelift-native-0.97.1/src/lib.rs +0 -215
- data/ext/cargo-vendor/cranelift-wasm-0.97.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/cranelift-wasm-0.97.1/Cargo.toml +0 -85
- data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/code_translator.rs +0 -3538
- data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/environ/spec.rs +0 -834
- data/ext/cargo-vendor/log-0.4.19/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/log-0.4.19/CHANGELOG.md +0 -267
- data/ext/cargo-vendor/log-0.4.19/Cargo.toml +0 -117
- data/ext/cargo-vendor/log-0.4.19/README.md +0 -120
- data/ext/cargo-vendor/log-0.4.19/src/lib.rs +0 -1882
- data/ext/cargo-vendor/log-0.4.19/src/macros.rs +0 -280
- data/ext/cargo-vendor/object-0.31.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/object-0.31.1/CHANGELOG.md +0 -621
- data/ext/cargo-vendor/object-0.31.1/Cargo.toml +0 -161
- data/ext/cargo-vendor/object-0.31.1/README.md +0 -58
- data/ext/cargo-vendor/object-0.31.1/clippy.toml +0 -1
- data/ext/cargo-vendor/object-0.31.1/src/common.rs +0 -499
- data/ext/cargo-vendor/object-0.31.1/src/elf.rs +0 -6146
- data/ext/cargo-vendor/object-0.31.1/src/pe.rs +0 -3050
- data/ext/cargo-vendor/object-0.31.1/src/read/any.rs +0 -1323
- data/ext/cargo-vendor/object-0.31.1/src/read/coff/mod.rs +0 -18
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/file.rs +0 -910
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/note.rs +0 -263
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/relocation.rs +0 -571
- data/ext/cargo-vendor/object-0.31.1/src/read/elf/symbol.rs +0 -577
- data/ext/cargo-vendor/object-0.31.1/src/read/mod.rs +0 -760
- data/ext/cargo-vendor/object-0.31.1/src/write/elf/object.rs +0 -891
- data/ext/cargo-vendor/object-0.31.1/src/write/macho.rs +0 -978
- data/ext/cargo-vendor/object-0.31.1/tests/round_trip/macho.rs +0 -24
- data/ext/cargo-vendor/object-0.31.1/tests/round_trip/mod.rs +0 -636
- data/ext/cargo-vendor/quote-1.0.32/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/quote-1.0.32/Cargo.toml +0 -50
- data/ext/cargo-vendor/quote-1.0.32/src/lib.rs +0 -1444
- data/ext/cargo-vendor/quote-1.0.32/src/runtime.rs +0 -496
- data/ext/cargo-vendor/serde-1.0.183/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/serde-1.0.183/Cargo.toml +0 -66
- data/ext/cargo-vendor/serde-1.0.183/src/lib.rs +0 -327
- data/ext/cargo-vendor/serde-1.0.183/src/private/ser.rs +0 -1372
- data/ext/cargo-vendor/serde_derive-1.0.183/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/serde_derive-1.0.183/Cargo.toml +0 -62
- data/ext/cargo-vendor/serde_derive-1.0.183/serde_derive-x86_64-unknown-linux-gnu +0 -0
- data/ext/cargo-vendor/serde_derive-1.0.183/src/buffer.rs +0 -69
- data/ext/cargo-vendor/serde_derive-1.0.183/src/bytecode.rs +0 -17
- data/ext/cargo-vendor/serde_derive-1.0.183/src/de.rs +0 -3143
- data/ext/cargo-vendor/serde_derive-1.0.183/src/internals/attr.rs +0 -1869
- data/ext/cargo-vendor/serde_derive-1.0.183/src/internals/symbol.rs +0 -70
- data/ext/cargo-vendor/serde_derive-1.0.183/src/lib.rs +0 -22
- data/ext/cargo-vendor/serde_derive-1.0.183/src/lib_from_source.rs +0 -35
- data/ext/cargo-vendor/serde_derive-1.0.183/src/lib_precompiled.rs +0 -234
- data/ext/cargo-vendor/serde_derive-1.0.183/src/ser.rs +0 -1353
- data/ext/cargo-vendor/serde_json-1.0.104/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/serde_json-1.0.104/Cargo.toml +0 -109
- data/ext/cargo-vendor/serde_json-1.0.104/src/de.rs +0 -2643
- data/ext/cargo-vendor/serde_json-1.0.104/src/lib.rs +0 -418
- data/ext/cargo-vendor/serde_json-1.0.104/src/ser.rs +0 -2234
- data/ext/cargo-vendor/serde_json-1.0.104/src/value/de.rs +0 -1403
- data/ext/cargo-vendor/serde_json-1.0.104/src/value/ser.rs +0 -1053
- data/ext/cargo-vendor/serde_json-1.0.104/tests/test.rs +0 -2502
- data/ext/cargo-vendor/syn-2.0.28/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/syn-2.0.28/Cargo.toml +0 -150
- data/ext/cargo-vendor/syn-2.0.28/src/custom_keyword.rs +0 -259
- data/ext/cargo-vendor/syn-2.0.28/src/custom_punctuation.rs +0 -302
- data/ext/cargo-vendor/syn-2.0.28/src/export.rs +0 -47
- data/ext/cargo-vendor/syn-2.0.28/src/group.rs +0 -283
- data/ext/cargo-vendor/syn-2.0.28/src/lib.rs +0 -970
- data/ext/cargo-vendor/syn-2.0.28/src/parse_quote.rs +0 -178
- data/ext/cargo-vendor/syn-2.0.28/src/span.rs +0 -62
- data/ext/cargo-vendor/syn-2.0.28/src/token.rs +0 -1068
- data/ext/cargo-vendor/syn-2.0.28/tests/common/eq.rs +0 -866
- data/ext/cargo-vendor/thiserror-1.0.44/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/thiserror-1.0.44/Cargo.toml +0 -48
- data/ext/cargo-vendor/thiserror-1.0.44/build.rs +0 -66
- data/ext/cargo-vendor/thiserror-1.0.44/src/aserror.rs +0 -48
- data/ext/cargo-vendor/thiserror-1.0.44/src/display.rs +0 -28
- data/ext/cargo-vendor/thiserror-1.0.44/src/lib.rs +0 -255
- data/ext/cargo-vendor/thiserror-1.0.44/src/provide.rs +0 -15
- data/ext/cargo-vendor/thiserror-1.0.44/tests/test_backtrace.rs +0 -297
- data/ext/cargo-vendor/thiserror-1.0.44/tests/test_option.rs +0 -108
- data/ext/cargo-vendor/thiserror-impl-1.0.44/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/thiserror-impl-1.0.44/Cargo.toml +0 -36
- data/ext/cargo-vendor/thiserror-impl-1.0.44/src/expand.rs +0 -545
- data/ext/cargo-vendor/tokio-1.30.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/tokio-1.30.0/CHANGELOG.md +0 -2952
- data/ext/cargo-vendor/tokio-1.30.0/Cargo.toml +0 -227
- data/ext/cargo-vendor/tokio-1.30.0/README.md +0 -244
- data/ext/cargo-vendor/tokio-1.30.0/src/io/async_fd.rs +0 -1252
- data/ext/cargo-vendor/tokio-1.30.0/src/io/interest.rs +0 -158
- data/ext/cargo-vendor/tokio-1.30.0/src/io/ready.rs +0 -293
- data/ext/cargo-vendor/tokio-1.30.0/src/io/split.rs +0 -184
- data/ext/cargo-vendor/tokio-1.30.0/src/io/util/async_read_ext.rs +0 -1295
- data/ext/cargo-vendor/tokio-1.30.0/src/process/mod.rs +0 -1680
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/builder.rs +0 -1323
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/io/scheduled_io.rs +0 -513
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/batch.rs +0 -162
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/mock.rs +0 -55
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/runtime.rs +0 -883
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/worker.rs +0 -80
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/current_thread/mod.rs +0 -764
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread/stats.rs +0 -140
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/handle.rs +0 -75
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/idle.rs +0 -425
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/stats.rs +0 -171
- data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/worker.rs +0 -1567
- data/ext/cargo-vendor/tokio-1.30.0/src/sync/broadcast.rs +0 -1440
- data/ext/cargo-vendor/tokio-1.30.0/tests/io_async_fd.rs +0 -687
- data/ext/cargo-vendor/tokio-1.30.0/tests/io_split.rs +0 -79
- data/ext/cargo-vendor/tokio-1.30.0/tests/rt_metrics.rs +0 -718
- data/ext/cargo-vendor/unicase-2.6.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/unicase-2.6.0/Cargo.toml +0 -30
- data/ext/cargo-vendor/unicase-2.6.0/README.md +0 -31
- data/ext/cargo-vendor/unicase-2.6.0/src/ascii.rs +0 -187
- data/ext/cargo-vendor/unicase-2.6.0/src/lib.rs +0 -465
- data/ext/cargo-vendor/unicase-2.6.0/src/unicode/map.rs +0 -1995
- data/ext/cargo-vendor/unicase-2.6.0/src/unicode/mod.rs +0 -201
- data/ext/cargo-vendor/wasi-cap-std-sync-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-cap-std-sync-10.0.1/Cargo.toml +0 -90
- data/ext/cargo-vendor/wasi-common-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasi-common-10.0.1/Cargo.toml +0 -87
- data/ext/cargo-vendor/wasmtime-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-10.0.1/Cargo.toml +0 -183
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/component.rs +0 -382
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func/host.rs +0 -423
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func/options.rs +0 -237
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func/typed.rs +0 -2059
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func.rs +0 -684
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/instance.rs +0 -727
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/mod.rs +0 -313
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/storage.rs +0 -43
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/types.rs +0 -545
- data/ext/cargo-vendor/wasmtime-10.0.1/src/component/values.rs +0 -1219
- data/ext/cargo-vendor/wasmtime-10.0.1/src/config.rs +0 -2066
- data/ext/cargo-vendor/wasmtime-10.0.1/src/engine.rs +0 -757
- data/ext/cargo-vendor/wasmtime-asm-macros-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-asm-macros-10.0.1/Cargo.toml +0 -22
- data/ext/cargo-vendor/wasmtime-cache-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cache-10.0.1/Cargo.toml +0 -73
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/Cargo.toml +0 -58
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/src/bindgen.rs +0 -316
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/src/component.rs +0 -1199
- data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/tests/codegen.rs +0 -24
- data/ext/cargo-vendor/wasmtime-component-util-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-component-util-10.0.1/Cargo.toml +0 -25
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/Cargo.toml +0 -90
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/compiler/component.rs +0 -578
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/compiler.rs +0 -1200
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/func_environ.rs +0 -2206
- data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/lib.rs +0 -178
- data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.1/Cargo.toml +0 -57
- data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.1/src/obj.rs +0 -564
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/Cargo.lock +0 -681
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/Cargo.toml +0 -116
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/examples/factc.rs +0 -212
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/info.rs +0 -514
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/translate/inline.rs +0 -1067
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/translate.rs +0 -1070
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/types.rs +0 -1916
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/fact/signature.rs +0 -118
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/fact/trampoline.rs +0 -3157
- data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/obj.rs +0 -171
- data/ext/cargo-vendor/wasmtime-fiber-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-fiber-10.0.1/Cargo.toml +0 -46
- data/ext/cargo-vendor/wasmtime-jit-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-10.0.1/Cargo.toml +0 -104
- data/ext/cargo-vendor/wasmtime-jit-10.0.1/src/code_memory.rs +0 -309
- data/ext/cargo-vendor/wasmtime-jit-debug-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-debug-10.0.1/Cargo.toml +0 -55
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-jit-icache-coherence-10.0.1/Cargo.toml +0 -37
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/Cargo.toml +0 -110
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/component.rs +0 -701
- data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/libcalls.rs +0 -578
- data/ext/cargo-vendor/wasmtime-types-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-types-10.0.1/Cargo.toml +0 -34
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/Cargo.toml +0 -153
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/clocks/host.rs +0 -73
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/clocks.rs +0 -17
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/ctx.rs +0 -206
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/mod.rs +0 -44
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/pipe.rs +0 -233
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/clocks.rs +0 -80
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/poll.rs +0 -84
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/sched/subscription.rs +0 -104
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/sched/sync.rs +0 -156
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/sched.rs +0 -105
- data/ext/cargo-vendor/wasmtime-wasi-10.0.1/wit/deps/poll/poll.wit +0 -41
- data/ext/cargo-vendor/wasmtime-winch-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-winch-10.0.1/Cargo.toml +0 -63
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/Cargo.toml +0 -29
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/src/lib.rs +0 -1631
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/src/rust.rs +0 -473
- data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/src/types.rs +0 -179
- data/ext/cargo-vendor/wast-62.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wast-62.0.1/Cargo.toml +0 -50
- data/ext/cargo-vendor/wast-62.0.1/src/core/binary.rs +0 -1213
- data/ext/cargo-vendor/wast-62.0.1/src/core/custom.rs +0 -236
- data/ext/cargo-vendor/wast-62.0.1/src/core/func.rs +0 -121
- data/ext/cargo-vendor/wast-62.0.1/src/core/module.rs +0 -213
- data/ext/cargo-vendor/wast-62.0.1/src/encode.rs +0 -81
- data/ext/cargo-vendor/wast-62.0.1/src/lib.rs +0 -532
- data/ext/cargo-vendor/wat-1.0.69/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wat-1.0.69/Cargo.toml +0 -27
- data/ext/cargo-vendor/wiggle-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-10.0.1/Cargo.toml +0 -106
- data/ext/cargo-vendor/wiggle-generate-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-generate-10.0.1/Cargo.toml +0 -58
- data/ext/cargo-vendor/wiggle-macro-10.0.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/wiggle-macro-10.0.1/Cargo.toml +0 -55
- data/ext/cargo-vendor/winch-codegen-0.8.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winch-codegen-0.8.1/Cargo.toml +0 -62
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/abi/mod.rs +0 -237
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/call.rs +0 -225
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/context.rs +0 -270
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/env.rs +0 -52
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/mod.rs +0 -214
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/aarch64/abi.rs +0 -243
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/aarch64/asm.rs +0 -300
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/aarch64/masm.rs +0 -230
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/mod.rs +0 -215
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/abi.rs +0 -369
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/asm.rs +0 -576
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/masm.rs +0 -288
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/regs.rs +0 -192
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/masm.rs +0 -255
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/stack.rs +0 -235
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/trampoline.rs +0 -494
- data/ext/cargo-vendor/winch-codegen-0.8.1/src/visitor.rs +0 -353
- data/ext/cargo-vendor/windows-targets-0.48.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows-targets-0.48.1/Cargo.toml +0 -41
- data/ext/cargo-vendor/windows-targets-0.48.1/readme.md +0 -88
- data/ext/cargo-vendor/windows-targets-0.48.1/src/lib.rs +0 -55
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.0/lib/libwindows.0.48.0.a +0 -0
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_aarch64_msvc-0.48.0/lib/windows.0.48.0.lib +0 -0
- data/ext/cargo-vendor/windows_i686_gnu-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_i686_gnu-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_i686_gnu-0.48.0/lib/libwindows.0.48.0.a +0 -0
- data/ext/cargo-vendor/windows_i686_msvc-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_i686_msvc-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_i686_msvc-0.48.0/lib/windows.0.48.0.lib +0 -0
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_x86_64_gnu-0.48.0/lib/libwindows.0.48.0.a +0 -0
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.0/lib/libwindows.0.48.0.a +0 -0
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.0/Cargo.toml +0 -23
- data/ext/cargo-vendor/windows_x86_64_msvc-0.48.0/lib/windows.0.48.0.lib +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/README.md +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/bench.plot.r +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/benchmark.sh +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/coverage.sh +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/rustfmt.toml +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/src/builtin_split_dwarf_loader.rs +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/src/function.rs +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/src/lazy.rs +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/tests/correctness.rs +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/tests/output_equivalence.rs +0 -0
- /data/ext/cargo-vendor/{addr2line-0.20.0 → addr2line-0.21.0}/tests/parse.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/COPYING +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/DESIGN.md +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/README.md +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/UNLICENSE +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/rustfmt.toml +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/automaton.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/nfa/mod.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/api.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/mod.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/pattern.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/rabinkarp.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/README.md +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/compile.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/mod.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/runtime.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/tests.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/vector.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/transducer.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/alphabet.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/buffer.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/byte_frequencies.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/debug.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/error.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/int.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/mod.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/prefilter.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/primitives.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/remapper.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/search.rs +0 -0
- /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/special.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/README.md +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/rust-toolchain.toml +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/chain.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/ensure.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/fmt.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/ptr.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/drop/mod.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_autotrait.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_backtrace.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_boxed.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_chain.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_context.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_convert.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_downcast.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_ffi.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_fmt.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_macros.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_repr.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_source.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/chained-comparison.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/chained-comparison.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/empty-ensure.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/empty-ensure.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/must-use.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/must-use.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/no-impl.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/no-impl.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/temporary-value.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/temporary-value.stderr +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/wrong-interpolation.rs +0 -0
- /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/wrong-interpolation.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/README.md +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/build.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/args.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/bound.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/lifetime.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/receiver.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/verbatim.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/executor/mod.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/arg-implementation-detail.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/arg-implementation-detail.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/bare-trait-object.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/bare-trait-object.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/consider-restricting.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/delimiter-span.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/delimiter-span.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-defined-here.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-defined-here.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-span.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-span.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-impl.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-impl.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-trait.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-trait.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-body.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-body.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/must-use.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/must-use.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/self-span.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/self-span.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/send-not-implemented.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unreachable.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unreachable.stderr +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unsupported-self.rs +0 -0
- /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unsupported-self.stderr +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/README.md +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/benches/benchmarks.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/examples/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/examples/raw.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/android-api.c +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/dbghelp.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/libunwind.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/miri.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/mod.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/noop.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/capture.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/dbghelp.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/dbghelp.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/coff.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/elf.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_dl_iterate_phdr.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_haiku.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_illumos.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_libnx.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_macos.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_windows.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/macho.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/mmap_fake.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/mmap_unix.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/mmap_windows.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/stash.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/miri.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/noop.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/accuracy/auxiliary.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/accuracy/main.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/concurrent-panics.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/current-exe-mismatch.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/long_fn_name.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/skip_inner_frames.rs +0 -0
- /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/smoke.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/README.md +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/bin/gcc-shim.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/com.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/os_pipe/unix.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/os_pipe/windows.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/os_pipe.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/registry.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/setup_config.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/vs_instances.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/winapi.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/windows_registry.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/windows_sys.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/cc_env.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/cflags.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/cxxflags.rs +0 -0
- /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/support/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/node.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/pool.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.98.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/benches/x64-evex-encoding.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/alias_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/binemit/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/binemit/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/bitset.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/cfg_printer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/context.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ctxhash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/cursor.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/data_value.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/dbg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/dce.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/dominator_tree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/egraph/cost.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/egraph/domtree.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/egraph/elaborate.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/egraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/flowgraph.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/fx.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/incremental_cache.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/inst_predicates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/atomic_rmw_op.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/builder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/condcodes.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/constant.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/dfg.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/dynamic_type.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/extfunc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/extname.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/function.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/jumptable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/known_symbol.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/layout.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/memflags.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/progpoint.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/sourceloc.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/stackslot.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/trapcode.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/ir/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/inst_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/aarch64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/riscv64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/args.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/emit.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/emit_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/imms.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/s390x/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/encoding/evex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/encoding/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/encoding/vex.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/inst/regs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/inst/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/inst/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/inst/unwind.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/lower/isle/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/isa/x64/settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/iterators.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/legalizer/globalvalue.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/legalizer/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/legalizer/table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/loop_analysis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/blockorder.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/helpers.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/inst_common.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/lower.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/machinst/valueregs.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/nan_canonicalization.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/arithmetic.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/bitops.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/cprop.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/generated_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/icmp.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/remat.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/selects.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts/shifts.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/opts.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/prelude_opt.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/print_errors.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/remove_constant_phis.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/result.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/scoped_hash_map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/souper_harvest.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/unreachable_code.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/value_label.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/verifier/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.98.1}/src/write.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/instructions.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/isa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/operands.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/cdsl/typevar.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/gen_inst.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/gen_settings.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/gen_types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/isa/arm64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/isa/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/isa/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/isa/s390x.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/entities.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/formats.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/immediates.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/shared/types.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/srcgen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.98.1}/src/unique_table.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/src/constant_hash.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/src/constants.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/src/chaos.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.98.1}/src/zero_sized.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/boxed_slice.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/keys.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/list.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/packed_option.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/primary.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/set.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.98.1}/src/sparse.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/frontend.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/ssa.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/switch.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.98.1}/src/variable.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/build.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/bad_converters.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/error1.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/extra_parens.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/impure_expression.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/impure_rhs.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/multi_internal_etor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/fail/multi_prio.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/borrows.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/borrows_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/iflets.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/iflets_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/multi_constructor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/multi_constructor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/multi_extractor.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/multi_extractor_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/test.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/link/test_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/bound_var.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/construct_and_extract.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/conversions.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/conversions_extern.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/let.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/nodebug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/prio_trie_bug.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/test2.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/test3.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/test4.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/pass/tutorial.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/run/iconst.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/run/iconst_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/run/let_shadowing.isle +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/isle_examples/run/let_shadowing_main.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/codegen.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/compile.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/log.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/overlap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/sema.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/serialize.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/src/trie_again.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.98.1}/tests/run_tests.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.98.1}/src/riscv.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/README.md +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/code_translator/bounds_checks.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/environ/dummy.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/environ/mod.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/func_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/heap.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/module_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/sections_translator.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/state.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/src/translation_utils.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/tests/wasm_testsuite.rs +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/arith.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/br_table.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/call-simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/call.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/embenchen_fannkuch.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/embenchen_fasta.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/embenchen_ifs.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/embenchen_primes.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/fac-multi-value.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/fibonacci.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/globals.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/icall-simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/icall.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-1.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-3.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-4.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-5.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-reachability-translation-6.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-unreachable-else-params-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/if-unreachable-else-params.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/memory.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-1.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-10.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-11.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-12.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-13.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-14.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-15.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-16.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-17.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-2.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-3.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-4.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-5.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-6.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-7.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-8.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/multi-9.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/nullref.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/passive-data.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/pr2303.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/pr2559.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/ref-func-0.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/rust_fannkuch.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/select.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/simd-store.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/simd.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/table-copy.wat +0 -0
- /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.98.1}/wasmtests/unreachable_code.wat +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → gimli-0.28.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → log-0.4.20}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/benches/value.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/error.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/key.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/mod.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/source.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/value.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/serde.rs +0 -0
- /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/triagebot.toml +0 -0
- /data/ext/cargo-vendor/{unicase-2.6.0 → object-0.32.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/archive.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/endian.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/macho.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/pod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/archive.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/comdat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/file.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/section.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/coff/symbol.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/attributes.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/comdat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/compression.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/dynamic.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/hash.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/section.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/segment.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/elf/version.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/dyld_cache.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/fat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/file.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/load_command.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/section.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/segment.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/macho/symbol.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/data_directory.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/export.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/file.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/import.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/resource.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/rich.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/pe/section.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/read_cache.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/read_ref.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/traits.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/util.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/wasm.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/comdat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/file.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/relocation.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/section.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/segment.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/read/xcoff/symbol.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/coff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/elf/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/elf/writer.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/pe.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/string.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/util.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/write/xcoff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/src/xcoff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/integration.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/parse_self.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/read/coff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/read/mod.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/bss.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/coff.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/comdat.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/common.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/elf.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/section_flags.rs +0 -0
- /data/ext/cargo-vendor/{object-0.31.1 → object-0.32.0}/tests/round_trip/tls.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/README.md +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/rust-toolchain.toml +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/ext.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/format.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/ident_fragment.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/spanned.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/to_tokens.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/test.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated-dup.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated-dup.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-separated.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-separated.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-quotable.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-quotable.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-repeatable.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-repeatable.stderr +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/wrong-type-span.rs +0 -0
- /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/wrong-type-span.stderr +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/README.md +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/build.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/crates-io.md +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/format.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/ignored_any.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/impls.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/seed.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/size_hint.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/utf8.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/value.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/integer128.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/private/de.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/private/doc.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/private/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/fmt.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/impls.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/impossible.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/std_error.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/bound.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/dummy.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/fragment.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/ast.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/case.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/check.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/ctxt.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/receiver.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/respan.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/pretend.rs +0 -0
- /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/this.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/README.md +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/build.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/features_check/error.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/features_check/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/io/core.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/bhcomp.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/bignum.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/cached.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/cached_float80.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/digit.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/errors.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/large_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/large_powers32.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/large_powers64.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/shift.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/small_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/map.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/number.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/read.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/from.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/index.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/partial_eq.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/debug.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/map.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue1004.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue520.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue795.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue845.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue953.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/stream.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_comma.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_value.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_value.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/not_found.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/not_found.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_expr.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_expr.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_key.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_key.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_array_element.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_array_element.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_map_entry.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_map_entry.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_comma.stderr +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/README.md +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/benches/file.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/benches/rust.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/attr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/bigint.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/buffer.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/data.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/derive.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/discouraged.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/drops.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/expr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/ext.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/clone.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/debug.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/eq.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/fold.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/hash.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/visit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/visit_mut.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen_helper.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/generics.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/ident.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/item.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/lifetime.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/lit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/lookahead.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/mac.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/meta.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/op.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/parse_macro_input.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/pat.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/path.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/print.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/punctuated.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/restriction.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/sealed.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/spanned.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/stmt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/thread.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/tt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/ty.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/verbatim.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/whitespace.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/common/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/common/parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/debug/gen.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/debug/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/regression/issue1108.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/regression/issue1235.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/regression.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/repo/mod.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/repo/progress.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_asyncness.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_attribute.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_derive_input.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_expr.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_generics.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_grouping.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_ident.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_item.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_iterators.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_lit.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_meta.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_parse_buffer.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_parse_stream.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_pat.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_path.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_precedence.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_receiver.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_round_trip.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_shebang.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_should_parse.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_size.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_stmt.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_token_trees.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_ty.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_visibility.rs +0 -0
- /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/zzz_stable.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/README.md +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/rust-toolchain.toml +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_deprecated.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_display.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_error.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_expr.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_from.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_generics.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_lints.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_path.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_transparent.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/bad-field-attr.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/bad-field-attr.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/concat-display.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/concat-display.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-enum-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-enum-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-fmt.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-fmt.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-struct-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-struct-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-transparent.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-transparent.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-backtrace-backtrace.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-backtrace-backtrace.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-not-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-not-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/lifetime.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/lifetime.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/missing-fmt.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/missing-fmt.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/no-display.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/no-display.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-enum-not-error.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-enum-not-error.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-struct-not-error.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-struct-not-error.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-display.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-display.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-many.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-many.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-many.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-many.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-field-fmt.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-field-fmt.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-struct-source.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-struct-source.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/union.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/union.stderr +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/ast.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/attr.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/fmt.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/generics.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/prop.rs +0 -0
- /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/valid.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/docs/reactor-refactor.md +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/external-types.toml +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/doc/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/doc/os.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/canonicalize.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/create_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/create_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/dir_builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/file/tests.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/hard_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/metadata.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/mocks.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/open_options/mock_open_options.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/open_options.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/remove_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/remove_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/remove_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/rename.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/set_permissions.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink_metadata.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/try_exists.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/block_on.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/maybe_done.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/poll_fn.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/try_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fuzz.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_buf_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_seek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/bsd/poll_aio.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/poll_evented.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/seek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stderr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stdin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stdio_common.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stdout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/async_buf_read_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/async_seek_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/async_write_ext.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/buf_reader.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/buf_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/buf_writer.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/chain.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/copy_bidirectional.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/copy_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/empty.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/fill_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/flush.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/lines.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/mem.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_exact.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_int.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_line.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_to_end.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_until.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/repeat.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/sink.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/take.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/vec_with_initialized.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_all_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_int.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_vectored.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/mocked.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u16.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u32.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_as_mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_native.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_static_const_new.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_static_once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_usize.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/parking_lot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/unsafe_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/addr_of.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/cfg.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/loom.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/pin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/ready.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/select.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/support.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/thread_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/try_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/addr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/lookup_host.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/listener.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/socket.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/split_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/udp.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/datagram/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/datagram/socket.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/listener.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/pipe.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/socketaddr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/split_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/ucred.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/windows/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/windows/named_pipe.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/kill.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/unix/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/unix/orphan.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/unix/reap.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/pool.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/schedule.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/task.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/config.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/current.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/runtime.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/runtime_mt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/scoped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/coop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/driver.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/dump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/driver/signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/driver.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/registration.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/registration_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/histogram.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/io.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/scheduler.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/park.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/process.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/runtime.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/block_in_place.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/defer.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/pop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/rt_multi_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/shared.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/synced.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/lock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/counters.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/handle/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/handle/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/idle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/overflow.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/park.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/trace_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/counters.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/handle/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/handle/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/overflow.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/park.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/trace_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/worker/metrics.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump_mock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/signal/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/abort.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/core.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/harness.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/raw.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/state.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/trace/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/trace/symbol.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/trace/tree.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/inject.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_current_thread/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_current_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_join_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt/shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/queue.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/task.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/task_combinations.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/thread_id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/entry.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/source.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/wheel/level.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/wheel/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/ctrl_c.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/registry.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/reusable_box.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/unix.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/windows/stub.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/windows/sys.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/batch_semaphore.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/block.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/bounded.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/chan.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/unbounded.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/owned_read_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/owned_write_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/owned_write_guard_mapped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/read_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/write_guard.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/write_guard_mapped.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/semaphore.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/task/atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/task/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_atomic_waker.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_broadcast.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_mpsc.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_rwlock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_semaphore_batch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_watch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/semaphore_batch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/watch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/consume_budget.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/join_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/spawn.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/task_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/unconstrained.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/clock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/instant.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/interval.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/sleep.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/timeout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/atomic_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/bit.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/cacheline.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/error.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/idle_notified_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/linked_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/markers.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/memchr.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/mod.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rand/rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rand/rt_unstable.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rand.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rc_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/sync_wrapper.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/trace.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/try_lock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/wake.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/wake_list.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/_require_full.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/async_send_sync.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/buffered.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/dump.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_canonicalize_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_dir.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_link.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_open_options.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_open_options_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_remove_dir_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_remove_file.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_rename.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_symlink_dir_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_symlink_file_windows.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_try_exists.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_async_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_buf_reader.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_buf_writer.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_chain.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_copy.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_copy_bidirectional.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_driver.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_driver_drop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_fill_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_lines.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_mem_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_poll_aio.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_exact.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_line.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_to_end.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_to_string.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_until.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_take.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_util_empty.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_all.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_all_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_buf.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_int.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/join_handle_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_pin.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_rename_test.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_select.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_test.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_try_join.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_bind_resource.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_lookup_host.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_named_pipe.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_unix_pipe.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/no_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_arg0.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_issue_2174.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_issue_42.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_kill_on_drop.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_raw_handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_smoke.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_basic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_common.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_handle.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_handle_block_on.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_threaded.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_threaded_alt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_time_start_paused.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_ctrl_c.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_drop_recv.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_drop_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_drop_signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_multi_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_no_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_notify_both.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_twice.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_usr1.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/io_vec.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/leaked_buffers.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/mpsc_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/signal.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_barrier.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_broadcast.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_errors.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mpsc.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mpsc_weak.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mutex.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mutex_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_notify.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_once_cell.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_oneshot.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_rwlock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_semaphore.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_semaphore_owned.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_watch.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_abort.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_blocking.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_builder.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_id.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_join_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_local.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_local_set.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_yield_now.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_accept.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_connect.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_echo.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_into_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_into_std.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_peek.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_shutdown.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_socket.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/test_clock.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_interval.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_panic.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_pause.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_rt.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_sleep.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_timeout.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/udp.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_cred.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_datagram.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_split.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_stream.rs +0 -0
- /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/unwindsafe.rs +0 -0
- /data/ext/cargo-vendor/{unicase-2.6.0 → unicase-2.7.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{unicase-2.6.0 → unicase-2.7.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/net.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/sched/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/sched/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-11.0.0}/src/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/docs/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/snapshot/docs.html +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/snapshot/docs.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/snapshot/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/proposal-template/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/proposals/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/snapshots/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/WASI/standard/README.md +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/clocks.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/ctx.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/dir.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/pipe.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/random.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/sched/subscription.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/sched.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/snapshots/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/snapshots/preview_0.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/snapshots/preview_1/error.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/snapshots/preview_1.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/string_array.rs +0 -0
- /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-11.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/code.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/component/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/component/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/component/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/engine/serialization.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/externals.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/func/typed.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/limits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/linker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/module/registry.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/ref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/signatures.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/store/context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/store/data.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/store/func_refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/store.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline/func.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline/global.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trampoline.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/trap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/types/matching.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/values.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-11.0.0}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-asm-macros-10.0.1 → wasmtime-asm-macros-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/config/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/worker/tests/system_time_stub.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/worker/tests.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/src/worker.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-11.0.0}/tests/cache_write_default_config.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/char.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/conventions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/direct-import.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/empty.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/flags.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/floats.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/function-new.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/integers.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/many-arguments.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/multi-return.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/records.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/rename.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/share-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-functions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-lists.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/simple-wasi.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/small-anonymous.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke-default.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke-export.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/smoke.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/strings.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/unions.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/use-paths.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/variants.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-11.0.0}/tests/codegen/worlds-with-types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-component-util-10.0.1 → wasmtime-component-util-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/SECURITY.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/gc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/address_transform.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/attr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/expression.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/line_program.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/range_info_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/refs.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/simulate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/unit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/transform/utils.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug/write_debuginfo.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-11.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.1 → wasmtime-cranelift-shared-11.0.0}/src/compiled_function.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.1 → wasmtime-cranelift-shared-11.0.0}/src/isa_builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.1 → wasmtime-cranelift-shared-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/address_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/builtin.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/compilation.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component/dfg.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component/translate/adapt.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component/vmcomponent_offsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/fact/core_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/fact/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/fact/traps.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/fact.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/module.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/module_environ.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/module_types.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/ref_bits.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/scopevec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/stack_map.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/trap_encoding.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/tunables.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-11.0.0}/src/vmoffsets.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/arm.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/x86.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/windows.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-11.0.0}/src/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/debug.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/demangling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/instantiate.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/profiling/jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/profiling/perfmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/profiling/vtune.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/profiling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/unwind/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/unwind/systemv.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/unwind/winx64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-11.0.0}/src/unwind.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-11.0.0}/src/gdb_jit_int.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-11.0.0}/src/perf_jitdump.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-11.0.0}/src/libc.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-11.0.0}/src/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-11.0.0}/src/win.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/component/transcode.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/cow.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/debug_builtins.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/export.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/externref.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/helpers.c +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/imports.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/index_allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator/pooling.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance/allocator.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/instance.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/memory.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap/miri.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/mmap_vec.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/module_id.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/parking_spot.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/send_sync_ptr.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/store_box.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/s390x.S +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/trampolines.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/aarch64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/riscv64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/s390x.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace/x86_64.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/backtrace.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/macos.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/unix.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers/windows.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/traphandlers.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/vmcontext/vm_host_func_context.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-11.0.0}/src/vmcontext.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-10.0.1 → wasmtime-types-11.0.1}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-10.0.1 → wasmtime-types-11.0.1}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-types-10.0.1 → wasmtime-types-11.0.1}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/error.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview1/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/env.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/exit.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/filesystem.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/io.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/preview2/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/random.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/stdio.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/stream.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/table.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/wasi/command.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/src/preview2/wasi/mod.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/clocks/monotonic-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/clocks/timezone.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/clocks/wall-clock.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/filesystem/filesystem.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/http/incoming-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/http/outgoing-handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/http/types.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/io/streams.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/logging/handler.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/preview/command-extended.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/preview/command.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/preview/proxy.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/preview/reactor.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/random/insecure-seed.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/random/insecure.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/random/random.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/instance-network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/ip-name-lookup.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/network.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/tcp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/tcp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/udp-create-socket.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/sockets/udp.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/environment.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/exit.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/preopens.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/deps/wasi-cli-base/stdio.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/main.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/wit/test.wit +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/witx/typenames.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-11.0.0}/witx/wasi_snapshot_preview1.witx +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-11.0.0}/src/builder.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-11.0.0}/src/compiler.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wasmtime-wit-bindgen-10.0.1 → wasmtime-wit-bindgen-11.0.0}/src/source.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/alias.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/binary.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/custom.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/expand.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/func.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/instance.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/item_ref.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/module.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/resolve.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/export.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/expr.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/global.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/import.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/memory.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/deinline_import_export.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/mod.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/table.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/tag.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/types.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/gensym.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/lexer.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/parser.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/token.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/wast.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/wat.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/annotations.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/comments.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-index.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/inline1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/inline1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string1.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string1.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string10.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string10.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string11.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string11.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string12.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string12.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string13.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string13.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string14.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string14.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string15.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string15.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string16.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string16.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string2.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string2.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string3.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string3.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string4.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string4.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string5.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string5.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string6.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string6.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string7.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string7.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string8.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string8.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string9.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string9.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/unbalanced.wat +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail.rs +0 -0
- /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/recursive.rs +0 -0
- /data/ext/cargo-vendor/{wat-1.0.69 → wat-1.0.70}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wat-1.0.69 → wat-1.0.70}/README.md +0 -0
- /data/ext/cargo-vendor/{wat-1.0.69 → wat-1.0.70}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/borrow.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/guest_type.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/region.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-11.0.0}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/README.md +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/codegen_settings.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/config.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/funcs.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/lifetimes.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/module_trait.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/names.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/error.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/flags.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/handle.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/mod.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/record.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/types/variant.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-11.0.0}/src/wasmtime.rs +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-10.0.1 → wiggle-macro-11.0.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{wiggle-macro-10.0.1 → wiggle-macro-11.0.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/LICENSE +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/abi/local.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/frame/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/aarch64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/aarch64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/aarch64/regs.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/reg.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/x64/address.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/isa/x64/mod.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/regalloc.rs +0 -0
- /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.9.0}/src/regset.rs +0 -0
- /data/ext/cargo-vendor/{windows-targets-0.48.1 → windows-targets-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows-targets-0.48.1 → windows-targets-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/build.rs +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/license-apache-2.0 +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/license-mit +0 -0
- /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/src/lib.rs +0 -0
@@ -1,2952 +0,0 @@
|
|
1
|
-
# 1.30.0 (August 9, 2023)
|
2
|
-
|
3
|
-
This release bumps the MSRV of Tokio to 1.63. ([#5887])
|
4
|
-
|
5
|
-
### Changed
|
6
|
-
|
7
|
-
- tokio: reduce LLVM code generation ([#5859])
|
8
|
-
- io: support `--cfg mio_unsupported_force_poll_poll` flag ([#5881])
|
9
|
-
- sync: make `const_new` methods always available ([#5885])
|
10
|
-
- sync: avoid false sharing in mpsc channel ([#5829])
|
11
|
-
- rt: pop at least one task from inject queue ([#5908])
|
12
|
-
|
13
|
-
### Added
|
14
|
-
|
15
|
-
- sync: add `broadcast::Sender::new` ([#5824])
|
16
|
-
- net: implement `UCred` for espidf ([#5868])
|
17
|
-
- fs: add `File::options()` ([#5869])
|
18
|
-
- time: implement extra reset variants for `Interval` ([#5878])
|
19
|
-
- process: add `{ChildStd*}::into_owned_{fd, handle}` ([#5899])
|
20
|
-
|
21
|
-
### Removed
|
22
|
-
|
23
|
-
- tokio: removed unused `tokio_*` cfgs ([#5890])
|
24
|
-
- remove build script to speed up compilation ([#5887])
|
25
|
-
|
26
|
-
### Documented
|
27
|
-
|
28
|
-
- sync: mention lagging in docs for `broadcast::send` ([#5820])
|
29
|
-
- runtime: expand on sharing runtime docs ([#5858])
|
30
|
-
- io: use vec in example for `AsyncReadExt::read_exact` ([#5863])
|
31
|
-
- time: mark `Sleep` as `!Unpin` in docs ([#5916])
|
32
|
-
- process: fix `raw_arg` not showing up in docs ([#5865])
|
33
|
-
|
34
|
-
### Unstable
|
35
|
-
|
36
|
-
- rt: add runtime ID ([#5864])
|
37
|
-
- rt: initial implementation of new threaded runtime ([#5823])
|
38
|
-
|
39
|
-
[#5820]: https://github.com/tokio-rs/tokio/pull/5820
|
40
|
-
[#5823]: https://github.com/tokio-rs/tokio/pull/5823
|
41
|
-
[#5824]: https://github.com/tokio-rs/tokio/pull/5824
|
42
|
-
[#5829]: https://github.com/tokio-rs/tokio/pull/5829
|
43
|
-
[#5858]: https://github.com/tokio-rs/tokio/pull/5858
|
44
|
-
[#5859]: https://github.com/tokio-rs/tokio/pull/5859
|
45
|
-
[#5863]: https://github.com/tokio-rs/tokio/pull/5863
|
46
|
-
[#5864]: https://github.com/tokio-rs/tokio/pull/5864
|
47
|
-
[#5865]: https://github.com/tokio-rs/tokio/pull/5865
|
48
|
-
[#5868]: https://github.com/tokio-rs/tokio/pull/5868
|
49
|
-
[#5869]: https://github.com/tokio-rs/tokio/pull/5869
|
50
|
-
[#5878]: https://github.com/tokio-rs/tokio/pull/5878
|
51
|
-
[#5881]: https://github.com/tokio-rs/tokio/pull/5881
|
52
|
-
[#5885]: https://github.com/tokio-rs/tokio/pull/5885
|
53
|
-
[#5887]: https://github.com/tokio-rs/tokio/pull/5887
|
54
|
-
[#5890]: https://github.com/tokio-rs/tokio/pull/5890
|
55
|
-
[#5899]: https://github.com/tokio-rs/tokio/pull/5899
|
56
|
-
[#5908]: https://github.com/tokio-rs/tokio/pull/5908
|
57
|
-
[#5916]: https://github.com/tokio-rs/tokio/pull/5916
|
58
|
-
|
59
|
-
# 1.29.1 (June 29, 2023)
|
60
|
-
|
61
|
-
### Fixed
|
62
|
-
|
63
|
-
- rt: fix nesting two `block_in_place` with a `block_on` between ([#5837])
|
64
|
-
|
65
|
-
[#5837]: https://github.com/tokio-rs/tokio/pull/5837
|
66
|
-
|
67
|
-
# 1.29.0 (June 27, 2023)
|
68
|
-
|
69
|
-
Technically a breaking change, the `Send` implementation is removed from
|
70
|
-
`runtime::EnterGuard`. This change fixes a bug and should not impact most users.
|
71
|
-
|
72
|
-
### Breaking
|
73
|
-
|
74
|
-
- rt: `EnterGuard` should not be `Send` ([#5766])
|
75
|
-
|
76
|
-
### Fixed
|
77
|
-
|
78
|
-
- fs: reduce blocking ops in `fs::read_dir` ([#5653])
|
79
|
-
- rt: fix possible starvation ([#5686], [#5712])
|
80
|
-
- rt: fix stacked borrows issue in `JoinSet` ([#5693])
|
81
|
-
- rt: panic if `EnterGuard` dropped incorrect order ([#5772])
|
82
|
-
- time: do not overflow to signal value ([#5710])
|
83
|
-
- fs: wait for in-flight ops before cloning `File` ([#5803])
|
84
|
-
|
85
|
-
### Changed
|
86
|
-
|
87
|
-
- rt: reduce time to poll tasks scheduled from outside the runtime ([#5705], [#5720])
|
88
|
-
|
89
|
-
### Added
|
90
|
-
|
91
|
-
- net: add uds doc alias for unix sockets ([#5659])
|
92
|
-
- rt: add metric for number of tasks ([#5628])
|
93
|
-
- sync: implement more traits for channel errors ([#5666])
|
94
|
-
- net: add nodelay methods on TcpSocket ([#5672])
|
95
|
-
- sync: add `broadcast::Receiver::blocking_recv` ([#5690])
|
96
|
-
- process: add `raw_arg` method to `Command` ([#5704])
|
97
|
-
- io: support PRIORITY epoll events ([#5566])
|
98
|
-
- task: add `JoinSet::poll_join_next` ([#5721])
|
99
|
-
- net: add support for Redox OS ([#5790])
|
100
|
-
|
101
|
-
|
102
|
-
### Unstable
|
103
|
-
|
104
|
-
- rt: add the ability to dump task backtraces ([#5608], [#5676], [#5708], [#5717])
|
105
|
-
- rt: instrument task poll times with a histogram ([#5685])
|
106
|
-
|
107
|
-
[#5766]: https://github.com/tokio-rs/tokio/pull/5766
|
108
|
-
[#5653]: https://github.com/tokio-rs/tokio/pull/5653
|
109
|
-
[#5686]: https://github.com/tokio-rs/tokio/pull/5686
|
110
|
-
[#5712]: https://github.com/tokio-rs/tokio/pull/5712
|
111
|
-
[#5693]: https://github.com/tokio-rs/tokio/pull/5693
|
112
|
-
[#5772]: https://github.com/tokio-rs/tokio/pull/5772
|
113
|
-
[#5710]: https://github.com/tokio-rs/tokio/pull/5710
|
114
|
-
[#5803]: https://github.com/tokio-rs/tokio/pull/5803
|
115
|
-
[#5705]: https://github.com/tokio-rs/tokio/pull/5705
|
116
|
-
[#5720]: https://github.com/tokio-rs/tokio/pull/5720
|
117
|
-
[#5659]: https://github.com/tokio-rs/tokio/pull/5659
|
118
|
-
[#5628]: https://github.com/tokio-rs/tokio/pull/5628
|
119
|
-
[#5666]: https://github.com/tokio-rs/tokio/pull/5666
|
120
|
-
[#5672]: https://github.com/tokio-rs/tokio/pull/5672
|
121
|
-
[#5690]: https://github.com/tokio-rs/tokio/pull/5690
|
122
|
-
[#5704]: https://github.com/tokio-rs/tokio/pull/5704
|
123
|
-
[#5566]: https://github.com/tokio-rs/tokio/pull/5566
|
124
|
-
[#5721]: https://github.com/tokio-rs/tokio/pull/5721
|
125
|
-
[#5790]: https://github.com/tokio-rs/tokio/pull/5790
|
126
|
-
[#5608]: https://github.com/tokio-rs/tokio/pull/5608
|
127
|
-
[#5676]: https://github.com/tokio-rs/tokio/pull/5676
|
128
|
-
[#5708]: https://github.com/tokio-rs/tokio/pull/5708
|
129
|
-
[#5717]: https://github.com/tokio-rs/tokio/pull/5717
|
130
|
-
[#5685]: https://github.com/tokio-rs/tokio/pull/5685
|
131
|
-
|
132
|
-
# 1.28.2 (May 28, 2023)
|
133
|
-
|
134
|
-
Forward ports 1.18.6 changes.
|
135
|
-
|
136
|
-
### Fixed
|
137
|
-
|
138
|
-
- deps: disable default features for mio ([#5728])
|
139
|
-
|
140
|
-
[#5728]: https://github.com/tokio-rs/tokio/pull/5728
|
141
|
-
|
142
|
-
# 1.28.1 (May 10th, 2023)
|
143
|
-
|
144
|
-
This release fixes a mistake in the build script that makes `AsFd`
|
145
|
-
implementations unavailable on Rust 1.63. ([#5677])
|
146
|
-
|
147
|
-
[#5677]: https://github.com/tokio-rs/tokio/pull/5677
|
148
|
-
|
149
|
-
# 1.28.0 (April 25th, 2023)
|
150
|
-
|
151
|
-
### Added
|
152
|
-
|
153
|
-
- io: add `AsyncFd::async_io` ([#5542])
|
154
|
-
- io: impl BufMut for ReadBuf ([#5590])
|
155
|
-
- net: add `recv_buf` for `UdpSocket` and `UnixDatagram` ([#5583])
|
156
|
-
- sync: add `OwnedSemaphorePermit::semaphore` ([#5618])
|
157
|
-
- sync: add `same_channel` to broadcast channel ([#5607])
|
158
|
-
- sync: add `watch::Receiver::wait_for` ([#5611])
|
159
|
-
- task: add `JoinSet::spawn_blocking` and `JoinSet::spawn_blocking_on` ([#5612])
|
160
|
-
|
161
|
-
### Changed
|
162
|
-
|
163
|
-
- deps: update windows-sys to 0.48 ([#5591])
|
164
|
-
- io: make `read_to_end` not grow unnecessarily ([#5610])
|
165
|
-
- macros: make entrypoints more efficient ([#5621])
|
166
|
-
- sync: improve Debug impl for `RwLock` ([#5647])
|
167
|
-
- sync: reduce contention in `Notify` ([#5503])
|
168
|
-
|
169
|
-
### Fixed
|
170
|
-
|
171
|
-
- net: support `get_peer_cred` on AIX ([#5065])
|
172
|
-
- sync: avoid deadlocks in `broadcast` with custom wakers ([#5578])
|
173
|
-
|
174
|
-
### Documented
|
175
|
-
|
176
|
-
- sync: fix typo in `Semaphore::MAX_PERMITS` ([#5645])
|
177
|
-
- sync: fix typo in `tokio::sync::watch::Sender` docs ([#5587])
|
178
|
-
|
179
|
-
[#5065]: https://github.com/tokio-rs/tokio/pull/5065
|
180
|
-
[#5503]: https://github.com/tokio-rs/tokio/pull/5503
|
181
|
-
[#5542]: https://github.com/tokio-rs/tokio/pull/5542
|
182
|
-
[#5578]: https://github.com/tokio-rs/tokio/pull/5578
|
183
|
-
[#5583]: https://github.com/tokio-rs/tokio/pull/5583
|
184
|
-
[#5587]: https://github.com/tokio-rs/tokio/pull/5587
|
185
|
-
[#5590]: https://github.com/tokio-rs/tokio/pull/5590
|
186
|
-
[#5591]: https://github.com/tokio-rs/tokio/pull/5591
|
187
|
-
[#5607]: https://github.com/tokio-rs/tokio/pull/5607
|
188
|
-
[#5610]: https://github.com/tokio-rs/tokio/pull/5610
|
189
|
-
[#5611]: https://github.com/tokio-rs/tokio/pull/5611
|
190
|
-
[#5612]: https://github.com/tokio-rs/tokio/pull/5612
|
191
|
-
[#5618]: https://github.com/tokio-rs/tokio/pull/5618
|
192
|
-
[#5621]: https://github.com/tokio-rs/tokio/pull/5621
|
193
|
-
[#5645]: https://github.com/tokio-rs/tokio/pull/5645
|
194
|
-
[#5647]: https://github.com/tokio-rs/tokio/pull/5647
|
195
|
-
|
196
|
-
# 1.27.0 (March 27th, 2023)
|
197
|
-
|
198
|
-
This release bumps the MSRV of Tokio to 1.56. ([#5559])
|
199
|
-
|
200
|
-
### Added
|
201
|
-
|
202
|
-
- io: add `async_io` helper method to sockets ([#5512])
|
203
|
-
- io: add implementations of `AsFd`/`AsHandle`/`AsSocket` ([#5514], [#5540])
|
204
|
-
- net: add `UdpSocket::peek_sender()` ([#5520])
|
205
|
-
- sync: add `RwLockWriteGuard::{downgrade_map, try_downgrade_map}` ([#5527])
|
206
|
-
- task: add `JoinHandle::abort_handle` ([#5543])
|
207
|
-
|
208
|
-
### Changed
|
209
|
-
|
210
|
-
- io: use `memchr` from `libc` ([#5558])
|
211
|
-
- macros: accept path as crate rename in `#[tokio::main]` ([#5557])
|
212
|
-
- macros: update to syn 2.0.0 ([#5572])
|
213
|
-
- time: don't register for a wakeup when `Interval` returns `Ready` ([#5553])
|
214
|
-
|
215
|
-
### Fixed
|
216
|
-
|
217
|
-
- fs: fuse std iterator in `ReadDir` ([#5555])
|
218
|
-
- tracing: fix `spawn_blocking` location fields ([#5573])
|
219
|
-
- time: clean up redundant check in `Wheel::poll()` ([#5574])
|
220
|
-
|
221
|
-
### Documented
|
222
|
-
|
223
|
-
- macros: define cancellation safety ([#5525])
|
224
|
-
- io: add details to docs of `tokio::io::copy[_buf]` ([#5575])
|
225
|
-
- io: refer to `ReaderStream` and `StreamReader` in module docs ([#5576])
|
226
|
-
|
227
|
-
[#5512]: https://github.com/tokio-rs/tokio/pull/5512
|
228
|
-
[#5514]: https://github.com/tokio-rs/tokio/pull/5514
|
229
|
-
[#5520]: https://github.com/tokio-rs/tokio/pull/5520
|
230
|
-
[#5525]: https://github.com/tokio-rs/tokio/pull/5525
|
231
|
-
[#5527]: https://github.com/tokio-rs/tokio/pull/5527
|
232
|
-
[#5540]: https://github.com/tokio-rs/tokio/pull/5540
|
233
|
-
[#5543]: https://github.com/tokio-rs/tokio/pull/5543
|
234
|
-
[#5553]: https://github.com/tokio-rs/tokio/pull/5553
|
235
|
-
[#5555]: https://github.com/tokio-rs/tokio/pull/5555
|
236
|
-
[#5557]: https://github.com/tokio-rs/tokio/pull/5557
|
237
|
-
[#5558]: https://github.com/tokio-rs/tokio/pull/5558
|
238
|
-
[#5559]: https://github.com/tokio-rs/tokio/pull/5559
|
239
|
-
[#5572]: https://github.com/tokio-rs/tokio/pull/5572
|
240
|
-
[#5573]: https://github.com/tokio-rs/tokio/pull/5573
|
241
|
-
[#5574]: https://github.com/tokio-rs/tokio/pull/5574
|
242
|
-
[#5575]: https://github.com/tokio-rs/tokio/pull/5575
|
243
|
-
[#5576]: https://github.com/tokio-rs/tokio/pull/5576
|
244
|
-
|
245
|
-
# 1.26.0 (March 1st, 2023)
|
246
|
-
|
247
|
-
### Fixed
|
248
|
-
|
249
|
-
- macros: fix empty `join!` and `try_join!` ([#5504])
|
250
|
-
- sync: don't leak tracing spans in mutex guards ([#5469])
|
251
|
-
- sync: drop wakers after unlocking the mutex in Notify ([#5471])
|
252
|
-
- sync: drop wakers outside lock in semaphore ([#5475])
|
253
|
-
|
254
|
-
### Added
|
255
|
-
|
256
|
-
- fs: add `fs::try_exists` ([#4299])
|
257
|
-
- net: add types for named unix pipes ([#5351])
|
258
|
-
- sync: add `MappedOwnedMutexGuard` ([#5474])
|
259
|
-
|
260
|
-
### Changed
|
261
|
-
|
262
|
-
- chore: update windows-sys to 0.45 ([#5386])
|
263
|
-
- net: use Message Read Mode for named pipes ([#5350])
|
264
|
-
- sync: mark lock guards with `#[clippy::has_significant_drop]` ([#5422])
|
265
|
-
- sync: reduce contention in watch channel ([#5464])
|
266
|
-
- time: remove cache padding in timer entries ([#5468])
|
267
|
-
- time: Improve `Instant::now()` perf with test-util ([#5513])
|
268
|
-
|
269
|
-
### Internal Changes
|
270
|
-
|
271
|
-
- io: use `poll_fn` in `copy_bidirectional` ([#5486])
|
272
|
-
- net: refactor named pipe builders to not use bitfields ([#5477])
|
273
|
-
- rt: remove Arc from Clock ([#5434])
|
274
|
-
- sync: make `notify_waiters` calls atomic ([#5458])
|
275
|
-
- time: don't store deadline twice in sleep entries ([#5410])
|
276
|
-
|
277
|
-
### Unstable
|
278
|
-
|
279
|
-
- metrics: add a new metric for budget exhaustion yields ([#5517])
|
280
|
-
|
281
|
-
### Documented
|
282
|
-
|
283
|
-
- io: improve AsyncFd example ([#5481])
|
284
|
-
- runtime: document the nature of the main future ([#5494])
|
285
|
-
- runtime: remove extra period in docs ([#5511])
|
286
|
-
- signal: updated Documentation for Signals ([#5459])
|
287
|
-
- sync: add doc aliases for `blocking_*` methods ([#5448])
|
288
|
-
- sync: fix docs for Send/Sync bounds in broadcast ([#5480])
|
289
|
-
- sync: document drop behavior for channels ([#5497])
|
290
|
-
- task: clarify what happens to spawned work during runtime shutdown ([#5394])
|
291
|
-
- task: clarify `process::Command` docs ([#5413])
|
292
|
-
- task: fix wording with 'unsend' ([#5452])
|
293
|
-
- time: document immediate completion guarantee for timeouts ([#5509])
|
294
|
-
- tokio: document supported platforms ([#5483])
|
295
|
-
|
296
|
-
[#4299]: https://github.com/tokio-rs/tokio/pull/4299
|
297
|
-
[#5350]: https://github.com/tokio-rs/tokio/pull/5350
|
298
|
-
[#5351]: https://github.com/tokio-rs/tokio/pull/5351
|
299
|
-
[#5386]: https://github.com/tokio-rs/tokio/pull/5386
|
300
|
-
[#5394]: https://github.com/tokio-rs/tokio/pull/5394
|
301
|
-
[#5410]: https://github.com/tokio-rs/tokio/pull/5410
|
302
|
-
[#5413]: https://github.com/tokio-rs/tokio/pull/5413
|
303
|
-
[#5422]: https://github.com/tokio-rs/tokio/pull/5422
|
304
|
-
[#5434]: https://github.com/tokio-rs/tokio/pull/5434
|
305
|
-
[#5448]: https://github.com/tokio-rs/tokio/pull/5448
|
306
|
-
[#5452]: https://github.com/tokio-rs/tokio/pull/5452
|
307
|
-
[#5458]: https://github.com/tokio-rs/tokio/pull/5458
|
308
|
-
[#5459]: https://github.com/tokio-rs/tokio/pull/5459
|
309
|
-
[#5464]: https://github.com/tokio-rs/tokio/pull/5464
|
310
|
-
[#5468]: https://github.com/tokio-rs/tokio/pull/5468
|
311
|
-
[#5469]: https://github.com/tokio-rs/tokio/pull/5469
|
312
|
-
[#5471]: https://github.com/tokio-rs/tokio/pull/5471
|
313
|
-
[#5474]: https://github.com/tokio-rs/tokio/pull/5474
|
314
|
-
[#5475]: https://github.com/tokio-rs/tokio/pull/5475
|
315
|
-
[#5477]: https://github.com/tokio-rs/tokio/pull/5477
|
316
|
-
[#5480]: https://github.com/tokio-rs/tokio/pull/5480
|
317
|
-
[#5481]: https://github.com/tokio-rs/tokio/pull/5481
|
318
|
-
[#5483]: https://github.com/tokio-rs/tokio/pull/5483
|
319
|
-
[#5486]: https://github.com/tokio-rs/tokio/pull/5486
|
320
|
-
[#5494]: https://github.com/tokio-rs/tokio/pull/5494
|
321
|
-
[#5497]: https://github.com/tokio-rs/tokio/pull/5497
|
322
|
-
[#5504]: https://github.com/tokio-rs/tokio/pull/5504
|
323
|
-
[#5509]: https://github.com/tokio-rs/tokio/pull/5509
|
324
|
-
[#5511]: https://github.com/tokio-rs/tokio/pull/5511
|
325
|
-
[#5513]: https://github.com/tokio-rs/tokio/pull/5513
|
326
|
-
[#5517]: https://github.com/tokio-rs/tokio/pull/5517
|
327
|
-
|
328
|
-
# 1.25.1 (May 28, 2023)
|
329
|
-
|
330
|
-
Forward ports 1.18.6 changes.
|
331
|
-
|
332
|
-
### Fixed
|
333
|
-
|
334
|
-
- deps: disable default features for mio ([#5728])
|
335
|
-
|
336
|
-
[#5728]: https://github.com/tokio-rs/tokio/pull/5728
|
337
|
-
|
338
|
-
# 1.25.0 (January 28, 2023)
|
339
|
-
|
340
|
-
### Fixed
|
341
|
-
|
342
|
-
- rt: fix runtime metrics reporting ([#5330])
|
343
|
-
|
344
|
-
### Added
|
345
|
-
|
346
|
-
- sync: add `broadcast::Sender::len` ([#5343])
|
347
|
-
|
348
|
-
### Changed
|
349
|
-
|
350
|
-
- fs: increase maximum read buffer size to 2MiB ([#5397])
|
351
|
-
|
352
|
-
[#5330]: https://github.com/tokio-rs/tokio/pull/5330
|
353
|
-
[#5343]: https://github.com/tokio-rs/tokio/pull/5343
|
354
|
-
[#5397]: https://github.com/tokio-rs/tokio/pull/5397
|
355
|
-
|
356
|
-
# 1.24.2 (January 17, 2023)
|
357
|
-
|
358
|
-
Forward ports 1.18.5 changes.
|
359
|
-
|
360
|
-
### Fixed
|
361
|
-
|
362
|
-
- io: fix unsoundness in `ReadHalf::unsplit` ([#5375])
|
363
|
-
|
364
|
-
[#5375]: https://github.com/tokio-rs/tokio/pull/5375
|
365
|
-
|
366
|
-
# 1.24.1 (January 6, 2022)
|
367
|
-
|
368
|
-
This release fixes a compilation failure on targets without `AtomicU64` when using rustc older than 1.63. ([#5356])
|
369
|
-
|
370
|
-
[#5356]: https://github.com/tokio-rs/tokio/pull/5356
|
371
|
-
|
372
|
-
# 1.24.0 (January 5, 2022)
|
373
|
-
|
374
|
-
### Fixed
|
375
|
-
- rt: improve native `AtomicU64` support detection ([#5284])
|
376
|
-
|
377
|
-
### Added
|
378
|
-
- rt: add configuration option for max number of I/O events polled from the OS
|
379
|
-
per tick ([#5186])
|
380
|
-
- rt: add an environment variable for configuring the default number of worker
|
381
|
-
threads per runtime instance ([#4250])
|
382
|
-
|
383
|
-
### Changed
|
384
|
-
- sync: reduce MPSC channel stack usage ([#5294])
|
385
|
-
- io: reduce lock contention in I/O operations ([#5300])
|
386
|
-
- fs: speed up `read_dir()` by chunking operations ([#5309])
|
387
|
-
- rt: use internal `ThreadId` implementation ([#5329])
|
388
|
-
- test: don't auto-advance time when a `spawn_blocking` task is running ([#5115])
|
389
|
-
|
390
|
-
[#5186]: https://github.com/tokio-rs/tokio/pull/5186
|
391
|
-
[#5294]: https://github.com/tokio-rs/tokio/pull/5294
|
392
|
-
[#5284]: https://github.com/tokio-rs/tokio/pull/5284
|
393
|
-
[#4250]: https://github.com/tokio-rs/tokio/pull/4250
|
394
|
-
[#5300]: https://github.com/tokio-rs/tokio/pull/5300
|
395
|
-
[#5329]: https://github.com/tokio-rs/tokio/pull/5329
|
396
|
-
[#5115]: https://github.com/tokio-rs/tokio/pull/5115
|
397
|
-
[#5309]: https://github.com/tokio-rs/tokio/pull/5309
|
398
|
-
|
399
|
-
# 1.23.1 (January 4, 2022)
|
400
|
-
|
401
|
-
This release forward ports changes from 1.18.4.
|
402
|
-
|
403
|
-
### Fixed
|
404
|
-
|
405
|
-
- net: fix Windows named pipe server builder to maintain option when toggling
|
406
|
-
pipe mode ([#5336]).
|
407
|
-
|
408
|
-
[#5336]: https://github.com/tokio-rs/tokio/pull/5336
|
409
|
-
|
410
|
-
# 1.23.0 (December 5, 2022)
|
411
|
-
|
412
|
-
### Fixed
|
413
|
-
|
414
|
-
- net: fix Windows named pipe connect ([#5208])
|
415
|
-
- io: support vectored writes for `ChildStdin` ([#5216])
|
416
|
-
- io: fix `async fn ready()` false positive for OS-specific events ([#5231])
|
417
|
-
|
418
|
-
### Changed
|
419
|
-
- runtime: `yield_now` defers task until after driver poll ([#5223])
|
420
|
-
- runtime: reduce amount of codegen needed per spawned task ([#5213])
|
421
|
-
- windows: replace `winapi` dependency with `windows-sys` ([#5204])
|
422
|
-
|
423
|
-
[#5208]: https://github.com/tokio-rs/tokio/pull/5208
|
424
|
-
[#5216]: https://github.com/tokio-rs/tokio/pull/5216
|
425
|
-
[#5213]: https://github.com/tokio-rs/tokio/pull/5213
|
426
|
-
[#5204]: https://github.com/tokio-rs/tokio/pull/5204
|
427
|
-
[#5223]: https://github.com/tokio-rs/tokio/pull/5223
|
428
|
-
[#5231]: https://github.com/tokio-rs/tokio/pull/5231
|
429
|
-
|
430
|
-
# 1.22.0 (November 17, 2022)
|
431
|
-
|
432
|
-
### Added
|
433
|
-
- runtime: add `Handle::runtime_flavor` ([#5138])
|
434
|
-
- sync: add `Mutex::blocking_lock_owned` ([#5130])
|
435
|
-
- sync: add `Semaphore::MAX_PERMITS` ([#5144])
|
436
|
-
- sync: add `merge()` to semaphore permits ([#4948])
|
437
|
-
- sync: add `mpsc::WeakUnboundedSender` ([#5189])
|
438
|
-
|
439
|
-
### Added (unstable)
|
440
|
-
|
441
|
-
- process: add `Command::process_group` ([#5114])
|
442
|
-
- runtime: export metrics about the blocking thread pool ([#5161])
|
443
|
-
- task: add `task::id()` and `task::try_id()` ([#5171])
|
444
|
-
|
445
|
-
### Fixed
|
446
|
-
- macros: don't take ownership of futures in macros ([#5087])
|
447
|
-
- runtime: fix Stacked Borrows violation in `LocalOwnedTasks` ([#5099])
|
448
|
-
- runtime: mitigate ABA with 32-bit queue indices when possible ([#5042])
|
449
|
-
- task: wake local tasks to the local queue when woken by the same thread ([#5095])
|
450
|
-
- time: panic in release mode when `mark_pending` called illegally ([#5093])
|
451
|
-
- runtime: fix typo in expect message ([#5169])
|
452
|
-
- runtime: fix `unsync_load` on atomic types ([#5175])
|
453
|
-
- task: elaborate safety comments in task deallocation ([#5172])
|
454
|
-
- runtime: fix `LocalSet` drop in thread local ([#5179])
|
455
|
-
- net: remove libc type leakage in a public API ([#5191])
|
456
|
-
- runtime: update the alignment of `CachePadded` ([#5106])
|
457
|
-
|
458
|
-
### Changed
|
459
|
-
- io: make `tokio::io::copy` continue filling the buffer when writer stalls ([#5066])
|
460
|
-
- runtime: remove `coop::budget` from `LocalSet::run_until` ([#5155])
|
461
|
-
- sync: make `Notify` panic safe ([#5154])
|
462
|
-
|
463
|
-
### Documented
|
464
|
-
- io: fix doc for `write_i8` to use signed integers ([#5040])
|
465
|
-
- net: fix doc typos for TCP and UDP `set_tos` methods ([#5073])
|
466
|
-
- net: fix function name in `UdpSocket::recv` documentation ([#5150])
|
467
|
-
- sync: typo in `TryLockError` for `RwLock::try_write` ([#5160])
|
468
|
-
- task: document that spawned tasks execute immediately ([#5117])
|
469
|
-
- time: document return type of `timeout` ([#5118])
|
470
|
-
- time: document that `timeout` checks only before poll ([#5126])
|
471
|
-
- sync: specify return type of `oneshot::Receiver` in docs ([#5198])
|
472
|
-
|
473
|
-
### Internal changes
|
474
|
-
- runtime: use const `Mutex::new` for globals ([#5061])
|
475
|
-
- runtime: remove `Option` around `mio::Events` in io driver ([#5078])
|
476
|
-
- runtime: remove a conditional compilation clause ([#5104])
|
477
|
-
- runtime: remove a reference to internal time handle ([#5107])
|
478
|
-
- runtime: misc time driver cleanup ([#5120])
|
479
|
-
- runtime: move signal driver to runtime module ([#5121])
|
480
|
-
- runtime: signal driver now uses I/O driver directly ([#5125])
|
481
|
-
- runtime: start decoupling I/O driver and I/O handle ([#5127])
|
482
|
-
- runtime: switch `io::handle` refs with scheduler:Handle ([#5128])
|
483
|
-
- runtime: remove Arc from I/O driver ([#5134])
|
484
|
-
- runtime: use signal driver handle via `scheduler::Handle` ([#5135])
|
485
|
-
- runtime: move internal clock fns out of context ([#5139])
|
486
|
-
- runtime: remove `runtime::context` module ([#5140])
|
487
|
-
- runtime: keep driver cfgs in `driver.rs` ([#5141])
|
488
|
-
- runtime: add `runtime::context` to unify thread-locals ([#5143])
|
489
|
-
- runtime: rename some confusing internal variables/fns ([#5151])
|
490
|
-
- runtime: move `coop` mod into `runtime` ([#5152])
|
491
|
-
- runtime: move budget state to context thread-local ([#5157])
|
492
|
-
- runtime: move park logic into runtime module ([#5158])
|
493
|
-
- runtime: move `Runtime` into its own file ([#5159])
|
494
|
-
- runtime: unify entering a runtime with `Handle::enter` ([#5163])
|
495
|
-
- runtime: remove handle reference from each scheduler ([#5166])
|
496
|
-
- runtime: move `enter` into `context` ([#5167])
|
497
|
-
- runtime: combine context and entered thread-locals ([#5168])
|
498
|
-
- runtime: fix accidental unsetting of current handle ([#5178])
|
499
|
-
- runtime: move `CoreStage` methods to `Core` ([#5182])
|
500
|
-
- sync: name mpsc semaphore types ([#5146])
|
501
|
-
|
502
|
-
[#4948]: https://github.com/tokio-rs/tokio/pull/4948
|
503
|
-
[#5040]: https://github.com/tokio-rs/tokio/pull/5040
|
504
|
-
[#5042]: https://github.com/tokio-rs/tokio/pull/5042
|
505
|
-
[#5061]: https://github.com/tokio-rs/tokio/pull/5061
|
506
|
-
[#5066]: https://github.com/tokio-rs/tokio/pull/5066
|
507
|
-
[#5073]: https://github.com/tokio-rs/tokio/pull/5073
|
508
|
-
[#5078]: https://github.com/tokio-rs/tokio/pull/5078
|
509
|
-
[#5087]: https://github.com/tokio-rs/tokio/pull/5087
|
510
|
-
[#5093]: https://github.com/tokio-rs/tokio/pull/5093
|
511
|
-
[#5095]: https://github.com/tokio-rs/tokio/pull/5095
|
512
|
-
[#5099]: https://github.com/tokio-rs/tokio/pull/5099
|
513
|
-
[#5104]: https://github.com/tokio-rs/tokio/pull/5104
|
514
|
-
[#5106]: https://github.com/tokio-rs/tokio/pull/5106
|
515
|
-
[#5107]: https://github.com/tokio-rs/tokio/pull/5107
|
516
|
-
[#5114]: https://github.com/tokio-rs/tokio/pull/5114
|
517
|
-
[#5117]: https://github.com/tokio-rs/tokio/pull/5117
|
518
|
-
[#5118]: https://github.com/tokio-rs/tokio/pull/5118
|
519
|
-
[#5120]: https://github.com/tokio-rs/tokio/pull/5120
|
520
|
-
[#5121]: https://github.com/tokio-rs/tokio/pull/5121
|
521
|
-
[#5125]: https://github.com/tokio-rs/tokio/pull/5125
|
522
|
-
[#5126]: https://github.com/tokio-rs/tokio/pull/5126
|
523
|
-
[#5127]: https://github.com/tokio-rs/tokio/pull/5127
|
524
|
-
[#5128]: https://github.com/tokio-rs/tokio/pull/5128
|
525
|
-
[#5130]: https://github.com/tokio-rs/tokio/pull/5130
|
526
|
-
[#5134]: https://github.com/tokio-rs/tokio/pull/5134
|
527
|
-
[#5135]: https://github.com/tokio-rs/tokio/pull/5135
|
528
|
-
[#5138]: https://github.com/tokio-rs/tokio/pull/5138
|
529
|
-
[#5138]: https://github.com/tokio-rs/tokio/pull/5138
|
530
|
-
[#5139]: https://github.com/tokio-rs/tokio/pull/5139
|
531
|
-
[#5140]: https://github.com/tokio-rs/tokio/pull/5140
|
532
|
-
[#5141]: https://github.com/tokio-rs/tokio/pull/5141
|
533
|
-
[#5143]: https://github.com/tokio-rs/tokio/pull/5143
|
534
|
-
[#5144]: https://github.com/tokio-rs/tokio/pull/5144
|
535
|
-
[#5144]: https://github.com/tokio-rs/tokio/pull/5144
|
536
|
-
[#5146]: https://github.com/tokio-rs/tokio/pull/5146
|
537
|
-
[#5150]: https://github.com/tokio-rs/tokio/pull/5150
|
538
|
-
[#5151]: https://github.com/tokio-rs/tokio/pull/5151
|
539
|
-
[#5152]: https://github.com/tokio-rs/tokio/pull/5152
|
540
|
-
[#5154]: https://github.com/tokio-rs/tokio/pull/5154
|
541
|
-
[#5155]: https://github.com/tokio-rs/tokio/pull/5155
|
542
|
-
[#5157]: https://github.com/tokio-rs/tokio/pull/5157
|
543
|
-
[#5158]: https://github.com/tokio-rs/tokio/pull/5158
|
544
|
-
[#5159]: https://github.com/tokio-rs/tokio/pull/5159
|
545
|
-
[#5160]: https://github.com/tokio-rs/tokio/pull/5160
|
546
|
-
[#5161]: https://github.com/tokio-rs/tokio/pull/5161
|
547
|
-
[#5163]: https://github.com/tokio-rs/tokio/pull/5163
|
548
|
-
[#5166]: https://github.com/tokio-rs/tokio/pull/5166
|
549
|
-
[#5167]: https://github.com/tokio-rs/tokio/pull/5167
|
550
|
-
[#5168]: https://github.com/tokio-rs/tokio/pull/5168
|
551
|
-
[#5169]: https://github.com/tokio-rs/tokio/pull/5169
|
552
|
-
[#5171]: https://github.com/tokio-rs/tokio/pull/5171
|
553
|
-
[#5172]: https://github.com/tokio-rs/tokio/pull/5172
|
554
|
-
[#5175]: https://github.com/tokio-rs/tokio/pull/5175
|
555
|
-
[#5178]: https://github.com/tokio-rs/tokio/pull/5178
|
556
|
-
[#5179]: https://github.com/tokio-rs/tokio/pull/5179
|
557
|
-
[#5182]: https://github.com/tokio-rs/tokio/pull/5182
|
558
|
-
[#5189]: https://github.com/tokio-rs/tokio/pull/5189
|
559
|
-
[#5191]: https://github.com/tokio-rs/tokio/pull/5191
|
560
|
-
[#5198]: https://github.com/tokio-rs/tokio/pull/5198
|
561
|
-
|
562
|
-
# 1.21.2 (September 27, 2022)
|
563
|
-
|
564
|
-
This release removes the dependency on the `once_cell` crate to restore the MSRV
|
565
|
-
of 1.21.x, which is the latest minor version at the time of release. ([#5048])
|
566
|
-
|
567
|
-
[#5048]: https://github.com/tokio-rs/tokio/pull/5048
|
568
|
-
|
569
|
-
# 1.21.1 (September 13, 2022)
|
570
|
-
|
571
|
-
### Fixed
|
572
|
-
|
573
|
-
- net: fix dependency resolution for socket2 ([#5000])
|
574
|
-
- task: ignore failure to set TLS in `LocalSet` Drop ([#4976])
|
575
|
-
|
576
|
-
[#4976]: https://github.com/tokio-rs/tokio/pull/4976
|
577
|
-
[#5000]: https://github.com/tokio-rs/tokio/pull/5000
|
578
|
-
|
579
|
-
# 1.21.0 (September 2, 2022)
|
580
|
-
|
581
|
-
This release is the first release of Tokio to intentionally support WASM. The
|
582
|
-
`sync,macros,io-util,rt,time` features are stabilized on WASM. Additionally the
|
583
|
-
wasm32-wasi target is given unstable support for the `net` feature.
|
584
|
-
|
585
|
-
### Added
|
586
|
-
|
587
|
-
- net: add `device` and `bind_device` methods to TCP/UDP sockets ([#4882])
|
588
|
-
- net: add `tos` and `set_tos` methods to TCP and UDP sockets ([#4877])
|
589
|
-
- net: add security flags to named pipe `ServerOptions` ([#4845])
|
590
|
-
- signal: add more windows signal handlers ([#4924])
|
591
|
-
- sync: add `mpsc::Sender::max_capacity` method ([#4904])
|
592
|
-
- sync: implement Weak version of `mpsc::Sender` ([#4595])
|
593
|
-
- task: add `LocalSet::enter` ([#4765])
|
594
|
-
- task: stabilize `JoinSet` and `AbortHandle` ([#4920])
|
595
|
-
- tokio: add `track_caller` to public APIs ([#4805], [#4848], [#4852])
|
596
|
-
- wasm: initial support for `wasm32-wasi` target ([#4716])
|
597
|
-
|
598
|
-
### Fixed
|
599
|
-
|
600
|
-
- miri: improve miri compatibility by avoiding temporary references in `linked_list::Link` impls ([#4841])
|
601
|
-
- signal: don't register write interest on signal pipe ([#4898])
|
602
|
-
- sync: add `#[must_use]` to lock guards ([#4886])
|
603
|
-
- sync: fix hang when calling `recv` on closed and reopened broadcast channel ([#4867])
|
604
|
-
- task: propagate attributes on task-locals ([#4837])
|
605
|
-
|
606
|
-
### Changed
|
607
|
-
|
608
|
-
- fs: change panic to error in `File::start_seek` ([#4897])
|
609
|
-
- io: reduce syscalls in `poll_read` ([#4840])
|
610
|
-
- process: use blocking threadpool for child stdio I/O ([#4824])
|
611
|
-
- signal: make `SignalKind` methods const ([#4956])
|
612
|
-
|
613
|
-
### Internal changes
|
614
|
-
|
615
|
-
- rt: extract `basic_scheduler::Config` ([#4935])
|
616
|
-
- rt: move I/O driver into `runtime` module ([#4942])
|
617
|
-
- rt: rename internal scheduler types ([#4945])
|
618
|
-
|
619
|
-
### Documented
|
620
|
-
|
621
|
-
- chore: fix typos and grammar ([#4858], [#4894], [#4928])
|
622
|
-
- io: fix typo in `AsyncSeekExt::rewind` docs ([#4893])
|
623
|
-
- net: add documentation to `try_read()` for zero-length buffers ([#4937])
|
624
|
-
- runtime: remove incorrect panic section for `Builder::worker_threads` ([#4849])
|
625
|
-
- sync: doc of `watch::Sender::send` improved ([#4959])
|
626
|
-
- task: add cancel safety docs to `JoinHandle` ([#4901])
|
627
|
-
- task: expand on cancellation of `spawn_blocking` ([#4811])
|
628
|
-
- time: clarify that the first tick of `Interval::tick` happens immediately ([#4951])
|
629
|
-
|
630
|
-
### Unstable
|
631
|
-
|
632
|
-
- rt: add unstable option to disable the LIFO slot ([#4936])
|
633
|
-
- task: fix incorrect signature in `Builder::spawn_on` ([#4953])
|
634
|
-
- task: make `task::Builder::spawn*` methods fallible ([#4823])
|
635
|
-
|
636
|
-
[#4595]: https://github.com/tokio-rs/tokio/pull/4595
|
637
|
-
[#4716]: https://github.com/tokio-rs/tokio/pull/4716
|
638
|
-
[#4765]: https://github.com/tokio-rs/tokio/pull/4765
|
639
|
-
[#4805]: https://github.com/tokio-rs/tokio/pull/4805
|
640
|
-
[#4811]: https://github.com/tokio-rs/tokio/pull/4811
|
641
|
-
[#4823]: https://github.com/tokio-rs/tokio/pull/4823
|
642
|
-
[#4824]: https://github.com/tokio-rs/tokio/pull/4824
|
643
|
-
[#4837]: https://github.com/tokio-rs/tokio/pull/4837
|
644
|
-
[#4840]: https://github.com/tokio-rs/tokio/pull/4840
|
645
|
-
[#4841]: https://github.com/tokio-rs/tokio/pull/4841
|
646
|
-
[#4845]: https://github.com/tokio-rs/tokio/pull/4845
|
647
|
-
[#4848]: https://github.com/tokio-rs/tokio/pull/4848
|
648
|
-
[#4849]: https://github.com/tokio-rs/tokio/pull/4849
|
649
|
-
[#4852]: https://github.com/tokio-rs/tokio/pull/4852
|
650
|
-
[#4858]: https://github.com/tokio-rs/tokio/pull/4858
|
651
|
-
[#4867]: https://github.com/tokio-rs/tokio/pull/4867
|
652
|
-
[#4877]: https://github.com/tokio-rs/tokio/pull/4877
|
653
|
-
[#4882]: https://github.com/tokio-rs/tokio/pull/4882
|
654
|
-
[#4886]: https://github.com/tokio-rs/tokio/pull/4886
|
655
|
-
[#4893]: https://github.com/tokio-rs/tokio/pull/4893
|
656
|
-
[#4894]: https://github.com/tokio-rs/tokio/pull/4894
|
657
|
-
[#4897]: https://github.com/tokio-rs/tokio/pull/4897
|
658
|
-
[#4898]: https://github.com/tokio-rs/tokio/pull/4898
|
659
|
-
[#4901]: https://github.com/tokio-rs/tokio/pull/4901
|
660
|
-
[#4904]: https://github.com/tokio-rs/tokio/pull/4904
|
661
|
-
[#4920]: https://github.com/tokio-rs/tokio/pull/4920
|
662
|
-
[#4924]: https://github.com/tokio-rs/tokio/pull/4924
|
663
|
-
[#4928]: https://github.com/tokio-rs/tokio/pull/4928
|
664
|
-
[#4935]: https://github.com/tokio-rs/tokio/pull/4935
|
665
|
-
[#4936]: https://github.com/tokio-rs/tokio/pull/4936
|
666
|
-
[#4937]: https://github.com/tokio-rs/tokio/pull/4937
|
667
|
-
[#4942]: https://github.com/tokio-rs/tokio/pull/4942
|
668
|
-
[#4945]: https://github.com/tokio-rs/tokio/pull/4945
|
669
|
-
[#4951]: https://github.com/tokio-rs/tokio/pull/4951
|
670
|
-
[#4953]: https://github.com/tokio-rs/tokio/pull/4953
|
671
|
-
[#4956]: https://github.com/tokio-rs/tokio/pull/4956
|
672
|
-
[#4959]: https://github.com/tokio-rs/tokio/pull/4959
|
673
|
-
|
674
|
-
# 1.20.5 (May 28, 2023)
|
675
|
-
|
676
|
-
Forward ports 1.18.6 changes.
|
677
|
-
|
678
|
-
### Fixed
|
679
|
-
|
680
|
-
- deps: disable default features for mio ([#5728])
|
681
|
-
|
682
|
-
[#5728]: https://github.com/tokio-rs/tokio/pull/5728
|
683
|
-
|
684
|
-
# 1.20.4 (January 17, 2023)
|
685
|
-
|
686
|
-
Forward ports 1.18.5 changes.
|
687
|
-
|
688
|
-
### Fixed
|
689
|
-
|
690
|
-
- io: fix unsoundness in `ReadHalf::unsplit` ([#5375])
|
691
|
-
|
692
|
-
[#5375]: https://github.com/tokio-rs/tokio/pull/5375
|
693
|
-
|
694
|
-
# 1.20.3 (January 3, 2022)
|
695
|
-
|
696
|
-
This release forward ports changes from 1.18.4.
|
697
|
-
|
698
|
-
### Fixed
|
699
|
-
|
700
|
-
- net: fix Windows named pipe server builder to maintain option when toggling
|
701
|
-
pipe mode ([#5336]).
|
702
|
-
|
703
|
-
[#5336]: https://github.com/tokio-rs/tokio/pull/5336
|
704
|
-
|
705
|
-
# 1.20.2 (September 27, 2022)
|
706
|
-
|
707
|
-
This release removes the dependency on the `once_cell` crate to restore the MSRV
|
708
|
-
of the 1.20.x LTS release. ([#5048])
|
709
|
-
|
710
|
-
[#5048]: https://github.com/tokio-rs/tokio/pull/5048
|
711
|
-
|
712
|
-
# 1.20.1 (July 25, 2022)
|
713
|
-
|
714
|
-
### Fixed
|
715
|
-
|
716
|
-
- chore: fix version detection in build script ([#4860])
|
717
|
-
|
718
|
-
[#4860]: https://github.com/tokio-rs/tokio/pull/4860
|
719
|
-
|
720
|
-
# 1.20.0 (July 12, 2022)
|
721
|
-
|
722
|
-
### Added
|
723
|
-
- tokio: add `track_caller` to public APIs ([#4772], [#4791], [#4793], [#4806], [#4808])
|
724
|
-
- sync: Add `has_changed` method to `watch::Ref` ([#4758])
|
725
|
-
|
726
|
-
### Changed
|
727
|
-
|
728
|
-
- time: remove `src/time/driver/wheel/stack.rs` ([#4766])
|
729
|
-
- rt: clean up arguments passed to basic scheduler ([#4767])
|
730
|
-
- net: be more specific about winapi features ([#4764])
|
731
|
-
- tokio: use const initialized thread locals where possible ([#4677])
|
732
|
-
- task: various small improvements to LocalKey ([#4795])
|
733
|
-
|
734
|
-
### Documented
|
735
|
-
|
736
|
-
- fs: warn about performance pitfall ([#4762])
|
737
|
-
- chore: fix spelling ([#4769])
|
738
|
-
- sync: document spurious failures in oneshot ([#4777])
|
739
|
-
- sync: add warning for watch in non-Send futures ([#4741])
|
740
|
-
- chore: fix typo ([#4798])
|
741
|
-
|
742
|
-
### Unstable
|
743
|
-
|
744
|
-
- joinset: rename `join_one` to `join_next` ([#4755])
|
745
|
-
- rt: unhandled panic config for current thread rt ([#4770])
|
746
|
-
|
747
|
-
[#4677]: https://github.com/tokio-rs/tokio/pull/4677
|
748
|
-
[#4741]: https://github.com/tokio-rs/tokio/pull/4741
|
749
|
-
[#4755]: https://github.com/tokio-rs/tokio/pull/4755
|
750
|
-
[#4758]: https://github.com/tokio-rs/tokio/pull/4758
|
751
|
-
[#4762]: https://github.com/tokio-rs/tokio/pull/4762
|
752
|
-
[#4764]: https://github.com/tokio-rs/tokio/pull/4764
|
753
|
-
[#4766]: https://github.com/tokio-rs/tokio/pull/4766
|
754
|
-
[#4767]: https://github.com/tokio-rs/tokio/pull/4767
|
755
|
-
[#4769]: https://github.com/tokio-rs/tokio/pull/4769
|
756
|
-
[#4770]: https://github.com/tokio-rs/tokio/pull/4770
|
757
|
-
[#4772]: https://github.com/tokio-rs/tokio/pull/4772
|
758
|
-
[#4777]: https://github.com/tokio-rs/tokio/pull/4777
|
759
|
-
[#4791]: https://github.com/tokio-rs/tokio/pull/4791
|
760
|
-
[#4793]: https://github.com/tokio-rs/tokio/pull/4793
|
761
|
-
[#4795]: https://github.com/tokio-rs/tokio/pull/4795
|
762
|
-
[#4798]: https://github.com/tokio-rs/tokio/pull/4798
|
763
|
-
[#4806]: https://github.com/tokio-rs/tokio/pull/4806
|
764
|
-
[#4808]: https://github.com/tokio-rs/tokio/pull/4808
|
765
|
-
|
766
|
-
# 1.19.2 (June 6, 2022)
|
767
|
-
|
768
|
-
This release fixes another bug in `Notified::enable`. ([#4751])
|
769
|
-
|
770
|
-
[#4751]: https://github.com/tokio-rs/tokio/pull/4751
|
771
|
-
|
772
|
-
# 1.19.1 (June 5, 2022)
|
773
|
-
|
774
|
-
This release fixes a bug in `Notified::enable`. ([#4747])
|
775
|
-
|
776
|
-
[#4747]: https://github.com/tokio-rs/tokio/pull/4747
|
777
|
-
|
778
|
-
# 1.19.0 (June 3, 2022)
|
779
|
-
|
780
|
-
### Added
|
781
|
-
|
782
|
-
- runtime: add `is_finished` method for `JoinHandle` and `AbortHandle` ([#4709])
|
783
|
-
- runtime: make global queue and event polling intervals configurable ([#4671])
|
784
|
-
- sync: add `Notified::enable` ([#4705])
|
785
|
-
- sync: add `watch::Sender::send_if_modified` ([#4591])
|
786
|
-
- sync: add resubscribe method to broadcast::Receiver ([#4607])
|
787
|
-
- net: add `take_error` to `TcpSocket` and `TcpStream` ([#4739])
|
788
|
-
|
789
|
-
### Changed
|
790
|
-
|
791
|
-
- io: refactor out usage of Weak in the io handle ([#4656])
|
792
|
-
|
793
|
-
### Fixed
|
794
|
-
|
795
|
-
- macros: avoid starvation in `join!` and `try_join!` ([#4624])
|
796
|
-
|
797
|
-
### Documented
|
798
|
-
|
799
|
-
- runtime: clarify semantics of tasks outliving `block_on` ([#4729])
|
800
|
-
- time: fix example for `MissedTickBehavior::Burst` ([#4713])
|
801
|
-
|
802
|
-
### Unstable
|
803
|
-
|
804
|
-
- metrics: correctly update atomics in `IoDriverMetrics` ([#4725])
|
805
|
-
- metrics: fix compilation with unstable, process, and rt, but without net ([#4682])
|
806
|
-
- task: add `#[track_caller]` to `JoinSet`/`JoinMap` ([#4697])
|
807
|
-
- task: add `Builder::{spawn_on, spawn_local_on, spawn_blocking_on}` ([#4683])
|
808
|
-
- task: add `consume_budget` for cooperative scheduling ([#4498])
|
809
|
-
- task: add `join_set::Builder` for configuring `JoinSet` tasks ([#4687])
|
810
|
-
- task: update return value of `JoinSet::join_one` ([#4726])
|
811
|
-
|
812
|
-
[#4498]: https://github.com/tokio-rs/tokio/pull/4498
|
813
|
-
[#4591]: https://github.com/tokio-rs/tokio/pull/4591
|
814
|
-
[#4607]: https://github.com/tokio-rs/tokio/pull/4607
|
815
|
-
[#4624]: https://github.com/tokio-rs/tokio/pull/4624
|
816
|
-
[#4656]: https://github.com/tokio-rs/tokio/pull/4656
|
817
|
-
[#4671]: https://github.com/tokio-rs/tokio/pull/4671
|
818
|
-
[#4682]: https://github.com/tokio-rs/tokio/pull/4682
|
819
|
-
[#4683]: https://github.com/tokio-rs/tokio/pull/4683
|
820
|
-
[#4687]: https://github.com/tokio-rs/tokio/pull/4687
|
821
|
-
[#4697]: https://github.com/tokio-rs/tokio/pull/4697
|
822
|
-
[#4705]: https://github.com/tokio-rs/tokio/pull/4705
|
823
|
-
[#4709]: https://github.com/tokio-rs/tokio/pull/4709
|
824
|
-
[#4713]: https://github.com/tokio-rs/tokio/pull/4713
|
825
|
-
[#4725]: https://github.com/tokio-rs/tokio/pull/4725
|
826
|
-
[#4726]: https://github.com/tokio-rs/tokio/pull/4726
|
827
|
-
[#4729]: https://github.com/tokio-rs/tokio/pull/4729
|
828
|
-
[#4739]: https://github.com/tokio-rs/tokio/pull/4739
|
829
|
-
|
830
|
-
# 1.18.6 (May 28, 2023)
|
831
|
-
|
832
|
-
### Fixed
|
833
|
-
|
834
|
-
- deps: disable default features for mio ([#5728])
|
835
|
-
|
836
|
-
[#5728]: https://github.com/tokio-rs/tokio/pull/5728
|
837
|
-
|
838
|
-
# 1.18.5 (January 17, 2023)
|
839
|
-
|
840
|
-
### Fixed
|
841
|
-
|
842
|
-
- io: fix unsoundness in `ReadHalf::unsplit` ([#5375])
|
843
|
-
|
844
|
-
[#5375]: https://github.com/tokio-rs/tokio/pull/5375
|
845
|
-
|
846
|
-
# 1.18.4 (January 3, 2022)
|
847
|
-
|
848
|
-
### Fixed
|
849
|
-
|
850
|
-
- net: fix Windows named pipe server builder to maintain option when toggling
|
851
|
-
pipe mode ([#5336]).
|
852
|
-
|
853
|
-
[#5336]: https://github.com/tokio-rs/tokio/pull/5336
|
854
|
-
|
855
|
-
# 1.18.3 (September 27, 2022)
|
856
|
-
|
857
|
-
This release removes the dependency on the `once_cell` crate to restore the MSRV
|
858
|
-
of the 1.18.x LTS release. ([#5048])
|
859
|
-
|
860
|
-
[#5048]: https://github.com/tokio-rs/tokio/pull/5048
|
861
|
-
|
862
|
-
# 1.18.2 (May 5, 2022)
|
863
|
-
|
864
|
-
Add missing features for the `winapi` dependency. ([#4663])
|
865
|
-
|
866
|
-
[#4663]: https://github.com/tokio-rs/tokio/pull/4663
|
867
|
-
|
868
|
-
# 1.18.1 (May 2, 2022)
|
869
|
-
|
870
|
-
The 1.18.0 release broke the build for targets without 64-bit atomics when
|
871
|
-
building with `tokio_unstable`. This release fixes that. ([#4649])
|
872
|
-
|
873
|
-
[#4649]: https://github.com/tokio-rs/tokio/pull/4649
|
874
|
-
|
875
|
-
# 1.18.0 (April 27, 2022)
|
876
|
-
|
877
|
-
This release adds a number of new APIs in `tokio::net`, `tokio::signal`, and
|
878
|
-
`tokio::sync`. In addition, it adds new unstable APIs to `tokio::task` (`Id`s
|
879
|
-
for uniquely identifying a task, and `AbortHandle` for remotely cancelling a
|
880
|
-
task), as well as a number of bugfixes.
|
881
|
-
|
882
|
-
### Fixed
|
883
|
-
|
884
|
-
- blocking: add missing `#[track_caller]` for `spawn_blocking` ([#4616])
|
885
|
-
- macros: fix `select` macro to process 64 branches ([#4519])
|
886
|
-
- net: fix `try_io` methods not calling Mio's `try_io` internally ([#4582])
|
887
|
-
- runtime: recover when OS fails to spawn a new thread ([#4485])
|
888
|
-
|
889
|
-
### Added
|
890
|
-
|
891
|
-
- net: add `UdpSocket::peer_addr` ([#4611])
|
892
|
-
- net: add `try_read_buf` method for named pipes ([#4626])
|
893
|
-
- signal: add `SignalKind` `Hash`/`Eq` impls and `c_int` conversion ([#4540])
|
894
|
-
- signal: add support for signals up to `SIGRTMAX` ([#4555])
|
895
|
-
- sync: add `watch::Sender::send_modify` method ([#4310])
|
896
|
-
- sync: add `broadcast::Receiver::len` method ([#4542])
|
897
|
-
- sync: add `watch::Receiver::same_channel` method ([#4581])
|
898
|
-
- sync: implement `Clone` for `RecvError` types ([#4560])
|
899
|
-
|
900
|
-
### Changed
|
901
|
-
|
902
|
-
- update `mio` to 0.8.1 ([#4582])
|
903
|
-
- macros: rename `tokio::select!`'s internal `util` module ([#4543])
|
904
|
-
- runtime: use `Vec::with_capacity` when building runtime ([#4553])
|
905
|
-
|
906
|
-
### Documented
|
907
|
-
|
908
|
-
- improve docs for `tokio_unstable` ([#4524])
|
909
|
-
- runtime: include more documentation for thread_pool/worker ([#4511])
|
910
|
-
- runtime: update `Handle::current`'s docs to mention `EnterGuard` ([#4567])
|
911
|
-
- time: clarify platform specific timer resolution ([#4474])
|
912
|
-
- signal: document that `Signal::recv` is cancel-safe ([#4634])
|
913
|
-
- sync: `UnboundedReceiver` close docs ([#4548])
|
914
|
-
|
915
|
-
### Unstable
|
916
|
-
|
917
|
-
The following changes only apply when building with `--cfg tokio_unstable`:
|
918
|
-
|
919
|
-
- task: add `task::Id` type ([#4630])
|
920
|
-
- task: add `AbortHandle` type for cancelling tasks in a `JoinSet` ([#4530],
|
921
|
-
[#4640])
|
922
|
-
- task: fix missing `doc(cfg(...))` attributes for `JoinSet` ([#4531])
|
923
|
-
- task: fix broken link in `AbortHandle` RustDoc ([#4545])
|
924
|
-
- metrics: add initial IO driver metrics ([#4507])
|
925
|
-
|
926
|
-
|
927
|
-
[#4616]: https://github.com/tokio-rs/tokio/pull/4616
|
928
|
-
[#4519]: https://github.com/tokio-rs/tokio/pull/4519
|
929
|
-
[#4582]: https://github.com/tokio-rs/tokio/pull/4582
|
930
|
-
[#4485]: https://github.com/tokio-rs/tokio/pull/4485
|
931
|
-
[#4613]: https://github.com/tokio-rs/tokio/pull/4613
|
932
|
-
[#4611]: https://github.com/tokio-rs/tokio/pull/4611
|
933
|
-
[#4626]: https://github.com/tokio-rs/tokio/pull/4626
|
934
|
-
[#4540]: https://github.com/tokio-rs/tokio/pull/4540
|
935
|
-
[#4555]: https://github.com/tokio-rs/tokio/pull/4555
|
936
|
-
[#4310]: https://github.com/tokio-rs/tokio/pull/4310
|
937
|
-
[#4542]: https://github.com/tokio-rs/tokio/pull/4542
|
938
|
-
[#4581]: https://github.com/tokio-rs/tokio/pull/4581
|
939
|
-
[#4560]: https://github.com/tokio-rs/tokio/pull/4560
|
940
|
-
[#4631]: https://github.com/tokio-rs/tokio/pull/4631
|
941
|
-
[#4582]: https://github.com/tokio-rs/tokio/pull/4582
|
942
|
-
[#4543]: https://github.com/tokio-rs/tokio/pull/4543
|
943
|
-
[#4553]: https://github.com/tokio-rs/tokio/pull/4553
|
944
|
-
[#4524]: https://github.com/tokio-rs/tokio/pull/4524
|
945
|
-
[#4511]: https://github.com/tokio-rs/tokio/pull/4511
|
946
|
-
[#4567]: https://github.com/tokio-rs/tokio/pull/4567
|
947
|
-
[#4474]: https://github.com/tokio-rs/tokio/pull/4474
|
948
|
-
[#4634]: https://github.com/tokio-rs/tokio/pull/4634
|
949
|
-
[#4548]: https://github.com/tokio-rs/tokio/pull/4548
|
950
|
-
[#4630]: https://github.com/tokio-rs/tokio/pull/4630
|
951
|
-
[#4530]: https://github.com/tokio-rs/tokio/pull/4530
|
952
|
-
[#4640]: https://github.com/tokio-rs/tokio/pull/4640
|
953
|
-
[#4531]: https://github.com/tokio-rs/tokio/pull/4531
|
954
|
-
[#4545]: https://github.com/tokio-rs/tokio/pull/4545
|
955
|
-
[#4507]: https://github.com/tokio-rs/tokio/pull/4507
|
956
|
-
|
957
|
-
# 1.17.0 (February 16, 2022)
|
958
|
-
|
959
|
-
This release updates the minimum supported Rust version (MSRV) to 1.49, the
|
960
|
-
`mio` dependency to v0.8, and the (optional) `parking_lot` dependency to v0.12.
|
961
|
-
Additionally, it contains several bug fixes, as well as internal refactoring and
|
962
|
-
performance improvements.
|
963
|
-
|
964
|
-
### Fixed
|
965
|
-
|
966
|
-
- time: prevent panicking in `sleep` with large durations ([#4495])
|
967
|
-
- time: eliminate potential panics in `Instant` arithmetic on platforms where
|
968
|
-
`Instant::now` is not monotonic ([#4461])
|
969
|
-
- io: fix `DuplexStream` not participating in cooperative yielding ([#4478])
|
970
|
-
- rt: fix potential double panic when dropping a `JoinHandle` ([#4430])
|
971
|
-
|
972
|
-
### Changed
|
973
|
-
|
974
|
-
- update minimum supported Rust version to 1.49 ([#4457])
|
975
|
-
- update `parking_lot` dependency to v0.12.0 ([#4459])
|
976
|
-
- update `mio` dependency to v0.8 ([#4449])
|
977
|
-
- rt: remove an unnecessary lock in the blocking pool ([#4436])
|
978
|
-
- rt: remove an unnecessary enum in the basic scheduler ([#4462])
|
979
|
-
- time: use bit manipulation instead of modulo to improve performance ([#4480])
|
980
|
-
- net: use `std::future::Ready` instead of our own `Ready` future ([#4271])
|
981
|
-
- replace deprecated `atomic::spin_loop_hint` with `hint::spin_loop` ([#4491])
|
982
|
-
- fix miri failures in intrusive linked lists ([#4397])
|
983
|
-
|
984
|
-
### Documented
|
985
|
-
|
986
|
-
- io: add an example for `tokio::process::ChildStdin` ([#4479])
|
987
|
-
|
988
|
-
### Unstable
|
989
|
-
|
990
|
-
The following changes only apply when building with `--cfg tokio_unstable`:
|
991
|
-
|
992
|
-
- task: fix missing location information in `tracing` spans generated by
|
993
|
-
`spawn_local` ([#4483])
|
994
|
-
- task: add `JoinSet` for managing sets of tasks ([#4335])
|
995
|
-
- metrics: fix compilation error on MIPS ([#4475])
|
996
|
-
- metrics: fix compilation error on arm32v7 ([#4453])
|
997
|
-
|
998
|
-
[#4495]: https://github.com/tokio-rs/tokio/pull/4495
|
999
|
-
[#4461]: https://github.com/tokio-rs/tokio/pull/4461
|
1000
|
-
[#4478]: https://github.com/tokio-rs/tokio/pull/4478
|
1001
|
-
[#4430]: https://github.com/tokio-rs/tokio/pull/4430
|
1002
|
-
[#4457]: https://github.com/tokio-rs/tokio/pull/4457
|
1003
|
-
[#4459]: https://github.com/tokio-rs/tokio/pull/4459
|
1004
|
-
[#4449]: https://github.com/tokio-rs/tokio/pull/4449
|
1005
|
-
[#4462]: https://github.com/tokio-rs/tokio/pull/4462
|
1006
|
-
[#4436]: https://github.com/tokio-rs/tokio/pull/4436
|
1007
|
-
[#4480]: https://github.com/tokio-rs/tokio/pull/4480
|
1008
|
-
[#4271]: https://github.com/tokio-rs/tokio/pull/4271
|
1009
|
-
[#4491]: https://github.com/tokio-rs/tokio/pull/4491
|
1010
|
-
[#4397]: https://github.com/tokio-rs/tokio/pull/4397
|
1011
|
-
[#4479]: https://github.com/tokio-rs/tokio/pull/4479
|
1012
|
-
[#4483]: https://github.com/tokio-rs/tokio/pull/4483
|
1013
|
-
[#4335]: https://github.com/tokio-rs/tokio/pull/4335
|
1014
|
-
[#4475]: https://github.com/tokio-rs/tokio/pull/4475
|
1015
|
-
[#4453]: https://github.com/tokio-rs/tokio/pull/4453
|
1016
|
-
|
1017
|
-
# 1.16.1 (January 28, 2022)
|
1018
|
-
|
1019
|
-
This release fixes a bug in [#4428] with the change [#4437].
|
1020
|
-
|
1021
|
-
[#4428]: https://github.com/tokio-rs/tokio/pull/4428
|
1022
|
-
[#4437]: https://github.com/tokio-rs/tokio/pull/4437
|
1023
|
-
|
1024
|
-
# 1.16.0 (January 27, 2022)
|
1025
|
-
|
1026
|
-
Fixes a soundness bug in `io::Take` ([#4428]). The unsoundness is exposed when
|
1027
|
-
leaking memory in the given `AsyncRead` implementation and then overwriting the
|
1028
|
-
supplied buffer:
|
1029
|
-
|
1030
|
-
```rust
|
1031
|
-
impl AsyncRead for Buggy {
|
1032
|
-
fn poll_read(
|
1033
|
-
self: Pin<&mut Self>,
|
1034
|
-
cx: &mut Context<'_>,
|
1035
|
-
buf: &mut ReadBuf<'_>
|
1036
|
-
) -> Poll<Result<()>> {
|
1037
|
-
let new_buf = vec![0; 5].leak();
|
1038
|
-
*buf = ReadBuf::new(new_buf);
|
1039
|
-
buf.put_slice(b"hello");
|
1040
|
-
Poll::Ready(Ok(()))
|
1041
|
-
}
|
1042
|
-
}
|
1043
|
-
```
|
1044
|
-
|
1045
|
-
Also, this release includes improvements to the multi-threaded scheduler that
|
1046
|
-
can increase throughput by up to 20% in some cases ([#4383]).
|
1047
|
-
|
1048
|
-
### Fixed
|
1049
|
-
|
1050
|
-
- io: **soundness** don't expose uninitialized memory when using `io::Take` in edge case ([#4428])
|
1051
|
-
- fs: ensure `File::write` results in a `write` syscall when the runtime shuts down ([#4316])
|
1052
|
-
- process: drop pipe after child exits in `wait_with_output` ([#4315])
|
1053
|
-
- rt: improve error message when spawning a thread fails ([#4398])
|
1054
|
-
- rt: reduce false-positive thread wakups in the multi-threaded scheduler ([#4383])
|
1055
|
-
- sync: don't inherit `Send` from `parking_lot::*Guard` ([#4359])
|
1056
|
-
|
1057
|
-
### Added
|
1058
|
-
|
1059
|
-
- net: `TcpSocket::linger()` and `set_linger()` ([#4324])
|
1060
|
-
- net: impl `UnwindSafe` for socket types ([#4384])
|
1061
|
-
- rt: impl `UnwindSafe` for `JoinHandle` ([#4418])
|
1062
|
-
- sync: `watch::Receiver::has_changed()` ([#4342])
|
1063
|
-
- sync: `oneshot::Receiver::blocking_recv()` ([#4334])
|
1064
|
-
- sync: `RwLock` blocking operations ([#4425])
|
1065
|
-
|
1066
|
-
### Unstable
|
1067
|
-
|
1068
|
-
The following changes only apply when building with `--cfg tokio_unstable`
|
1069
|
-
|
1070
|
-
- rt: **breaking change** overhaul runtime metrics API ([#4373])
|
1071
|
-
|
1072
|
-
[#4428]: https://github.com/tokio-rs/tokio/pull/4428
|
1073
|
-
[#4316]: https://github.com/tokio-rs/tokio/pull/4316
|
1074
|
-
[#4315]: https://github.com/tokio-rs/tokio/pull/4315
|
1075
|
-
[#4398]: https://github.com/tokio-rs/tokio/pull/4398
|
1076
|
-
[#4383]: https://github.com/tokio-rs/tokio/pull/4383
|
1077
|
-
[#4359]: https://github.com/tokio-rs/tokio/pull/4359
|
1078
|
-
[#4324]: https://github.com/tokio-rs/tokio/pull/4324
|
1079
|
-
[#4384]: https://github.com/tokio-rs/tokio/pull/4384
|
1080
|
-
[#4418]: https://github.com/tokio-rs/tokio/pull/4418
|
1081
|
-
[#4342]: https://github.com/tokio-rs/tokio/pull/4342
|
1082
|
-
[#4334]: https://github.com/tokio-rs/tokio/pull/4334
|
1083
|
-
[#4425]: https://github.com/tokio-rs/tokio/pull/4425
|
1084
|
-
[#4373]: https://github.com/tokio-rs/tokio/pull/4373
|
1085
|
-
|
1086
|
-
# 1.15.0 (December 15, 2021)
|
1087
|
-
|
1088
|
-
### Fixed
|
1089
|
-
|
1090
|
-
- io: add cooperative yielding support to `io::empty()` ([#4300])
|
1091
|
-
- time: make timeout robust against budget-depleting tasks ([#4314])
|
1092
|
-
|
1093
|
-
### Changed
|
1094
|
-
|
1095
|
-
- update minimum supported Rust version to 1.46.
|
1096
|
-
|
1097
|
-
### Added
|
1098
|
-
|
1099
|
-
- time: add `Interval::reset()` ([#4248])
|
1100
|
-
- io: add explicit lifetimes to `AsyncFdReadyGuard` ([#4267])
|
1101
|
-
- process: add `Command::as_std()` ([#4295])
|
1102
|
-
|
1103
|
-
### Added (unstable)
|
1104
|
-
|
1105
|
-
- tracing: instrument `tokio::sync` types ([#4302])
|
1106
|
-
|
1107
|
-
[#4302]: https://github.com/tokio-rs/tokio/pull/4302
|
1108
|
-
[#4300]: https://github.com/tokio-rs/tokio/pull/4300
|
1109
|
-
[#4295]: https://github.com/tokio-rs/tokio/pull/4295
|
1110
|
-
[#4267]: https://github.com/tokio-rs/tokio/pull/4267
|
1111
|
-
[#4248]: https://github.com/tokio-rs/tokio/pull/4248
|
1112
|
-
[#4314]: https://github.com/tokio-rs/tokio/pull/4314
|
1113
|
-
|
1114
|
-
# 1.14.0 (November 15, 2021)
|
1115
|
-
|
1116
|
-
### Fixed
|
1117
|
-
|
1118
|
-
- macros: fix compiler errors when using `mut` patterns in `select!` ([#4211])
|
1119
|
-
- sync: fix a data race between `oneshot::Sender::send` and awaiting a
|
1120
|
-
`oneshot::Receiver` when the oneshot has been closed ([#4226])
|
1121
|
-
- sync: make `AtomicWaker` panic safe ([#3689])
|
1122
|
-
- runtime: fix basic scheduler dropping tasks outside a runtime context
|
1123
|
-
([#4213])
|
1124
|
-
|
1125
|
-
### Added
|
1126
|
-
|
1127
|
-
- stats: add `RuntimeStats::busy_duration_total` ([#4179], [#4223])
|
1128
|
-
|
1129
|
-
### Changed
|
1130
|
-
|
1131
|
-
- io: updated `copy` buffer size to match `std::io::copy` ([#4209])
|
1132
|
-
|
1133
|
-
### Documented
|
1134
|
-
|
1135
|
-
- io: rename buffer to file in doc-test ([#4230])
|
1136
|
-
- sync: fix Notify example ([#4212])
|
1137
|
-
|
1138
|
-
[#4211]: https://github.com/tokio-rs/tokio/pull/4211
|
1139
|
-
[#4226]: https://github.com/tokio-rs/tokio/pull/4226
|
1140
|
-
[#3689]: https://github.com/tokio-rs/tokio/pull/3689
|
1141
|
-
[#4213]: https://github.com/tokio-rs/tokio/pull/4213
|
1142
|
-
[#4179]: https://github.com/tokio-rs/tokio/pull/4179
|
1143
|
-
[#4223]: https://github.com/tokio-rs/tokio/pull/4223
|
1144
|
-
[#4209]: https://github.com/tokio-rs/tokio/pull/4209
|
1145
|
-
[#4230]: https://github.com/tokio-rs/tokio/pull/4230
|
1146
|
-
[#4212]: https://github.com/tokio-rs/tokio/pull/4212
|
1147
|
-
|
1148
|
-
# 1.13.1 (November 15, 2021)
|
1149
|
-
|
1150
|
-
### Fixed
|
1151
|
-
|
1152
|
-
- sync: fix a data race between `oneshot::Sender::send` and awaiting a
|
1153
|
-
`oneshot::Receiver` when the oneshot has been closed ([#4226])
|
1154
|
-
|
1155
|
-
[#4226]: https://github.com/tokio-rs/tokio/pull/4226
|
1156
|
-
|
1157
|
-
# 1.13.0 (October 29, 2021)
|
1158
|
-
|
1159
|
-
### Fixed
|
1160
|
-
|
1161
|
-
- sync: fix `Notify` to clone the waker before locking its waiter list ([#4129])
|
1162
|
-
- tokio: add riscv32 to non atomic64 architectures ([#4185])
|
1163
|
-
|
1164
|
-
### Added
|
1165
|
-
|
1166
|
-
- net: add `poll_{recv,send}_ready` methods to `udp` and `uds_datagram` ([#4131])
|
1167
|
-
- net: add `try_*`, `readable`, `writable`, `ready`, and `peer_addr` methods to split halves ([#4120])
|
1168
|
-
- sync: add `blocking_lock` to `Mutex` ([#4130])
|
1169
|
-
- sync: add `watch::Sender::send_replace` ([#3962], [#4195])
|
1170
|
-
- sync: expand `Debug` for `Mutex<T>` impl to unsized `T` ([#4134])
|
1171
|
-
- tracing: instrument time::Sleep ([#4072])
|
1172
|
-
- tracing: use structured location fields for spawned tasks ([#4128])
|
1173
|
-
|
1174
|
-
### Changed
|
1175
|
-
|
1176
|
-
- io: add assert in `copy_bidirectional` that `poll_write` is sensible ([#4125])
|
1177
|
-
- macros: use qualified syntax when polling in `select!` ([#4192])
|
1178
|
-
- runtime: handle `block_on` wakeups better ([#4157])
|
1179
|
-
- task: allocate callback on heap immediately in debug mode ([#4203])
|
1180
|
-
- tokio: assert platform-minimum requirements at build time ([#3797])
|
1181
|
-
|
1182
|
-
### Documented
|
1183
|
-
|
1184
|
-
- docs: conversion of doc comments to indicative mood ([#4174])
|
1185
|
-
- docs: add returning on the first error example for `try_join!` ([#4133])
|
1186
|
-
- docs: fixing broken links in `tokio/src/lib.rs` ([#4132])
|
1187
|
-
- signal: add example with background listener ([#4171])
|
1188
|
-
- sync: add more oneshot examples ([#4153])
|
1189
|
-
- time: document `Interval::tick` cancel safety ([#4152])
|
1190
|
-
|
1191
|
-
[#3797]: https://github.com/tokio-rs/tokio/pull/3797
|
1192
|
-
[#3962]: https://github.com/tokio-rs/tokio/pull/3962
|
1193
|
-
[#4072]: https://github.com/tokio-rs/tokio/pull/4072
|
1194
|
-
[#4120]: https://github.com/tokio-rs/tokio/pull/4120
|
1195
|
-
[#4125]: https://github.com/tokio-rs/tokio/pull/4125
|
1196
|
-
[#4128]: https://github.com/tokio-rs/tokio/pull/4128
|
1197
|
-
[#4129]: https://github.com/tokio-rs/tokio/pull/4129
|
1198
|
-
[#4130]: https://github.com/tokio-rs/tokio/pull/4130
|
1199
|
-
[#4131]: https://github.com/tokio-rs/tokio/pull/4131
|
1200
|
-
[#4132]: https://github.com/tokio-rs/tokio/pull/4132
|
1201
|
-
[#4133]: https://github.com/tokio-rs/tokio/pull/4133
|
1202
|
-
[#4134]: https://github.com/tokio-rs/tokio/pull/4134
|
1203
|
-
[#4152]: https://github.com/tokio-rs/tokio/pull/4152
|
1204
|
-
[#4153]: https://github.com/tokio-rs/tokio/pull/4153
|
1205
|
-
[#4157]: https://github.com/tokio-rs/tokio/pull/4157
|
1206
|
-
[#4171]: https://github.com/tokio-rs/tokio/pull/4171
|
1207
|
-
[#4174]: https://github.com/tokio-rs/tokio/pull/4174
|
1208
|
-
[#4185]: https://github.com/tokio-rs/tokio/pull/4185
|
1209
|
-
[#4192]: https://github.com/tokio-rs/tokio/pull/4192
|
1210
|
-
[#4195]: https://github.com/tokio-rs/tokio/pull/4195
|
1211
|
-
[#4203]: https://github.com/tokio-rs/tokio/pull/4203
|
1212
|
-
|
1213
|
-
# 1.12.0 (September 21, 2021)
|
1214
|
-
|
1215
|
-
### Fixed
|
1216
|
-
|
1217
|
-
- mpsc: ensure `try_reserve` error is consistent with `try_send` ([#4119])
|
1218
|
-
- mpsc: use `spin_loop_hint` instead of `yield_now` ([#4115])
|
1219
|
-
- sync: make `SendError` field public ([#4097])
|
1220
|
-
|
1221
|
-
### Added
|
1222
|
-
|
1223
|
-
- io: add POSIX AIO on FreeBSD ([#4054])
|
1224
|
-
- io: add convenience method `AsyncSeekExt::rewind` ([#4107])
|
1225
|
-
- runtime: add tracing span for `block_on` futures ([#4094])
|
1226
|
-
- runtime: callback when a worker parks and unparks ([#4070])
|
1227
|
-
- sync: implement `try_recv` for mpsc channels ([#4113])
|
1228
|
-
|
1229
|
-
### Documented
|
1230
|
-
|
1231
|
-
- docs: clarify CPU-bound tasks on Tokio ([#4105])
|
1232
|
-
- mpsc: document spurious failures on `poll_recv` ([#4117])
|
1233
|
-
- mpsc: document that `PollSender` impls `Sink` ([#4110])
|
1234
|
-
- task: document non-guarantees of `yield_now` ([#4091])
|
1235
|
-
- time: document paused time details better ([#4061], [#4103])
|
1236
|
-
|
1237
|
-
[#4027]: https://github.com/tokio-rs/tokio/pull/4027
|
1238
|
-
[#4054]: https://github.com/tokio-rs/tokio/pull/4054
|
1239
|
-
[#4061]: https://github.com/tokio-rs/tokio/pull/4061
|
1240
|
-
[#4070]: https://github.com/tokio-rs/tokio/pull/4070
|
1241
|
-
[#4091]: https://github.com/tokio-rs/tokio/pull/4091
|
1242
|
-
[#4094]: https://github.com/tokio-rs/tokio/pull/4094
|
1243
|
-
[#4097]: https://github.com/tokio-rs/tokio/pull/4097
|
1244
|
-
[#4103]: https://github.com/tokio-rs/tokio/pull/4103
|
1245
|
-
[#4105]: https://github.com/tokio-rs/tokio/pull/4105
|
1246
|
-
[#4107]: https://github.com/tokio-rs/tokio/pull/4107
|
1247
|
-
[#4110]: https://github.com/tokio-rs/tokio/pull/4110
|
1248
|
-
[#4113]: https://github.com/tokio-rs/tokio/pull/4113
|
1249
|
-
[#4115]: https://github.com/tokio-rs/tokio/pull/4115
|
1250
|
-
[#4117]: https://github.com/tokio-rs/tokio/pull/4117
|
1251
|
-
[#4119]: https://github.com/tokio-rs/tokio/pull/4119
|
1252
|
-
|
1253
|
-
# 1.11.0 (August 31, 2021)
|
1254
|
-
|
1255
|
-
### Fixed
|
1256
|
-
|
1257
|
-
- time: don't panic when Instant is not monotonic ([#4044])
|
1258
|
-
- io: fix panic in `fill_buf` by not calling `poll_fill_buf` twice ([#4084])
|
1259
|
-
|
1260
|
-
### Added
|
1261
|
-
|
1262
|
-
- watch: add `watch::Sender::subscribe` ([#3800])
|
1263
|
-
- process: add `from_std` to `ChildStd*` ([#4045])
|
1264
|
-
- stats: initial work on runtime stats ([#4043])
|
1265
|
-
|
1266
|
-
### Changed
|
1267
|
-
|
1268
|
-
- tracing: change span naming to new console convention ([#4042])
|
1269
|
-
- io: speed-up waking by using uninitialized array ([#4055], [#4071], [#4075])
|
1270
|
-
|
1271
|
-
### Documented
|
1272
|
-
|
1273
|
-
- time: make Sleep examples easier to find ([#4040])
|
1274
|
-
|
1275
|
-
[#3800]: https://github.com/tokio-rs/tokio/pull/3800
|
1276
|
-
[#4040]: https://github.com/tokio-rs/tokio/pull/4040
|
1277
|
-
[#4042]: https://github.com/tokio-rs/tokio/pull/4042
|
1278
|
-
[#4043]: https://github.com/tokio-rs/tokio/pull/4043
|
1279
|
-
[#4044]: https://github.com/tokio-rs/tokio/pull/4044
|
1280
|
-
[#4045]: https://github.com/tokio-rs/tokio/pull/4045
|
1281
|
-
[#4055]: https://github.com/tokio-rs/tokio/pull/4055
|
1282
|
-
[#4071]: https://github.com/tokio-rs/tokio/pull/4071
|
1283
|
-
[#4075]: https://github.com/tokio-rs/tokio/pull/4075
|
1284
|
-
[#4084]: https://github.com/tokio-rs/tokio/pull/4084
|
1285
|
-
|
1286
|
-
# 1.10.1 (August 24, 2021)
|
1287
|
-
|
1288
|
-
### Fixed
|
1289
|
-
|
1290
|
-
- runtime: fix leak in UnownedTask ([#4063])
|
1291
|
-
|
1292
|
-
[#4063]: https://github.com/tokio-rs/tokio/pull/4063
|
1293
|
-
|
1294
|
-
# 1.10.0 (August 12, 2021)
|
1295
|
-
|
1296
|
-
### Added
|
1297
|
-
|
1298
|
-
- io: add `(read|write)_f(32|64)[_le]` methods ([#4022])
|
1299
|
-
- io: add `fill_buf` and `consume` to `AsyncBufReadExt` ([#3991])
|
1300
|
-
- process: add `Child::raw_handle()` on windows ([#3998])
|
1301
|
-
|
1302
|
-
### Fixed
|
1303
|
-
|
1304
|
-
- doc: fix non-doc builds with `--cfg docsrs` ([#4020])
|
1305
|
-
- io: flush eagerly in `io::copy` ([#4001])
|
1306
|
-
- runtime: a debug assert was sometimes triggered during shutdown ([#4005])
|
1307
|
-
- sync: use `spin_loop_hint` instead of `yield_now` in mpsc ([#4037])
|
1308
|
-
- tokio: the test-util feature depends on rt, sync, and time ([#4036])
|
1309
|
-
|
1310
|
-
### Changes
|
1311
|
-
|
1312
|
-
- runtime: reorganize parts of the runtime ([#3979], [#4005])
|
1313
|
-
- signal: make windows docs for signal module show up on unix builds ([#3770])
|
1314
|
-
- task: quickly send task to heap on debug mode ([#4009])
|
1315
|
-
|
1316
|
-
### Documented
|
1317
|
-
|
1318
|
-
- io: document cancellation safety of `AsyncBufReadExt` ([#3997])
|
1319
|
-
- sync: document when `watch::send` fails ([#4021])
|
1320
|
-
|
1321
|
-
[#3770]: https://github.com/tokio-rs/tokio/pull/3770
|
1322
|
-
[#3979]: https://github.com/tokio-rs/tokio/pull/3979
|
1323
|
-
[#3991]: https://github.com/tokio-rs/tokio/pull/3991
|
1324
|
-
[#3997]: https://github.com/tokio-rs/tokio/pull/3997
|
1325
|
-
[#3998]: https://github.com/tokio-rs/tokio/pull/3998
|
1326
|
-
[#4001]: https://github.com/tokio-rs/tokio/pull/4001
|
1327
|
-
[#4005]: https://github.com/tokio-rs/tokio/pull/4005
|
1328
|
-
[#4009]: https://github.com/tokio-rs/tokio/pull/4009
|
1329
|
-
[#4020]: https://github.com/tokio-rs/tokio/pull/4020
|
1330
|
-
[#4021]: https://github.com/tokio-rs/tokio/pull/4021
|
1331
|
-
[#4022]: https://github.com/tokio-rs/tokio/pull/4022
|
1332
|
-
[#4036]: https://github.com/tokio-rs/tokio/pull/4036
|
1333
|
-
[#4037]: https://github.com/tokio-rs/tokio/pull/4037
|
1334
|
-
|
1335
|
-
# 1.9.0 (July 22, 2021)
|
1336
|
-
|
1337
|
-
### Added
|
1338
|
-
|
1339
|
-
- net: allow customized I/O operations for `TcpStream` ([#3888])
|
1340
|
-
- sync: add getter for the mutex from a guard ([#3928])
|
1341
|
-
- task: expose nameable future for `TaskLocal::scope` ([#3273])
|
1342
|
-
|
1343
|
-
### Fixed
|
1344
|
-
|
1345
|
-
- Fix leak if output of future panics on drop ([#3967])
|
1346
|
-
- Fix leak in `LocalSet` ([#3978])
|
1347
|
-
|
1348
|
-
### Changes
|
1349
|
-
|
1350
|
-
- runtime: reorganize parts of the runtime ([#3909], [#3939], [#3950], [#3955], [#3980])
|
1351
|
-
- sync: clean up `OnceCell` ([#3945])
|
1352
|
-
- task: remove mutex in `JoinError` ([#3959])
|
1353
|
-
|
1354
|
-
[#3273]: https://github.com/tokio-rs/tokio/pull/3273
|
1355
|
-
[#3888]: https://github.com/tokio-rs/tokio/pull/3888
|
1356
|
-
[#3909]: https://github.com/tokio-rs/tokio/pull/3909
|
1357
|
-
[#3928]: https://github.com/tokio-rs/tokio/pull/3928
|
1358
|
-
[#3934]: https://github.com/tokio-rs/tokio/pull/3934
|
1359
|
-
[#3939]: https://github.com/tokio-rs/tokio/pull/3939
|
1360
|
-
[#3945]: https://github.com/tokio-rs/tokio/pull/3945
|
1361
|
-
[#3950]: https://github.com/tokio-rs/tokio/pull/3950
|
1362
|
-
[#3955]: https://github.com/tokio-rs/tokio/pull/3955
|
1363
|
-
[#3959]: https://github.com/tokio-rs/tokio/pull/3959
|
1364
|
-
[#3967]: https://github.com/tokio-rs/tokio/pull/3967
|
1365
|
-
[#3978]: https://github.com/tokio-rs/tokio/pull/3978
|
1366
|
-
[#3980]: https://github.com/tokio-rs/tokio/pull/3980
|
1367
|
-
|
1368
|
-
# 1.8.3 (July 26, 2021)
|
1369
|
-
|
1370
|
-
This release backports two fixes from 1.9.0
|
1371
|
-
|
1372
|
-
### Fixed
|
1373
|
-
|
1374
|
-
- Fix leak if output of future panics on drop ([#3967])
|
1375
|
-
- Fix leak in `LocalSet` ([#3978])
|
1376
|
-
|
1377
|
-
[#3967]: https://github.com/tokio-rs/tokio/pull/3967
|
1378
|
-
[#3978]: https://github.com/tokio-rs/tokio/pull/3978
|
1379
|
-
|
1380
|
-
# 1.8.2 (July 19, 2021)
|
1381
|
-
|
1382
|
-
Fixes a missed edge case from 1.8.1.
|
1383
|
-
|
1384
|
-
### Fixed
|
1385
|
-
|
1386
|
-
- runtime: drop canceled future on next poll (#3965)
|
1387
|
-
|
1388
|
-
# 1.8.1 (July 6, 2021)
|
1389
|
-
|
1390
|
-
Forward ports 1.5.1 fixes.
|
1391
|
-
|
1392
|
-
### Fixed
|
1393
|
-
|
1394
|
-
- runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
|
1395
|
-
|
1396
|
-
[#3934]: https://github.com/tokio-rs/tokio/pull/3934
|
1397
|
-
|
1398
|
-
# 1.8.0 (July 2, 2021)
|
1399
|
-
|
1400
|
-
### Added
|
1401
|
-
|
1402
|
-
- io: add `get_{ref,mut}` methods to `AsyncFdReadyGuard` and `AsyncFdReadyMutGuard` ([#3807])
|
1403
|
-
- io: efficient implementation of vectored writes for `BufWriter` ([#3163])
|
1404
|
-
- net: add ready/try methods to `NamedPipe{Client,Server}` ([#3866], [#3899])
|
1405
|
-
- sync: add `watch::Receiver::borrow_and_update` ([#3813])
|
1406
|
-
- sync: implement `From<T>` for `OnceCell<T>` ([#3877])
|
1407
|
-
- time: allow users to specify Interval behaviour when delayed ([#3721])
|
1408
|
-
|
1409
|
-
### Added (unstable)
|
1410
|
-
|
1411
|
-
- rt: add `tokio::task::Builder` ([#3881])
|
1412
|
-
|
1413
|
-
### Fixed
|
1414
|
-
|
1415
|
-
- net: handle HUP event with `UnixStream` ([#3898])
|
1416
|
-
|
1417
|
-
### Documented
|
1418
|
-
|
1419
|
-
- doc: document cancellation safety ([#3900])
|
1420
|
-
- time: add wait alias to sleep ([#3897])
|
1421
|
-
- time: document auto-advancing behaviour of runtime ([#3763])
|
1422
|
-
|
1423
|
-
[#3163]: https://github.com/tokio-rs/tokio/pull/3163
|
1424
|
-
[#3721]: https://github.com/tokio-rs/tokio/pull/3721
|
1425
|
-
[#3763]: https://github.com/tokio-rs/tokio/pull/3763
|
1426
|
-
[#3807]: https://github.com/tokio-rs/tokio/pull/3807
|
1427
|
-
[#3813]: https://github.com/tokio-rs/tokio/pull/3813
|
1428
|
-
[#3866]: https://github.com/tokio-rs/tokio/pull/3866
|
1429
|
-
[#3877]: https://github.com/tokio-rs/tokio/pull/3877
|
1430
|
-
[#3881]: https://github.com/tokio-rs/tokio/pull/3881
|
1431
|
-
[#3897]: https://github.com/tokio-rs/tokio/pull/3897
|
1432
|
-
[#3898]: https://github.com/tokio-rs/tokio/pull/3898
|
1433
|
-
[#3899]: https://github.com/tokio-rs/tokio/pull/3899
|
1434
|
-
[#3900]: https://github.com/tokio-rs/tokio/pull/3900
|
1435
|
-
|
1436
|
-
# 1.7.2 (July 6, 2021)
|
1437
|
-
|
1438
|
-
Forward ports 1.5.1 fixes.
|
1439
|
-
|
1440
|
-
### Fixed
|
1441
|
-
|
1442
|
-
- runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
|
1443
|
-
|
1444
|
-
[#3934]: https://github.com/tokio-rs/tokio/pull/3934
|
1445
|
-
|
1446
|
-
# 1.7.1 (June 18, 2021)
|
1447
|
-
|
1448
|
-
### Fixed
|
1449
|
-
|
1450
|
-
- runtime: fix early task shutdown during runtime shutdown ([#3870])
|
1451
|
-
|
1452
|
-
[#3870]: https://github.com/tokio-rs/tokio/pull/3870
|
1453
|
-
|
1454
|
-
# 1.7.0 (June 15, 2021)
|
1455
|
-
|
1456
|
-
### Added
|
1457
|
-
|
1458
|
-
- net: add named pipes on windows ([#3760])
|
1459
|
-
- net: add `TcpSocket` from `std::net::TcpStream` conversion ([#3838])
|
1460
|
-
- sync: add `receiver_count` to `watch::Sender` ([#3729])
|
1461
|
-
- sync: export `sync::notify::Notified` future publicly ([#3840])
|
1462
|
-
- tracing: instrument task wakers ([#3836])
|
1463
|
-
|
1464
|
-
### Fixed
|
1465
|
-
|
1466
|
-
- macros: suppress `clippy::default_numeric_fallback` lint in generated code ([#3831])
|
1467
|
-
- runtime: immediately drop new tasks when runtime is shut down ([#3752])
|
1468
|
-
- sync: deprecate unused `mpsc::RecvError` type ([#3833])
|
1469
|
-
|
1470
|
-
### Documented
|
1471
|
-
|
1472
|
-
- io: clarify EOF condition for `AsyncReadExt::read_buf` ([#3850])
|
1473
|
-
- io: clarify limits on return values of `AsyncWrite::poll_write` ([#3820])
|
1474
|
-
- sync: add examples to Semaphore ([#3808])
|
1475
|
-
|
1476
|
-
[#3729]: https://github.com/tokio-rs/tokio/pull/3729
|
1477
|
-
[#3752]: https://github.com/tokio-rs/tokio/pull/3752
|
1478
|
-
[#3760]: https://github.com/tokio-rs/tokio/pull/3760
|
1479
|
-
[#3808]: https://github.com/tokio-rs/tokio/pull/3808
|
1480
|
-
[#3820]: https://github.com/tokio-rs/tokio/pull/3820
|
1481
|
-
[#3831]: https://github.com/tokio-rs/tokio/pull/3831
|
1482
|
-
[#3833]: https://github.com/tokio-rs/tokio/pull/3833
|
1483
|
-
[#3836]: https://github.com/tokio-rs/tokio/pull/3836
|
1484
|
-
[#3838]: https://github.com/tokio-rs/tokio/pull/3838
|
1485
|
-
[#3840]: https://github.com/tokio-rs/tokio/pull/3840
|
1486
|
-
[#3850]: https://github.com/tokio-rs/tokio/pull/3850
|
1487
|
-
|
1488
|
-
# 1.6.3 (July 6, 2021)
|
1489
|
-
|
1490
|
-
Forward ports 1.5.1 fixes.
|
1491
|
-
|
1492
|
-
### Fixed
|
1493
|
-
|
1494
|
-
- runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
|
1495
|
-
|
1496
|
-
[#3934]: https://github.com/tokio-rs/tokio/pull/3934
|
1497
|
-
|
1498
|
-
# 1.6.2 (June 14, 2021)
|
1499
|
-
|
1500
|
-
### Fixes
|
1501
|
-
|
1502
|
-
- test: sub-ms `time:advance` regression introduced in 1.6 ([#3852])
|
1503
|
-
|
1504
|
-
[#3852]: https://github.com/tokio-rs/tokio/pull/3852
|
1505
|
-
|
1506
|
-
# 1.6.1 (May 28, 2021)
|
1507
|
-
|
1508
|
-
This release reverts [#3518] because it doesn't work on some kernels due to
|
1509
|
-
a kernel bug. ([#3803])
|
1510
|
-
|
1511
|
-
[#3518]: https://github.com/tokio-rs/tokio/issues/3518
|
1512
|
-
[#3803]: https://github.com/tokio-rs/tokio/issues/3803
|
1513
|
-
|
1514
|
-
# 1.6.0 (May 14, 2021)
|
1515
|
-
|
1516
|
-
### Added
|
1517
|
-
|
1518
|
-
- fs: try doing a non-blocking read before punting to the threadpool ([#3518])
|
1519
|
-
- io: add `write_all_buf` to `AsyncWriteExt` ([#3737])
|
1520
|
-
- io: implement `AsyncSeek` for `BufReader`, `BufWriter`, and `BufStream` ([#3491])
|
1521
|
-
- net: support non-blocking vectored I/O ([#3761])
|
1522
|
-
- sync: add `mpsc::Sender::{reserve_owned, try_reserve_owned}` ([#3704])
|
1523
|
-
- sync: add a `MutexGuard::map` method that returns a `MappedMutexGuard` ([#2472])
|
1524
|
-
- time: add getter for Interval's period ([#3705])
|
1525
|
-
|
1526
|
-
### Fixed
|
1527
|
-
|
1528
|
-
- io: wake pending writers on `DuplexStream` close ([#3756])
|
1529
|
-
- process: avoid redundant effort to reap orphan processes ([#3743])
|
1530
|
-
- signal: use `std::os::raw::c_int` instead of `libc::c_int` on public API ([#3774])
|
1531
|
-
- sync: preserve permit state in `notify_waiters` ([#3660])
|
1532
|
-
- task: update `JoinHandle` panic message ([#3727])
|
1533
|
-
- time: prevent `time::advance` from going too far ([#3712])
|
1534
|
-
|
1535
|
-
### Documented
|
1536
|
-
|
1537
|
-
- net: hide `net::unix::datagram` module from docs ([#3775])
|
1538
|
-
- process: updated example ([#3748])
|
1539
|
-
- sync: `Barrier` doc should use task, not thread ([#3780])
|
1540
|
-
- task: update documentation on `block_in_place` ([#3753])
|
1541
|
-
|
1542
|
-
[#2472]: https://github.com/tokio-rs/tokio/pull/2472
|
1543
|
-
[#3491]: https://github.com/tokio-rs/tokio/pull/3491
|
1544
|
-
[#3518]: https://github.com/tokio-rs/tokio/pull/3518
|
1545
|
-
[#3660]: https://github.com/tokio-rs/tokio/pull/3660
|
1546
|
-
[#3704]: https://github.com/tokio-rs/tokio/pull/3704
|
1547
|
-
[#3705]: https://github.com/tokio-rs/tokio/pull/3705
|
1548
|
-
[#3712]: https://github.com/tokio-rs/tokio/pull/3712
|
1549
|
-
[#3727]: https://github.com/tokio-rs/tokio/pull/3727
|
1550
|
-
[#3737]: https://github.com/tokio-rs/tokio/pull/3737
|
1551
|
-
[#3743]: https://github.com/tokio-rs/tokio/pull/3743
|
1552
|
-
[#3748]: https://github.com/tokio-rs/tokio/pull/3748
|
1553
|
-
[#3753]: https://github.com/tokio-rs/tokio/pull/3753
|
1554
|
-
[#3756]: https://github.com/tokio-rs/tokio/pull/3756
|
1555
|
-
[#3761]: https://github.com/tokio-rs/tokio/pull/3761
|
1556
|
-
[#3774]: https://github.com/tokio-rs/tokio/pull/3774
|
1557
|
-
[#3775]: https://github.com/tokio-rs/tokio/pull/3775
|
1558
|
-
[#3780]: https://github.com/tokio-rs/tokio/pull/3780
|
1559
|
-
|
1560
|
-
# 1.5.1 (July 6, 2021)
|
1561
|
-
|
1562
|
-
### Fixed
|
1563
|
-
|
1564
|
-
- runtime: remotely abort tasks on `JoinHandle::abort` ([#3934])
|
1565
|
-
|
1566
|
-
[#3934]: https://github.com/tokio-rs/tokio/pull/3934
|
1567
|
-
|
1568
|
-
# 1.5.0 (April 12, 2021)
|
1569
|
-
|
1570
|
-
### Added
|
1571
|
-
|
1572
|
-
- io: add `AsyncSeekExt::stream_position` ([#3650])
|
1573
|
-
- io: add `AsyncWriteExt::write_vectored` ([#3678])
|
1574
|
-
- io: add a `copy_bidirectional` utility ([#3572])
|
1575
|
-
- net: implement `IntoRawFd` for `TcpSocket` ([#3684])
|
1576
|
-
- sync: add `OnceCell` ([#3591])
|
1577
|
-
- sync: add `OwnedRwLockReadGuard` and `OwnedRwLockWriteGuard` ([#3340])
|
1578
|
-
- sync: add `Semaphore::is_closed` ([#3673])
|
1579
|
-
- sync: add `mpsc::Sender::capacity` ([#3690])
|
1580
|
-
- sync: allow configuring `RwLock` max reads ([#3644])
|
1581
|
-
- task: add `sync_scope` for `LocalKey` ([#3612])
|
1582
|
-
|
1583
|
-
### Fixed
|
1584
|
-
|
1585
|
-
- chore: try to avoid `noalias` attributes on intrusive linked list ([#3654])
|
1586
|
-
- rt: fix panic in `JoinHandle::abort()` when called from other threads ([#3672])
|
1587
|
-
- sync: don't panic in `oneshot::try_recv` ([#3674])
|
1588
|
-
- sync: fix notifications getting dropped on receiver drop ([#3652])
|
1589
|
-
- sync: fix `Semaphore` permit overflow calculation ([#3644])
|
1590
|
-
|
1591
|
-
### Documented
|
1592
|
-
|
1593
|
-
- io: clarify requirements of `AsyncFd` ([#3635])
|
1594
|
-
- runtime: fix unclear docs for `{Handle,Runtime}::block_on` ([#3628])
|
1595
|
-
- sync: document that `Semaphore` is fair ([#3693])
|
1596
|
-
- sync: improve doc on blocking mutex ([#3645])
|
1597
|
-
|
1598
|
-
[#3340]: https://github.com/tokio-rs/tokio/pull/3340
|
1599
|
-
[#3572]: https://github.com/tokio-rs/tokio/pull/3572
|
1600
|
-
[#3591]: https://github.com/tokio-rs/tokio/pull/3591
|
1601
|
-
[#3612]: https://github.com/tokio-rs/tokio/pull/3612
|
1602
|
-
[#3628]: https://github.com/tokio-rs/tokio/pull/3628
|
1603
|
-
[#3635]: https://github.com/tokio-rs/tokio/pull/3635
|
1604
|
-
[#3644]: https://github.com/tokio-rs/tokio/pull/3644
|
1605
|
-
[#3645]: https://github.com/tokio-rs/tokio/pull/3645
|
1606
|
-
[#3650]: https://github.com/tokio-rs/tokio/pull/3650
|
1607
|
-
[#3652]: https://github.com/tokio-rs/tokio/pull/3652
|
1608
|
-
[#3654]: https://github.com/tokio-rs/tokio/pull/3654
|
1609
|
-
[#3672]: https://github.com/tokio-rs/tokio/pull/3672
|
1610
|
-
[#3673]: https://github.com/tokio-rs/tokio/pull/3673
|
1611
|
-
[#3674]: https://github.com/tokio-rs/tokio/pull/3674
|
1612
|
-
[#3678]: https://github.com/tokio-rs/tokio/pull/3678
|
1613
|
-
[#3684]: https://github.com/tokio-rs/tokio/pull/3684
|
1614
|
-
[#3690]: https://github.com/tokio-rs/tokio/pull/3690
|
1615
|
-
[#3693]: https://github.com/tokio-rs/tokio/pull/3693
|
1616
|
-
|
1617
|
-
# 1.4.0 (March 20, 2021)
|
1618
|
-
|
1619
|
-
### Added
|
1620
|
-
|
1621
|
-
- macros: introduce biased argument for `select!` ([#3603])
|
1622
|
-
- runtime: add `Handle::block_on` ([#3569])
|
1623
|
-
|
1624
|
-
### Fixed
|
1625
|
-
|
1626
|
-
- runtime: avoid unnecessary polling of `block_on` future ([#3582])
|
1627
|
-
- runtime: fix memory leak/growth when creating many runtimes ([#3564])
|
1628
|
-
- runtime: mark `EnterGuard` with `must_use` ([#3609])
|
1629
|
-
|
1630
|
-
### Documented
|
1631
|
-
|
1632
|
-
- chore: mention fix for building docs in contributing guide ([#3618])
|
1633
|
-
- doc: add link to `PollSender` ([#3613])
|
1634
|
-
- doc: alias sleep to delay ([#3604])
|
1635
|
-
- sync: improve `Mutex` FIFO explanation ([#3615])
|
1636
|
-
- timer: fix double newline in module docs ([#3617])
|
1637
|
-
|
1638
|
-
[#3564]: https://github.com/tokio-rs/tokio/pull/3564
|
1639
|
-
[#3613]: https://github.com/tokio-rs/tokio/pull/3613
|
1640
|
-
[#3618]: https://github.com/tokio-rs/tokio/pull/3618
|
1641
|
-
[#3617]: https://github.com/tokio-rs/tokio/pull/3617
|
1642
|
-
[#3582]: https://github.com/tokio-rs/tokio/pull/3582
|
1643
|
-
[#3615]: https://github.com/tokio-rs/tokio/pull/3615
|
1644
|
-
[#3603]: https://github.com/tokio-rs/tokio/pull/3603
|
1645
|
-
[#3609]: https://github.com/tokio-rs/tokio/pull/3609
|
1646
|
-
[#3604]: https://github.com/tokio-rs/tokio/pull/3604
|
1647
|
-
[#3569]: https://github.com/tokio-rs/tokio/pull/3569
|
1648
|
-
|
1649
|
-
# 1.3.0 (March 9, 2021)
|
1650
|
-
|
1651
|
-
### Added
|
1652
|
-
|
1653
|
-
- coop: expose an `unconstrained()` opt-out ([#3547])
|
1654
|
-
- net: add `into_std` for net types without it ([#3509])
|
1655
|
-
- sync: add `same_channel` method to `mpsc::Sender` ([#3532])
|
1656
|
-
- sync: add `{try_,}acquire_many_owned` to `Semaphore` ([#3535])
|
1657
|
-
- sync: add back `RwLockWriteGuard::map` and `RwLockWriteGuard::try_map` ([#3348])
|
1658
|
-
|
1659
|
-
### Fixed
|
1660
|
-
|
1661
|
-
- sync: allow `oneshot::Receiver::close` after successful `try_recv` ([#3552])
|
1662
|
-
- time: do not panic on `timeout(Duration::MAX)` ([#3551])
|
1663
|
-
|
1664
|
-
### Documented
|
1665
|
-
|
1666
|
-
- doc: doc aliases for pre-1.0 function names ([#3523])
|
1667
|
-
- io: fix typos ([#3541])
|
1668
|
-
- io: note the EOF behaviour of `read_until` ([#3536])
|
1669
|
-
- io: update `AsyncRead::poll_read` doc ([#3557])
|
1670
|
-
- net: update `UdpSocket` splitting doc ([#3517])
|
1671
|
-
- runtime: add link to `LocalSet` on `new_current_thread` ([#3508])
|
1672
|
-
- runtime: update documentation of thread limits ([#3527])
|
1673
|
-
- sync: do not recommend `join_all` for `Barrier` ([#3514])
|
1674
|
-
- sync: documentation for `oneshot` ([#3592])
|
1675
|
-
- sync: rename `notify` to `notify_one` ([#3526])
|
1676
|
-
- time: fix typo in `Sleep` doc ([#3515])
|
1677
|
-
- time: sync `interval.rs` and `time/mod.rs` docs ([#3533])
|
1678
|
-
|
1679
|
-
[#3348]: https://github.com/tokio-rs/tokio/pull/3348
|
1680
|
-
[#3508]: https://github.com/tokio-rs/tokio/pull/3508
|
1681
|
-
[#3509]: https://github.com/tokio-rs/tokio/pull/3509
|
1682
|
-
[#3514]: https://github.com/tokio-rs/tokio/pull/3514
|
1683
|
-
[#3515]: https://github.com/tokio-rs/tokio/pull/3515
|
1684
|
-
[#3517]: https://github.com/tokio-rs/tokio/pull/3517
|
1685
|
-
[#3523]: https://github.com/tokio-rs/tokio/pull/3523
|
1686
|
-
[#3526]: https://github.com/tokio-rs/tokio/pull/3526
|
1687
|
-
[#3527]: https://github.com/tokio-rs/tokio/pull/3527
|
1688
|
-
[#3532]: https://github.com/tokio-rs/tokio/pull/3532
|
1689
|
-
[#3533]: https://github.com/tokio-rs/tokio/pull/3533
|
1690
|
-
[#3535]: https://github.com/tokio-rs/tokio/pull/3535
|
1691
|
-
[#3536]: https://github.com/tokio-rs/tokio/pull/3536
|
1692
|
-
[#3541]: https://github.com/tokio-rs/tokio/pull/3541
|
1693
|
-
[#3547]: https://github.com/tokio-rs/tokio/pull/3547
|
1694
|
-
[#3551]: https://github.com/tokio-rs/tokio/pull/3551
|
1695
|
-
[#3552]: https://github.com/tokio-rs/tokio/pull/3552
|
1696
|
-
[#3557]: https://github.com/tokio-rs/tokio/pull/3557
|
1697
|
-
[#3592]: https://github.com/tokio-rs/tokio/pull/3592
|
1698
|
-
|
1699
|
-
# 1.2.0 (February 5, 2021)
|
1700
|
-
|
1701
|
-
### Added
|
1702
|
-
|
1703
|
-
- signal: make `Signal::poll_recv` method public ([#3383])
|
1704
|
-
|
1705
|
-
### Fixed
|
1706
|
-
|
1707
|
-
- time: make `test-util` paused time fully deterministic ([#3492])
|
1708
|
-
|
1709
|
-
### Documented
|
1710
|
-
|
1711
|
-
- sync: link to new broadcast and watch wrappers ([#3504])
|
1712
|
-
|
1713
|
-
[#3383]: https://github.com/tokio-rs/tokio/pull/3383
|
1714
|
-
[#3492]: https://github.com/tokio-rs/tokio/pull/3492
|
1715
|
-
[#3504]: https://github.com/tokio-rs/tokio/pull/3504
|
1716
|
-
|
1717
|
-
# 1.1.1 (January 29, 2021)
|
1718
|
-
|
1719
|
-
Forward ports 1.0.3 fix.
|
1720
|
-
|
1721
|
-
### Fixed
|
1722
|
-
- io: memory leak during shutdown ([#3477]).
|
1723
|
-
|
1724
|
-
# 1.1.0 (January 22, 2021)
|
1725
|
-
|
1726
|
-
### Added
|
1727
|
-
|
1728
|
-
- net: add `try_read_buf` and `try_recv_buf` ([#3351])
|
1729
|
-
- mpsc: Add `Sender::try_reserve` function ([#3418])
|
1730
|
-
- sync: add `RwLock` `try_read` and `try_write` methods ([#3400])
|
1731
|
-
- io: add `ReadBuf::inner_mut` ([#3443])
|
1732
|
-
|
1733
|
-
### Changed
|
1734
|
-
|
1735
|
-
- macros: improve `select!` error message ([#3352])
|
1736
|
-
- io: keep track of initialized bytes in `read_to_end` ([#3426])
|
1737
|
-
- runtime: consolidate errors for context missing ([#3441])
|
1738
|
-
|
1739
|
-
### Fixed
|
1740
|
-
|
1741
|
-
- task: wake `LocalSet` on `spawn_local` ([#3369])
|
1742
|
-
- sync: fix panic in broadcast::Receiver drop ([#3434])
|
1743
|
-
|
1744
|
-
### Documented
|
1745
|
-
- stream: link to new `Stream` wrappers in `tokio-stream` ([#3343])
|
1746
|
-
- docs: mention that `test-util` feature is not enabled with full ([#3397])
|
1747
|
-
- process: add documentation to process::Child fields ([#3437])
|
1748
|
-
- io: clarify `AsyncFd` docs about changes of the inner fd ([#3430])
|
1749
|
-
- net: update datagram docs on splitting ([#3448])
|
1750
|
-
- time: document that `Sleep` is not `Unpin` ([#3457])
|
1751
|
-
- sync: add link to `PollSemaphore` ([#3456])
|
1752
|
-
- task: add `LocalSet` example ([#3438])
|
1753
|
-
- sync: improve bounded `mpsc` documentation ([#3458])
|
1754
|
-
|
1755
|
-
[#3343]: https://github.com/tokio-rs/tokio/pull/3343
|
1756
|
-
[#3351]: https://github.com/tokio-rs/tokio/pull/3351
|
1757
|
-
[#3352]: https://github.com/tokio-rs/tokio/pull/3352
|
1758
|
-
[#3369]: https://github.com/tokio-rs/tokio/pull/3369
|
1759
|
-
[#3397]: https://github.com/tokio-rs/tokio/pull/3397
|
1760
|
-
[#3400]: https://github.com/tokio-rs/tokio/pull/3400
|
1761
|
-
[#3418]: https://github.com/tokio-rs/tokio/pull/3418
|
1762
|
-
[#3426]: https://github.com/tokio-rs/tokio/pull/3426
|
1763
|
-
[#3430]: https://github.com/tokio-rs/tokio/pull/3430
|
1764
|
-
[#3434]: https://github.com/tokio-rs/tokio/pull/3434
|
1765
|
-
[#3437]: https://github.com/tokio-rs/tokio/pull/3437
|
1766
|
-
[#3438]: https://github.com/tokio-rs/tokio/pull/3438
|
1767
|
-
[#3441]: https://github.com/tokio-rs/tokio/pull/3441
|
1768
|
-
[#3443]: https://github.com/tokio-rs/tokio/pull/3443
|
1769
|
-
[#3448]: https://github.com/tokio-rs/tokio/pull/3448
|
1770
|
-
[#3456]: https://github.com/tokio-rs/tokio/pull/3456
|
1771
|
-
[#3457]: https://github.com/tokio-rs/tokio/pull/3457
|
1772
|
-
[#3458]: https://github.com/tokio-rs/tokio/pull/3458
|
1773
|
-
|
1774
|
-
# 1.0.3 (January 28, 2021)
|
1775
|
-
|
1776
|
-
### Fixed
|
1777
|
-
- io: memory leak during shutdown ([#3477]).
|
1778
|
-
|
1779
|
-
[#3477]: https://github.com/tokio-rs/tokio/pull/3477
|
1780
|
-
|
1781
|
-
# 1.0.2 (January 14, 2021)
|
1782
|
-
|
1783
|
-
### Fixed
|
1784
|
-
- io: soundness in `read_to_end` ([#3428]).
|
1785
|
-
|
1786
|
-
[#3428]: https://github.com/tokio-rs/tokio/pull/3428
|
1787
|
-
|
1788
|
-
# 1.0.1 (December 25, 2020)
|
1789
|
-
|
1790
|
-
This release fixes a soundness hole caused by the combination of `RwLockWriteGuard::map`
|
1791
|
-
and `RwLockWriteGuard::downgrade` by removing the `map` function. This is a breaking
|
1792
|
-
change, but breaking changes are allowed under our semver policy when they are required
|
1793
|
-
to fix a soundness hole. (See [this RFC][semver] for more.)
|
1794
|
-
|
1795
|
-
Note that we have chosen not to do a deprecation cycle or similar because Tokio 1.0.0 was
|
1796
|
-
released two days ago, and therefore the impact should be minimal.
|
1797
|
-
|
1798
|
-
Due to the soundness hole, we have also yanked Tokio version 1.0.0.
|
1799
|
-
|
1800
|
-
### Removed
|
1801
|
-
|
1802
|
-
- sync: remove `RwLockWriteGuard::map` and `RwLockWriteGuard::try_map` ([#3345])
|
1803
|
-
|
1804
|
-
### Fixed
|
1805
|
-
|
1806
|
-
- docs: remove stream feature from docs ([#3335])
|
1807
|
-
|
1808
|
-
[semver]: https://github.com/rust-lang/rfcs/blob/master/text/1122-language-semver.md#soundness-changes
|
1809
|
-
[#3335]: https://github.com/tokio-rs/tokio/pull/3335
|
1810
|
-
[#3345]: https://github.com/tokio-rs/tokio/pull/3345
|
1811
|
-
|
1812
|
-
# 1.0.0 (December 23, 2020)
|
1813
|
-
|
1814
|
-
Commit to the API and long-term support.
|
1815
|
-
|
1816
|
-
### Fixed
|
1817
|
-
|
1818
|
-
- sync: spurious wakeup in `watch` ([#3234]).
|
1819
|
-
|
1820
|
-
### Changed
|
1821
|
-
|
1822
|
-
- io: rename `AsyncFd::with_io()` to `try_io()` ([#3306])
|
1823
|
-
- fs: avoid OS specific `*Ext` traits in favor of conditionally defining the fn ([#3264]).
|
1824
|
-
- fs: `Sleep` is `!Unpin` ([#3278]).
|
1825
|
-
- net: pass `SocketAddr` by value ([#3125]).
|
1826
|
-
- net: `TcpStream::poll_peek` takes `ReadBuf` ([#3259]).
|
1827
|
-
- rt: rename `runtime::Builder::max_threads()` to `max_blocking_threads()` ([#3287]).
|
1828
|
-
- time: require `current_thread` runtime when calling `time::pause()` ([#3289]).
|
1829
|
-
|
1830
|
-
### Removed
|
1831
|
-
|
1832
|
-
- remove `tokio::prelude` ([#3299]).
|
1833
|
-
- io: remove `AsyncFd::with_poll()` ([#3306]).
|
1834
|
-
- net: remove `{Tcp,Unix}Stream::shutdown()` in favor of `AsyncWrite::shutdown()` ([#3298]).
|
1835
|
-
- stream: move all stream utilities to `tokio-stream` until `Stream` is added to
|
1836
|
-
`std` ([#3277]).
|
1837
|
-
- sync: mpsc `try_recv()` due to unexpected behavior ([#3263]).
|
1838
|
-
- tracing: make unstable as `tracing-core` is not 1.0 yet ([#3266]).
|
1839
|
-
|
1840
|
-
### Added
|
1841
|
-
|
1842
|
-
- fs: `poll_*` fns to `DirEntry` ([#3308]).
|
1843
|
-
- io: `poll_*` fns to `io::Lines`, `io::Split` ([#3308]).
|
1844
|
-
- io: `_mut` method variants to `AsyncFd` ([#3304]).
|
1845
|
-
- net: `poll_*` fns to `UnixDatagram` ([#3223]).
|
1846
|
-
- net: `UnixStream` readiness and non-blocking ops ([#3246]).
|
1847
|
-
- sync: `UnboundedReceiver::blocking_recv()` ([#3262]).
|
1848
|
-
- sync: `watch::Sender::borrow()` ([#3269]).
|
1849
|
-
- sync: `Semaphore::close()` ([#3065]).
|
1850
|
-
- sync: `poll_recv` fns to `mpsc::Receiver`, `mpsc::UnboundedReceiver` ([#3308]).
|
1851
|
-
- time: `poll_tick` fn to `time::Interval` ([#3316]).
|
1852
|
-
|
1853
|
-
[#3065]: https://github.com/tokio-rs/tokio/pull/3065
|
1854
|
-
[#3125]: https://github.com/tokio-rs/tokio/pull/3125
|
1855
|
-
[#3223]: https://github.com/tokio-rs/tokio/pull/3223
|
1856
|
-
[#3234]: https://github.com/tokio-rs/tokio/pull/3234
|
1857
|
-
[#3246]: https://github.com/tokio-rs/tokio/pull/3246
|
1858
|
-
[#3259]: https://github.com/tokio-rs/tokio/pull/3259
|
1859
|
-
[#3262]: https://github.com/tokio-rs/tokio/pull/3262
|
1860
|
-
[#3263]: https://github.com/tokio-rs/tokio/pull/3263
|
1861
|
-
[#3264]: https://github.com/tokio-rs/tokio/pull/3264
|
1862
|
-
[#3266]: https://github.com/tokio-rs/tokio/pull/3266
|
1863
|
-
[#3269]: https://github.com/tokio-rs/tokio/pull/3269
|
1864
|
-
[#3277]: https://github.com/tokio-rs/tokio/pull/3277
|
1865
|
-
[#3278]: https://github.com/tokio-rs/tokio/pull/3278
|
1866
|
-
[#3287]: https://github.com/tokio-rs/tokio/pull/3287
|
1867
|
-
[#3289]: https://github.com/tokio-rs/tokio/pull/3289
|
1868
|
-
[#3298]: https://github.com/tokio-rs/tokio/pull/3298
|
1869
|
-
[#3299]: https://github.com/tokio-rs/tokio/pull/3299
|
1870
|
-
[#3304]: https://github.com/tokio-rs/tokio/pull/3304
|
1871
|
-
[#3306]: https://github.com/tokio-rs/tokio/pull/3306
|
1872
|
-
[#3308]: https://github.com/tokio-rs/tokio/pull/3308
|
1873
|
-
[#3316]: https://github.com/tokio-rs/tokio/pull/3316
|
1874
|
-
|
1875
|
-
# 0.3.6 (December 14, 2020)
|
1876
|
-
|
1877
|
-
### Fixed
|
1878
|
-
|
1879
|
-
- rt: fix deadlock in shutdown ([#3228])
|
1880
|
-
- rt: fix panic in task abort when off rt ([#3159])
|
1881
|
-
- sync: make `add_permits` panic with usize::MAX >> 3 permits ([#3188])
|
1882
|
-
- time: Fix race condition in timer drop ([#3229])
|
1883
|
-
- watch: fix spurious wakeup ([#3244])
|
1884
|
-
|
1885
|
-
### Added
|
1886
|
-
|
1887
|
-
- example: add back udp-codec example ([#3205])
|
1888
|
-
- net: add `TcpStream::into_std` ([#3189])
|
1889
|
-
|
1890
|
-
[#3159]: https://github.com/tokio-rs/tokio/pull/3159
|
1891
|
-
[#3188]: https://github.com/tokio-rs/tokio/pull/3188
|
1892
|
-
[#3189]: https://github.com/tokio-rs/tokio/pull/3189
|
1893
|
-
[#3205]: https://github.com/tokio-rs/tokio/pull/3205
|
1894
|
-
[#3228]: https://github.com/tokio-rs/tokio/pull/3228
|
1895
|
-
[#3229]: https://github.com/tokio-rs/tokio/pull/3229
|
1896
|
-
[#3244]: https://github.com/tokio-rs/tokio/pull/3244
|
1897
|
-
|
1898
|
-
# 0.3.5 (November 30, 2020)
|
1899
|
-
|
1900
|
-
### Fixed
|
1901
|
-
|
1902
|
-
- rt: fix `shutdown_timeout(0)` ([#3196]).
|
1903
|
-
- time: fixed race condition with small sleeps ([#3069]).
|
1904
|
-
|
1905
|
-
### Added
|
1906
|
-
|
1907
|
-
- io: `AsyncFd::with_interest()` ([#3167]).
|
1908
|
-
- signal: `CtrlC` stream on windows ([#3186]).
|
1909
|
-
|
1910
|
-
[#3069]: https://github.com/tokio-rs/tokio/pull/3069
|
1911
|
-
[#3167]: https://github.com/tokio-rs/tokio/pull/3167
|
1912
|
-
[#3186]: https://github.com/tokio-rs/tokio/pull/3186
|
1913
|
-
[#3196]: https://github.com/tokio-rs/tokio/pull/3196
|
1914
|
-
|
1915
|
-
# 0.3.4 (November 18, 2020)
|
1916
|
-
|
1917
|
-
### Fixed
|
1918
|
-
|
1919
|
-
- stream: `StreamMap` `Default` impl bound ([#3093]).
|
1920
|
-
- io: `AsyncFd::into_inner()` should deregister the FD ([#3104]).
|
1921
|
-
|
1922
|
-
### Changed
|
1923
|
-
|
1924
|
-
- meta: `parking_lot` feature enabled with `full` ([#3119]).
|
1925
|
-
|
1926
|
-
### Added
|
1927
|
-
|
1928
|
-
- io: `AsyncWrite` vectored writes ([#3149]).
|
1929
|
-
- net: TCP/UDP readiness and non-blocking ops ([#3130], [#2743], [#3138]).
|
1930
|
-
- net: TCP socket option (linger, send/recv buf size) ([#3145], [#3143]).
|
1931
|
-
- net: PID field in `UCred` with solaris/illumos ([#3085]).
|
1932
|
-
- rt: `runtime::Handle` allows spawning onto a runtime ([#3079]).
|
1933
|
-
- sync: `Notify::notify_waiters()` ([#3098]).
|
1934
|
-
- sync: `acquire_many()`, `try_acquire_many()` to `Semaphore` ([#3067]).
|
1935
|
-
|
1936
|
-
[#2743]: https://github.com/tokio-rs/tokio/pull/2743
|
1937
|
-
[#3067]: https://github.com/tokio-rs/tokio/pull/3067
|
1938
|
-
[#3079]: https://github.com/tokio-rs/tokio/pull/3079
|
1939
|
-
[#3085]: https://github.com/tokio-rs/tokio/pull/3085
|
1940
|
-
[#3093]: https://github.com/tokio-rs/tokio/pull/3093
|
1941
|
-
[#3098]: https://github.com/tokio-rs/tokio/pull/3098
|
1942
|
-
[#3104]: https://github.com/tokio-rs/tokio/pull/3104
|
1943
|
-
[#3119]: https://github.com/tokio-rs/tokio/pull/3119
|
1944
|
-
[#3130]: https://github.com/tokio-rs/tokio/pull/3130
|
1945
|
-
[#3138]: https://github.com/tokio-rs/tokio/pull/3138
|
1946
|
-
[#3143]: https://github.com/tokio-rs/tokio/pull/3143
|
1947
|
-
[#3145]: https://github.com/tokio-rs/tokio/pull/3145
|
1948
|
-
[#3149]: https://github.com/tokio-rs/tokio/pull/3149
|
1949
|
-
|
1950
|
-
# 0.3.3 (November 2, 2020)
|
1951
|
-
|
1952
|
-
Fixes a soundness hole by adding a missing `Send` bound to
|
1953
|
-
`Runtime::spawn_blocking()`.
|
1954
|
-
|
1955
|
-
### Fixed
|
1956
|
-
|
1957
|
-
- rt: include missing `Send`, fixing soundness hole ([#3089]).
|
1958
|
-
- tracing: avoid huge trace span names ([#3074]).
|
1959
|
-
|
1960
|
-
### Added
|
1961
|
-
|
1962
|
-
- net: `TcpSocket::reuseport()`, `TcpSocket::set_reuseport()` ([#3083]).
|
1963
|
-
- net: `TcpSocket::reuseaddr()` ([#3093]).
|
1964
|
-
- net: `TcpSocket::local_addr()` ([#3093]).
|
1965
|
-
- net: add pid to `UCred` ([#2633]).
|
1966
|
-
|
1967
|
-
[#2633]: https://github.com/tokio-rs/tokio/pull/2633
|
1968
|
-
[#3074]: https://github.com/tokio-rs/tokio/pull/3074
|
1969
|
-
[#3083]: https://github.com/tokio-rs/tokio/pull/3083
|
1970
|
-
[#3089]: https://github.com/tokio-rs/tokio/pull/3089
|
1971
|
-
[#3093]: https://github.com/tokio-rs/tokio/pull/3093
|
1972
|
-
|
1973
|
-
# 0.3.2 (October 27, 2020)
|
1974
|
-
|
1975
|
-
Adds `AsyncFd` as a replacement for v0.2's `PollEvented`.
|
1976
|
-
|
1977
|
-
### Fixed
|
1978
|
-
|
1979
|
-
- io: fix a potential deadlock when shutting down the I/O driver ([#2903]).
|
1980
|
-
- sync: `RwLockWriteGuard::downgrade()` bug ([#2957]).
|
1981
|
-
|
1982
|
-
### Added
|
1983
|
-
|
1984
|
-
- io: `AsyncFd` for receiving readiness events on raw FDs ([#2903]).
|
1985
|
-
- net: `poll_*` function on `UdpSocket` ([#2981]).
|
1986
|
-
- net: `UdpSocket::take_error()` ([#3051]).
|
1987
|
-
- sync: `oneshot::Sender::poll_closed()` ([#3032]).
|
1988
|
-
|
1989
|
-
[#2903]: https://github.com/tokio-rs/tokio/pull/2903
|
1990
|
-
[#2957]: https://github.com/tokio-rs/tokio/pull/2957
|
1991
|
-
[#2981]: https://github.com/tokio-rs/tokio/pull/2981
|
1992
|
-
[#3032]: https://github.com/tokio-rs/tokio/pull/3032
|
1993
|
-
[#3051]: https://github.com/tokio-rs/tokio/pull/3051
|
1994
|
-
|
1995
|
-
# 0.3.1 (October 21, 2020)
|
1996
|
-
|
1997
|
-
This release fixes an use-after-free in the IO driver. Additionally, the `read_buf`
|
1998
|
-
and `write_buf` methods have been added back to the IO traits, as the bytes crate
|
1999
|
-
is now on track to reach version 1.0 together with Tokio.
|
2000
|
-
|
2001
|
-
### Fixed
|
2002
|
-
|
2003
|
-
- net: fix use-after-free ([#3019]).
|
2004
|
-
- fs: ensure buffered data is written on shutdown ([#3009]).
|
2005
|
-
|
2006
|
-
### Added
|
2007
|
-
|
2008
|
-
- io: `copy_buf()` ([#2884]).
|
2009
|
-
- io: `AsyncReadExt::read_buf()`, `AsyncReadExt::write_buf()` for working with
|
2010
|
-
`Buf`/`BufMut` ([#3003]).
|
2011
|
-
- rt: `Runtime::spawn_blocking()` ([#2980]).
|
2012
|
-
- sync: `watch::Sender::is_closed()` ([#2991]).
|
2013
|
-
|
2014
|
-
[#2884]: https://github.com/tokio-rs/tokio/pull/2884
|
2015
|
-
[#2980]: https://github.com/tokio-rs/tokio/pull/2980
|
2016
|
-
[#2991]: https://github.com/tokio-rs/tokio/pull/2991
|
2017
|
-
[#3003]: https://github.com/tokio-rs/tokio/pull/3003
|
2018
|
-
[#3009]: https://github.com/tokio-rs/tokio/pull/3009
|
2019
|
-
[#3019]: https://github.com/tokio-rs/tokio/pull/3019
|
2020
|
-
|
2021
|
-
# 0.3.0 (October 15, 2020)
|
2022
|
-
|
2023
|
-
This represents a 1.0 beta release. APIs are polished and future-proofed. APIs
|
2024
|
-
not included for 1.0 stabilization have been removed.
|
2025
|
-
|
2026
|
-
Biggest changes are:
|
2027
|
-
|
2028
|
-
- I/O driver internal rewrite. The windows implementation includes significant
|
2029
|
-
changes.
|
2030
|
-
- Runtime API is polished, especially with how it interacts with feature flag
|
2031
|
-
combinations.
|
2032
|
-
- Feature flags are simplified
|
2033
|
-
- `rt-core` and `rt-util` are combined to `rt`
|
2034
|
-
- `rt-threaded` is renamed to `rt-multi-thread` to match builder API
|
2035
|
-
- `tcp`, `udp`, `uds`, `dns` are combined to `net`.
|
2036
|
-
- `parking_lot` is included with `full`
|
2037
|
-
|
2038
|
-
### Changes
|
2039
|
-
|
2040
|
-
- meta: Minimum supported Rust version is now 1.45.
|
2041
|
-
- io: `AsyncRead` trait now takes `ReadBuf` in order to safely handle reading
|
2042
|
-
into uninitialized memory ([#2758]).
|
2043
|
-
- io: Internal I/O driver storage is now able to compact ([#2757]).
|
2044
|
-
- rt: `Runtime::block_on` now takes `&self` ([#2782]).
|
2045
|
-
- sync: `watch` reworked to decouple receiving a change notification from
|
2046
|
-
receiving the value ([#2814], [#2806]).
|
2047
|
-
- sync: `Notify::notify` is renamed to `notify_one` ([#2822]).
|
2048
|
-
- process: `Child::kill` is now an `async fn` that cleans zombies ([#2823]).
|
2049
|
-
- sync: use `const fn` constructors as possible ([#2833], [#2790])
|
2050
|
-
- signal: reduce cross-thread notification ([#2835]).
|
2051
|
-
- net: tcp,udp,uds types support operations with `&self` ([#2828], [#2919], [#2934]).
|
2052
|
-
- sync: blocking `mpsc` channel supports `send` with `&self` ([#2861]).
|
2053
|
-
- time: rename `delay_for` and `delay_until` to `sleep` and `sleep_until` ([#2826]).
|
2054
|
-
- io: upgrade to `mio` 0.7 ([#2893]).
|
2055
|
-
- io: `AsyncSeek` trait is tweaked ([#2885]).
|
2056
|
-
- fs: `File` operations take `&self` ([#2930]).
|
2057
|
-
- rt: runtime API, and `#[tokio::main]` macro polish ([#2876])
|
2058
|
-
- rt: `Runtime::enter` uses an RAII guard instead of a closure ([#2954]).
|
2059
|
-
- net: the `from_std` function on all sockets no longer sets socket into non-blocking mode ([#2893])
|
2060
|
-
|
2061
|
-
### Added
|
2062
|
-
|
2063
|
-
- sync: `map` function to lock guards ([#2445]).
|
2064
|
-
- sync: `blocking_recv` and `blocking_send` fns to `mpsc` for use outside of Tokio ([#2685]).
|
2065
|
-
- rt: `Builder::thread_name_fn` for configuring thread names ([#1921]).
|
2066
|
-
- fs: impl `FromRawFd` and `FromRawHandle` for `File` ([#2792]).
|
2067
|
-
- process: `Child::wait` and `Child::try_wait` ([#2796]).
|
2068
|
-
- rt: support configuring thread keep-alive duration ([#2809]).
|
2069
|
-
- rt: `task::JoinHandle::abort` forcibly cancels a spawned task ([#2474]).
|
2070
|
-
- sync: `RwLock` write guard to read guard downgrading ([#2733]).
|
2071
|
-
- net: add `poll_*` functions that take `&self` to all net types ([#2845])
|
2072
|
-
- sync: `get_mut()` for `Mutex`, `RwLock` ([#2856]).
|
2073
|
-
- sync: `mpsc::Sender::closed()` waits for `Receiver` half to close ([#2840]).
|
2074
|
-
- sync: `mpsc::Sender::is_closed()` returns true if `Receiver` half is closed ([#2726]).
|
2075
|
-
- stream: `iter` and `iter_mut` to `StreamMap` ([#2890]).
|
2076
|
-
- net: implement `AsRawSocket` on windows ([#2911]).
|
2077
|
-
- net: `TcpSocket` creates a socket without binding or listening ([#2920]).
|
2078
|
-
|
2079
|
-
### Removed
|
2080
|
-
|
2081
|
-
- io: vectored ops are removed from `AsyncRead`, `AsyncWrite` traits ([#2882]).
|
2082
|
-
- io: `mio` is removed from the public API. `PollEvented` and` Registration` are
|
2083
|
-
removed ([#2893]).
|
2084
|
-
- io: remove `bytes` from public API. `Buf` and `BufMut` implementation are
|
2085
|
-
removed ([#2908]).
|
2086
|
-
- time: `DelayQueue` is moved to `tokio-util` ([#2897]).
|
2087
|
-
|
2088
|
-
### Fixed
|
2089
|
-
|
2090
|
-
- io: `stdout` and `stderr` buffering on windows ([#2734]).
|
2091
|
-
|
2092
|
-
[#1921]: https://github.com/tokio-rs/tokio/pull/1921
|
2093
|
-
[#2445]: https://github.com/tokio-rs/tokio/pull/2445
|
2094
|
-
[#2474]: https://github.com/tokio-rs/tokio/pull/2474
|
2095
|
-
[#2685]: https://github.com/tokio-rs/tokio/pull/2685
|
2096
|
-
[#2726]: https://github.com/tokio-rs/tokio/pull/2726
|
2097
|
-
[#2733]: https://github.com/tokio-rs/tokio/pull/2733
|
2098
|
-
[#2734]: https://github.com/tokio-rs/tokio/pull/2734
|
2099
|
-
[#2757]: https://github.com/tokio-rs/tokio/pull/2757
|
2100
|
-
[#2758]: https://github.com/tokio-rs/tokio/pull/2758
|
2101
|
-
[#2782]: https://github.com/tokio-rs/tokio/pull/2782
|
2102
|
-
[#2790]: https://github.com/tokio-rs/tokio/pull/2790
|
2103
|
-
[#2792]: https://github.com/tokio-rs/tokio/pull/2792
|
2104
|
-
[#2796]: https://github.com/tokio-rs/tokio/pull/2796
|
2105
|
-
[#2806]: https://github.com/tokio-rs/tokio/pull/2806
|
2106
|
-
[#2809]: https://github.com/tokio-rs/tokio/pull/2809
|
2107
|
-
[#2814]: https://github.com/tokio-rs/tokio/pull/2814
|
2108
|
-
[#2822]: https://github.com/tokio-rs/tokio/pull/2822
|
2109
|
-
[#2823]: https://github.com/tokio-rs/tokio/pull/2823
|
2110
|
-
[#2826]: https://github.com/tokio-rs/tokio/pull/2826
|
2111
|
-
[#2828]: https://github.com/tokio-rs/tokio/pull/2828
|
2112
|
-
[#2833]: https://github.com/tokio-rs/tokio/pull/2833
|
2113
|
-
[#2835]: https://github.com/tokio-rs/tokio/pull/2835
|
2114
|
-
[#2840]: https://github.com/tokio-rs/tokio/pull/2840
|
2115
|
-
[#2845]: https://github.com/tokio-rs/tokio/pull/2845
|
2116
|
-
[#2856]: https://github.com/tokio-rs/tokio/pull/2856
|
2117
|
-
[#2861]: https://github.com/tokio-rs/tokio/pull/2861
|
2118
|
-
[#2876]: https://github.com/tokio-rs/tokio/pull/2876
|
2119
|
-
[#2882]: https://github.com/tokio-rs/tokio/pull/2882
|
2120
|
-
[#2885]: https://github.com/tokio-rs/tokio/pull/2885
|
2121
|
-
[#2890]: https://github.com/tokio-rs/tokio/pull/2890
|
2122
|
-
[#2893]: https://github.com/tokio-rs/tokio/pull/2893
|
2123
|
-
[#2897]: https://github.com/tokio-rs/tokio/pull/2897
|
2124
|
-
[#2908]: https://github.com/tokio-rs/tokio/pull/2908
|
2125
|
-
[#2911]: https://github.com/tokio-rs/tokio/pull/2911
|
2126
|
-
[#2919]: https://github.com/tokio-rs/tokio/pull/2919
|
2127
|
-
[#2920]: https://github.com/tokio-rs/tokio/pull/2920
|
2128
|
-
[#2930]: https://github.com/tokio-rs/tokio/pull/2930
|
2129
|
-
[#2934]: https://github.com/tokio-rs/tokio/pull/2934
|
2130
|
-
[#2954]: https://github.com/tokio-rs/tokio/pull/2954
|
2131
|
-
|
2132
|
-
# 0.2.22 (July 21, 2020)
|
2133
|
-
|
2134
|
-
### Fixes
|
2135
|
-
|
2136
|
-
- docs: misc improvements ([#2572], [#2658], [#2663], [#2656], [#2647], [#2630], [#2487], [#2621],
|
2137
|
-
[#2624], [#2600], [#2623], [#2622], [#2577], [#2569], [#2589], [#2575], [#2540], [#2564], [#2567],
|
2138
|
-
[#2520], [#2521], [#2493])
|
2139
|
-
- rt: allow calls to `block_on` inside calls to `block_in_place` that are
|
2140
|
-
themselves inside `block_on` ([#2645])
|
2141
|
-
- net: fix non-portable behavior when dropping `TcpStream` `OwnedWriteHalf` ([#2597])
|
2142
|
-
- io: improve stack usage by allocating large buffers on directly on the heap
|
2143
|
-
([#2634])
|
2144
|
-
- io: fix unsound pin projection in `AsyncReadExt::read_buf` and
|
2145
|
-
`AsyncWriteExt::write_buf` ([#2612])
|
2146
|
-
- io: fix unnecessary zeroing for `AsyncRead` implementors ([#2525])
|
2147
|
-
- io: Fix `BufReader` not correctly forwarding `poll_write_buf` ([#2654])
|
2148
|
-
- io: fix panic in `AsyncReadExt::read_line` ([#2541])
|
2149
|
-
|
2150
|
-
### Changes
|
2151
|
-
|
2152
|
-
- coop: returning `Poll::Pending` no longer decrements the task budget ([#2549])
|
2153
|
-
|
2154
|
-
### Added
|
2155
|
-
|
2156
|
-
- io: little-endian variants of `AsyncReadExt` and `AsyncWriteExt` methods
|
2157
|
-
([#1915])
|
2158
|
-
- task: add [`tracing`] instrumentation to spawned tasks ([#2655])
|
2159
|
-
- sync: allow unsized types in `Mutex` and `RwLock` (via `default` constructors)
|
2160
|
-
([#2615])
|
2161
|
-
- net: add `ToSocketAddrs` implementation for `&[SocketAddr]` ([#2604])
|
2162
|
-
- fs: add `OpenOptionsExt` for `OpenOptions` ([#2515])
|
2163
|
-
- fs: add `DirBuilder` ([#2524])
|
2164
|
-
|
2165
|
-
[`tracing`]: https://crates.io/crates/tracing
|
2166
|
-
[#1915]: https://github.com/tokio-rs/tokio/pull/1915
|
2167
|
-
[#2487]: https://github.com/tokio-rs/tokio/pull/2487
|
2168
|
-
[#2493]: https://github.com/tokio-rs/tokio/pull/2493
|
2169
|
-
[#2515]: https://github.com/tokio-rs/tokio/pull/2515
|
2170
|
-
[#2520]: https://github.com/tokio-rs/tokio/pull/2520
|
2171
|
-
[#2521]: https://github.com/tokio-rs/tokio/pull/2521
|
2172
|
-
[#2524]: https://github.com/tokio-rs/tokio/pull/2524
|
2173
|
-
[#2525]: https://github.com/tokio-rs/tokio/pull/2525
|
2174
|
-
[#2540]: https://github.com/tokio-rs/tokio/pull/2540
|
2175
|
-
[#2541]: https://github.com/tokio-rs/tokio/pull/2541
|
2176
|
-
[#2549]: https://github.com/tokio-rs/tokio/pull/2549
|
2177
|
-
[#2564]: https://github.com/tokio-rs/tokio/pull/2564
|
2178
|
-
[#2567]: https://github.com/tokio-rs/tokio/pull/2567
|
2179
|
-
[#2569]: https://github.com/tokio-rs/tokio/pull/2569
|
2180
|
-
[#2572]: https://github.com/tokio-rs/tokio/pull/2572
|
2181
|
-
[#2575]: https://github.com/tokio-rs/tokio/pull/2575
|
2182
|
-
[#2577]: https://github.com/tokio-rs/tokio/pull/2577
|
2183
|
-
[#2589]: https://github.com/tokio-rs/tokio/pull/2589
|
2184
|
-
[#2597]: https://github.com/tokio-rs/tokio/pull/2597
|
2185
|
-
[#2600]: https://github.com/tokio-rs/tokio/pull/2600
|
2186
|
-
[#2604]: https://github.com/tokio-rs/tokio/pull/2604
|
2187
|
-
[#2612]: https://github.com/tokio-rs/tokio/pull/2612
|
2188
|
-
[#2615]: https://github.com/tokio-rs/tokio/pull/2615
|
2189
|
-
[#2621]: https://github.com/tokio-rs/tokio/pull/2621
|
2190
|
-
[#2622]: https://github.com/tokio-rs/tokio/pull/2622
|
2191
|
-
[#2623]: https://github.com/tokio-rs/tokio/pull/2623
|
2192
|
-
[#2624]: https://github.com/tokio-rs/tokio/pull/2624
|
2193
|
-
[#2630]: https://github.com/tokio-rs/tokio/pull/2630
|
2194
|
-
[#2634]: https://github.com/tokio-rs/tokio/pull/2634
|
2195
|
-
[#2645]: https://github.com/tokio-rs/tokio/pull/2645
|
2196
|
-
[#2647]: https://github.com/tokio-rs/tokio/pull/2647
|
2197
|
-
[#2654]: https://github.com/tokio-rs/tokio/pull/2654
|
2198
|
-
[#2655]: https://github.com/tokio-rs/tokio/pull/2655
|
2199
|
-
[#2656]: https://github.com/tokio-rs/tokio/pull/2656
|
2200
|
-
[#2658]: https://github.com/tokio-rs/tokio/pull/2658
|
2201
|
-
[#2663]: https://github.com/tokio-rs/tokio/pull/2663
|
2202
|
-
|
2203
|
-
# 0.2.21 (May 13, 2020)
|
2204
|
-
|
2205
|
-
### Fixes
|
2206
|
-
|
2207
|
-
- macros: disambiguate built-in `#[test]` attribute in macro expansion ([#2503])
|
2208
|
-
- rt: `LocalSet` and task budgeting ([#2462]).
|
2209
|
-
- rt: task budgeting with `block_in_place` ([#2502]).
|
2210
|
-
- sync: release `broadcast` channel memory without sending a value ([#2509]).
|
2211
|
-
- time: notify when resetting a `Delay` to a time in the past ([#2290])
|
2212
|
-
|
2213
|
-
### Added
|
2214
|
-
|
2215
|
-
- io: `get_mut`, `get_ref`, and `into_inner` to `Lines` ([#2450]).
|
2216
|
-
- io: `mio::Ready` argument to `PollEvented` ([#2419]).
|
2217
|
-
- os: illumos support ([#2486]).
|
2218
|
-
- rt: `Handle::spawn_blocking` ([#2501]).
|
2219
|
-
- sync: `OwnedMutexGuard` for `Arc<Mutex<T>>` ([#2455]).
|
2220
|
-
|
2221
|
-
[#2290]: https://github.com/tokio-rs/tokio/pull/2290
|
2222
|
-
[#2419]: https://github.com/tokio-rs/tokio/pull/2419
|
2223
|
-
[#2450]: https://github.com/tokio-rs/tokio/pull/2450
|
2224
|
-
[#2455]: https://github.com/tokio-rs/tokio/pull/2455
|
2225
|
-
[#2462]: https://github.com/tokio-rs/tokio/pull/2462
|
2226
|
-
[#2486]: https://github.com/tokio-rs/tokio/pull/2486
|
2227
|
-
[#2501]: https://github.com/tokio-rs/tokio/pull/2501
|
2228
|
-
[#2502]: https://github.com/tokio-rs/tokio/pull/2502
|
2229
|
-
[#2503]: https://github.com/tokio-rs/tokio/pull/2503
|
2230
|
-
[#2509]: https://github.com/tokio-rs/tokio/pull/2509
|
2231
|
-
|
2232
|
-
# 0.2.20 (April 28, 2020)
|
2233
|
-
|
2234
|
-
### Fixes
|
2235
|
-
|
2236
|
-
- sync: `broadcast` closing the channel no longer requires capacity ([#2448]).
|
2237
|
-
- rt: regression when configuring runtime with `max_threads` less than number of CPUs ([#2457]).
|
2238
|
-
|
2239
|
-
[#2448]: https://github.com/tokio-rs/tokio/pull/2448
|
2240
|
-
[#2457]: https://github.com/tokio-rs/tokio/pull/2457
|
2241
|
-
|
2242
|
-
# 0.2.19 (April 24, 2020)
|
2243
|
-
|
2244
|
-
### Fixes
|
2245
|
-
|
2246
|
-
- docs: misc improvements ([#2400], [#2405], [#2414], [#2420], [#2423], [#2426], [#2427], [#2434], [#2436], [#2440]).
|
2247
|
-
- rt: support `block_in_place` in more contexts ([#2409], [#2410]).
|
2248
|
-
- stream: no panic in `merge()` and `chain()` when using `size_hint()` ([#2430]).
|
2249
|
-
- task: include visibility modifier when defining a task-local ([#2416]).
|
2250
|
-
|
2251
|
-
### Added
|
2252
|
-
|
2253
|
-
- rt: `runtime::Handle::block_on` ([#2437]).
|
2254
|
-
- sync: owned `Semaphore` permit ([#2421]).
|
2255
|
-
- tcp: owned split ([#2270]).
|
2256
|
-
|
2257
|
-
[#2270]: https://github.com/tokio-rs/tokio/pull/2270
|
2258
|
-
[#2400]: https://github.com/tokio-rs/tokio/pull/2400
|
2259
|
-
[#2405]: https://github.com/tokio-rs/tokio/pull/2405
|
2260
|
-
[#2409]: https://github.com/tokio-rs/tokio/pull/2409
|
2261
|
-
[#2410]: https://github.com/tokio-rs/tokio/pull/2410
|
2262
|
-
[#2414]: https://github.com/tokio-rs/tokio/pull/2414
|
2263
|
-
[#2416]: https://github.com/tokio-rs/tokio/pull/2416
|
2264
|
-
[#2420]: https://github.com/tokio-rs/tokio/pull/2420
|
2265
|
-
[#2421]: https://github.com/tokio-rs/tokio/pull/2421
|
2266
|
-
[#2423]: https://github.com/tokio-rs/tokio/pull/2423
|
2267
|
-
[#2426]: https://github.com/tokio-rs/tokio/pull/2426
|
2268
|
-
[#2427]: https://github.com/tokio-rs/tokio/pull/2427
|
2269
|
-
[#2430]: https://github.com/tokio-rs/tokio/pull/2430
|
2270
|
-
[#2434]: https://github.com/tokio-rs/tokio/pull/2434
|
2271
|
-
[#2436]: https://github.com/tokio-rs/tokio/pull/2436
|
2272
|
-
[#2437]: https://github.com/tokio-rs/tokio/pull/2437
|
2273
|
-
[#2440]: https://github.com/tokio-rs/tokio/pull/2440
|
2274
|
-
|
2275
|
-
# 0.2.18 (April 12, 2020)
|
2276
|
-
|
2277
|
-
### Fixes
|
2278
|
-
|
2279
|
-
- task: `LocalSet` was incorrectly marked as `Send` ([#2398])
|
2280
|
-
- io: correctly report `WriteZero` failure in `write_int` ([#2334])
|
2281
|
-
|
2282
|
-
[#2334]: https://github.com/tokio-rs/tokio/pull/2334
|
2283
|
-
[#2398]: https://github.com/tokio-rs/tokio/pull/2398
|
2284
|
-
|
2285
|
-
# 0.2.17 (April 9, 2020)
|
2286
|
-
|
2287
|
-
### Fixes
|
2288
|
-
|
2289
|
-
- rt: bug in work-stealing queue ([#2387])
|
2290
|
-
|
2291
|
-
### Changes
|
2292
|
-
|
2293
|
-
- rt: threadpool uses logical CPU count instead of physical by default ([#2391])
|
2294
|
-
|
2295
|
-
[#2387]: https://github.com/tokio-rs/tokio/pull/2387
|
2296
|
-
[#2391]: https://github.com/tokio-rs/tokio/pull/2391
|
2297
|
-
|
2298
|
-
# 0.2.16 (April 3, 2020)
|
2299
|
-
|
2300
|
-
### Fixes
|
2301
|
-
|
2302
|
-
- sync: fix a regression where `Mutex`, `Semaphore`, and `RwLock` futures no
|
2303
|
-
longer implement `Sync` ([#2375])
|
2304
|
-
- fs: fix `fs::copy` not copying file permissions ([#2354])
|
2305
|
-
|
2306
|
-
### Added
|
2307
|
-
|
2308
|
-
- time: added `deadline` method to `delay_queue::Expired` ([#2300])
|
2309
|
-
- io: added `StreamReader` ([#2052])
|
2310
|
-
|
2311
|
-
[#2052]: https://github.com/tokio-rs/tokio/pull/2052
|
2312
|
-
[#2300]: https://github.com/tokio-rs/tokio/pull/2300
|
2313
|
-
[#2354]: https://github.com/tokio-rs/tokio/pull/2354
|
2314
|
-
[#2375]: https://github.com/tokio-rs/tokio/pull/2375
|
2315
|
-
|
2316
|
-
# 0.2.15 (April 2, 2020)
|
2317
|
-
|
2318
|
-
### Fixes
|
2319
|
-
|
2320
|
-
- rt: fix queue regression ([#2362]).
|
2321
|
-
|
2322
|
-
### Added
|
2323
|
-
|
2324
|
-
- sync: Add disarm to `mpsc::Sender` ([#2358]).
|
2325
|
-
|
2326
|
-
[#2358]: https://github.com/tokio-rs/tokio/pull/2358
|
2327
|
-
[#2362]: https://github.com/tokio-rs/tokio/pull/2362
|
2328
|
-
|
2329
|
-
# 0.2.14 (April 1, 2020)
|
2330
|
-
|
2331
|
-
### Fixes
|
2332
|
-
|
2333
|
-
- rt: concurrency bug in scheduler ([#2273]).
|
2334
|
-
- rt: concurrency bug with shell runtime ([#2333]).
|
2335
|
-
- test-util: correct pause/resume of time ([#2253]).
|
2336
|
-
- time: `DelayQueue` correct wakeup after `insert` ([#2285]).
|
2337
|
-
|
2338
|
-
### Added
|
2339
|
-
|
2340
|
-
- io: impl `RawFd`, `AsRawHandle` for std io types ([#2335]).
|
2341
|
-
- rt: automatic cooperative task yielding ([#2160], [#2343], [#2349]).
|
2342
|
-
- sync: `RwLock::into_inner` ([#2321]).
|
2343
|
-
|
2344
|
-
### Changed
|
2345
|
-
|
2346
|
-
- sync: semaphore, mutex internals rewritten to avoid allocations ([#2325]).
|
2347
|
-
|
2348
|
-
[#2160]: https://github.com/tokio-rs/tokio/pull/2160
|
2349
|
-
[#2253]: https://github.com/tokio-rs/tokio/pull/2253
|
2350
|
-
[#2273]: https://github.com/tokio-rs/tokio/pull/2273
|
2351
|
-
[#2285]: https://github.com/tokio-rs/tokio/pull/2285
|
2352
|
-
[#2321]: https://github.com/tokio-rs/tokio/pull/2321
|
2353
|
-
[#2325]: https://github.com/tokio-rs/tokio/pull/2325
|
2354
|
-
[#2333]: https://github.com/tokio-rs/tokio/pull/2333
|
2355
|
-
[#2335]: https://github.com/tokio-rs/tokio/pull/2335
|
2356
|
-
[#2343]: https://github.com/tokio-rs/tokio/pull/2343
|
2357
|
-
[#2349]: https://github.com/tokio-rs/tokio/pull/2349
|
2358
|
-
|
2359
|
-
# 0.2.13 (February 28, 2020)
|
2360
|
-
|
2361
|
-
### Fixes
|
2362
|
-
|
2363
|
-
- macros: unresolved import in `pin!` ([#2281]).
|
2364
|
-
|
2365
|
-
[#2281]: https://github.com/tokio-rs/tokio/pull/2281
|
2366
|
-
|
2367
|
-
# 0.2.12 (February 27, 2020)
|
2368
|
-
|
2369
|
-
### Fixes
|
2370
|
-
|
2371
|
-
- net: `UnixStream::poll_shutdown` should call `shutdown(Write)` ([#2245]).
|
2372
|
-
- process: Wake up read and write on `EPOLLERR` ([#2218]).
|
2373
|
-
- rt: potential deadlock when using `block_in_place` and shutting down the
|
2374
|
-
runtime ([#2119]).
|
2375
|
-
- rt: only detect number of CPUs if `core_threads` not specified ([#2238]).
|
2376
|
-
- sync: reduce `watch::Receiver` struct size ([#2191]).
|
2377
|
-
- time: succeed when setting delay of `$MAX-1` ([#2184]).
|
2378
|
-
- time: avoid having to poll `DelayQueue` after inserting new delay ([#2217]).
|
2379
|
-
|
2380
|
-
### Added
|
2381
|
-
|
2382
|
-
- macros: `pin!` variant that assigns to identifier and pins ([#2274]).
|
2383
|
-
- net: impl `Stream` for `Listener` types ([#2275]).
|
2384
|
-
- rt: `Runtime::shutdown_timeout` waits for runtime to shutdown for specified
|
2385
|
-
duration ([#2186]).
|
2386
|
-
- stream: `StreamMap` merges streams and can insert / remove streams at
|
2387
|
-
runtime ([#2185]).
|
2388
|
-
- stream: `StreamExt::skip()` skips a fixed number of items ([#2204]).
|
2389
|
-
- stream: `StreamExt::skip_while()` skips items based on a predicate ([#2205]).
|
2390
|
-
- sync: `Notify` provides basic `async` / `await` task notification ([#2210]).
|
2391
|
-
- sync: `Mutex::into_inner` retrieves guarded data ([#2250]).
|
2392
|
-
- sync: `mpsc::Sender::send_timeout` sends, waiting for up to specified duration
|
2393
|
-
for channel capacity ([#2227]).
|
2394
|
-
- time: impl `Ord` and `Hash` for `Instant` ([#2239]).
|
2395
|
-
|
2396
|
-
[#2119]: https://github.com/tokio-rs/tokio/pull/2119
|
2397
|
-
[#2184]: https://github.com/tokio-rs/tokio/pull/2184
|
2398
|
-
[#2185]: https://github.com/tokio-rs/tokio/pull/2185
|
2399
|
-
[#2186]: https://github.com/tokio-rs/tokio/pull/2186
|
2400
|
-
[#2191]: https://github.com/tokio-rs/tokio/pull/2191
|
2401
|
-
[#2204]: https://github.com/tokio-rs/tokio/pull/2204
|
2402
|
-
[#2205]: https://github.com/tokio-rs/tokio/pull/2205
|
2403
|
-
[#2210]: https://github.com/tokio-rs/tokio/pull/2210
|
2404
|
-
[#2217]: https://github.com/tokio-rs/tokio/pull/2217
|
2405
|
-
[#2218]: https://github.com/tokio-rs/tokio/pull/2218
|
2406
|
-
[#2227]: https://github.com/tokio-rs/tokio/pull/2227
|
2407
|
-
[#2238]: https://github.com/tokio-rs/tokio/pull/2238
|
2408
|
-
[#2239]: https://github.com/tokio-rs/tokio/pull/2239
|
2409
|
-
[#2245]: https://github.com/tokio-rs/tokio/pull/2245
|
2410
|
-
[#2250]: https://github.com/tokio-rs/tokio/pull/2250
|
2411
|
-
[#2274]: https://github.com/tokio-rs/tokio/pull/2274
|
2412
|
-
[#2275]: https://github.com/tokio-rs/tokio/pull/2275
|
2413
|
-
|
2414
|
-
# 0.2.11 (January 27, 2020)
|
2415
|
-
|
2416
|
-
### Fixes
|
2417
|
-
|
2418
|
-
- docs: misc fixes and tweaks ([#2155], [#2103], [#2027], [#2167], [#2175]).
|
2419
|
-
- macros: handle generics in `#[tokio::main]` method ([#2177]).
|
2420
|
-
- sync: `broadcast` potential lost notifications ([#2135]).
|
2421
|
-
- rt: improve "no runtime" panic messages ([#2145]).
|
2422
|
-
|
2423
|
-
### Added
|
2424
|
-
|
2425
|
-
- optional support for using `parking_lot` internally ([#2164]).
|
2426
|
-
- fs: `fs::copy`, an async version of `std::fs::copy` ([#2079]).
|
2427
|
-
- macros: `select!` waits for the first branch to complete ([#2152]).
|
2428
|
-
- macros: `join!` waits for all branches to complete ([#2158]).
|
2429
|
-
- macros: `try_join!` waits for all branches to complete or the first error ([#2169]).
|
2430
|
-
- macros: `pin!` pins a value to the stack ([#2163]).
|
2431
|
-
- net: `ReadHalf::poll()` and `ReadHalf::poll_peak` ([#2151])
|
2432
|
-
- stream: `StreamExt::timeout()` sets a per-item max duration ([#2149]).
|
2433
|
-
- stream: `StreamExt::fold()` applies a function, producing a single value. ([#2122]).
|
2434
|
-
- sync: impl `Eq`, `PartialEq` for `oneshot::RecvError` ([#2168]).
|
2435
|
-
- task: methods for inspecting the `JoinError` cause ([#2051]).
|
2436
|
-
|
2437
|
-
[#2027]: https://github.com/tokio-rs/tokio/pull/2027
|
2438
|
-
[#2051]: https://github.com/tokio-rs/tokio/pull/2051
|
2439
|
-
[#2079]: https://github.com/tokio-rs/tokio/pull/2079
|
2440
|
-
[#2103]: https://github.com/tokio-rs/tokio/pull/2103
|
2441
|
-
[#2122]: https://github.com/tokio-rs/tokio/pull/2122
|
2442
|
-
[#2135]: https://github.com/tokio-rs/tokio/pull/2135
|
2443
|
-
[#2145]: https://github.com/tokio-rs/tokio/pull/2145
|
2444
|
-
[#2149]: https://github.com/tokio-rs/tokio/pull/2149
|
2445
|
-
[#2151]: https://github.com/tokio-rs/tokio/pull/2151
|
2446
|
-
[#2152]: https://github.com/tokio-rs/tokio/pull/2152
|
2447
|
-
[#2155]: https://github.com/tokio-rs/tokio/pull/2155
|
2448
|
-
[#2158]: https://github.com/tokio-rs/tokio/pull/2158
|
2449
|
-
[#2163]: https://github.com/tokio-rs/tokio/pull/2163
|
2450
|
-
[#2164]: https://github.com/tokio-rs/tokio/pull/2164
|
2451
|
-
[#2167]: https://github.com/tokio-rs/tokio/pull/2167
|
2452
|
-
[#2168]: https://github.com/tokio-rs/tokio/pull/2168
|
2453
|
-
[#2169]: https://github.com/tokio-rs/tokio/pull/2169
|
2454
|
-
[#2175]: https://github.com/tokio-rs/tokio/pull/2175
|
2455
|
-
[#2177]: https://github.com/tokio-rs/tokio/pull/2177
|
2456
|
-
|
2457
|
-
# 0.2.10 (January 21, 2020)
|
2458
|
-
|
2459
|
-
### Fixes
|
2460
|
-
|
2461
|
-
- `#[tokio::main]` when `rt-core` feature flag is not enabled ([#2139]).
|
2462
|
-
- remove `AsyncBufRead` from `BufStream` impl block ([#2108]).
|
2463
|
-
- potential undefined behavior when implementing `AsyncRead` incorrectly ([#2030]).
|
2464
|
-
|
2465
|
-
### Added
|
2466
|
-
|
2467
|
-
- `BufStream::with_capacity` ([#2125]).
|
2468
|
-
- impl `From` and `Default` for `RwLock` ([#2089]).
|
2469
|
-
- `io::ReadHalf::is_pair_of` checks if provided `WriteHalf` is for the same
|
2470
|
-
underlying object ([#1762], [#2144]).
|
2471
|
-
- `runtime::Handle::try_current()` returns a handle to the current runtime ([#2118]).
|
2472
|
-
- `stream::empty()` returns an immediately ready empty stream ([#2092]).
|
2473
|
-
- `stream::once(val)` returns a stream that yields a single value: `val` ([#2094]).
|
2474
|
-
- `stream::pending()` returns a stream that never becomes ready ([#2092]).
|
2475
|
-
- `StreamExt::chain()` sequences a second stream after the first completes ([#2093]).
|
2476
|
-
- `StreamExt::collect()` transform a stream into a collection ([#2109]).
|
2477
|
-
- `StreamExt::fuse` ends the stream after the first `None` ([#2085]).
|
2478
|
-
- `StreamExt::merge` combines two streams, yielding values as they become ready ([#2091]).
|
2479
|
-
- Task-local storage ([#2126]).
|
2480
|
-
|
2481
|
-
[#1762]: https://github.com/tokio-rs/tokio/pull/1762
|
2482
|
-
[#2030]: https://github.com/tokio-rs/tokio/pull/2030
|
2483
|
-
[#2085]: https://github.com/tokio-rs/tokio/pull/2085
|
2484
|
-
[#2089]: https://github.com/tokio-rs/tokio/pull/2089
|
2485
|
-
[#2091]: https://github.com/tokio-rs/tokio/pull/2091
|
2486
|
-
[#2092]: https://github.com/tokio-rs/tokio/pull/2092
|
2487
|
-
[#2093]: https://github.com/tokio-rs/tokio/pull/2093
|
2488
|
-
[#2094]: https://github.com/tokio-rs/tokio/pull/2094
|
2489
|
-
[#2108]: https://github.com/tokio-rs/tokio/pull/2108
|
2490
|
-
[#2109]: https://github.com/tokio-rs/tokio/pull/2109
|
2491
|
-
[#2118]: https://github.com/tokio-rs/tokio/pull/2118
|
2492
|
-
[#2125]: https://github.com/tokio-rs/tokio/pull/2125
|
2493
|
-
[#2126]: https://github.com/tokio-rs/tokio/pull/2126
|
2494
|
-
[#2139]: https://github.com/tokio-rs/tokio/pull/2139
|
2495
|
-
[#2144]: https://github.com/tokio-rs/tokio/pull/2144
|
2496
|
-
|
2497
|
-
# 0.2.9 (January 9, 2020)
|
2498
|
-
|
2499
|
-
### Fixes
|
2500
|
-
|
2501
|
-
- `AsyncSeek` impl for `File` ([#1986]).
|
2502
|
-
- rt: shutdown deadlock in `threaded_scheduler` ([#2074], [#2082]).
|
2503
|
-
- rt: memory ordering when dropping `JoinHandle` ([#2044]).
|
2504
|
-
- docs: misc API documentation fixes and improvements.
|
2505
|
-
|
2506
|
-
[#1986]: https://github.com/tokio-rs/tokio/pull/1986
|
2507
|
-
[#2044]: https://github.com/tokio-rs/tokio/pull/2044
|
2508
|
-
[#2074]: https://github.com/tokio-rs/tokio/pull/2074
|
2509
|
-
[#2082]: https://github.com/tokio-rs/tokio/pull/2082
|
2510
|
-
|
2511
|
-
# 0.2.8 (January 7, 2020)
|
2512
|
-
|
2513
|
-
### Fixes
|
2514
|
-
|
2515
|
-
- depend on new version of `tokio-macros`.
|
2516
|
-
|
2517
|
-
# 0.2.7 (January 7, 2020)
|
2518
|
-
|
2519
|
-
### Fixes
|
2520
|
-
|
2521
|
-
- potential deadlock when dropping `basic_scheduler` Runtime.
|
2522
|
-
- calling `spawn_blocking` from within a `spawn_blocking` ([#2006]).
|
2523
|
-
- storing a `Runtime` instance in a thread-local ([#2011]).
|
2524
|
-
- miscellaneous documentation fixes.
|
2525
|
-
- rt: fix `Waker::will_wake` to return true when tasks match ([#2045]).
|
2526
|
-
- test-util: `time::advance` runs pending tasks before changing the time ([#2059]).
|
2527
|
-
|
2528
|
-
### Added
|
2529
|
-
|
2530
|
-
- `net::lookup_host` maps a `T: ToSocketAddrs` to a stream of `SocketAddrs` ([#1870]).
|
2531
|
-
- `process::Child` fields are made public to match `std` ([#2014]).
|
2532
|
-
- impl `Stream` for `sync::broadcast::Receiver` ([#2012]).
|
2533
|
-
- `sync::RwLock` provides an asynchronous read-write lock ([#1699]).
|
2534
|
-
- `runtime::Handle::current` returns the handle for the current runtime ([#2040]).
|
2535
|
-
- `StreamExt::filter` filters stream values according to a predicate ([#2001]).
|
2536
|
-
- `StreamExt::filter_map` simultaneously filter and map stream values ([#2001]).
|
2537
|
-
- `StreamExt::try_next` convenience for streams of `Result<T, E>` ([#2005]).
|
2538
|
-
- `StreamExt::take` limits a stream to a specified number of values ([#2025]).
|
2539
|
-
- `StreamExt::take_while` limits a stream based on a predicate ([#2029]).
|
2540
|
-
- `StreamExt::all` tests if every element of the stream matches a predicate ([#2035]).
|
2541
|
-
- `StreamExt::any` tests if any element of the stream matches a predicate ([#2034]).
|
2542
|
-
- `task::LocalSet.await` runs spawned tasks until the set is idle ([#1971]).
|
2543
|
-
- `time::DelayQueue::len` returns the number entries in the queue ([#1755]).
|
2544
|
-
- expose runtime options from the `#[tokio::main]` and `#[tokio::test]` ([#2022]).
|
2545
|
-
|
2546
|
-
[#1699]: https://github.com/tokio-rs/tokio/pull/1699
|
2547
|
-
[#1755]: https://github.com/tokio-rs/tokio/pull/1755
|
2548
|
-
[#1870]: https://github.com/tokio-rs/tokio/pull/1870
|
2549
|
-
[#1971]: https://github.com/tokio-rs/tokio/pull/1971
|
2550
|
-
[#2001]: https://github.com/tokio-rs/tokio/pull/2001
|
2551
|
-
[#2005]: https://github.com/tokio-rs/tokio/pull/2005
|
2552
|
-
[#2006]: https://github.com/tokio-rs/tokio/pull/2006
|
2553
|
-
[#2011]: https://github.com/tokio-rs/tokio/pull/2011
|
2554
|
-
[#2012]: https://github.com/tokio-rs/tokio/pull/2012
|
2555
|
-
[#2014]: https://github.com/tokio-rs/tokio/pull/2014
|
2556
|
-
[#2022]: https://github.com/tokio-rs/tokio/pull/2022
|
2557
|
-
[#2025]: https://github.com/tokio-rs/tokio/pull/2025
|
2558
|
-
[#2029]: https://github.com/tokio-rs/tokio/pull/2029
|
2559
|
-
[#2034]: https://github.com/tokio-rs/tokio/pull/2034
|
2560
|
-
[#2035]: https://github.com/tokio-rs/tokio/pull/2035
|
2561
|
-
[#2040]: https://github.com/tokio-rs/tokio/pull/2040
|
2562
|
-
[#2045]: https://github.com/tokio-rs/tokio/pull/2045
|
2563
|
-
[#2059]: https://github.com/tokio-rs/tokio/pull/2059
|
2564
|
-
|
2565
|
-
# 0.2.6 (December 19, 2019)
|
2566
|
-
|
2567
|
-
### Fixes
|
2568
|
-
|
2569
|
-
- `fs::File::seek` API regression ([#1991]).
|
2570
|
-
|
2571
|
-
[#1991]: https://github.com/tokio-rs/tokio/pull/1991
|
2572
|
-
|
2573
|
-
# 0.2.5 (December 18, 2019)
|
2574
|
-
|
2575
|
-
### Added
|
2576
|
-
|
2577
|
-
- `io::AsyncSeek` trait ([#1924]).
|
2578
|
-
- `Mutex::try_lock` ([#1939])
|
2579
|
-
- `mpsc::Receiver::try_recv` and `mpsc::UnboundedReceiver::try_recv` ([#1939]).
|
2580
|
-
- `writev` support for `TcpStream` ([#1956]).
|
2581
|
-
- `time::throttle` for throttling streams ([#1949]).
|
2582
|
-
- implement `Stream` for `time::DelayQueue` ([#1975]).
|
2583
|
-
- `sync::broadcast` provides a fan-out channel ([#1943]).
|
2584
|
-
- `sync::Semaphore` provides an async semaphore ([#1973]).
|
2585
|
-
- `stream::StreamExt` provides stream utilities ([#1962]).
|
2586
|
-
|
2587
|
-
### Fixes
|
2588
|
-
|
2589
|
-
- deadlock risk while shutting down the runtime ([#1972]).
|
2590
|
-
- panic while shutting down the runtime ([#1978]).
|
2591
|
-
- `sync::MutexGuard` debug output ([#1961]).
|
2592
|
-
- misc doc improvements ([#1933], [#1934], [#1940], [#1942]).
|
2593
|
-
|
2594
|
-
### Changes
|
2595
|
-
|
2596
|
-
- runtime threads are configured with `runtime::Builder::core_threads` and
|
2597
|
-
`runtime::Builder::max_threads`. `runtime::Builder::num_threads` is
|
2598
|
-
deprecated ([#1977]).
|
2599
|
-
|
2600
|
-
[#1924]: https://github.com/tokio-rs/tokio/pull/1924
|
2601
|
-
[#1933]: https://github.com/tokio-rs/tokio/pull/1933
|
2602
|
-
[#1934]: https://github.com/tokio-rs/tokio/pull/1934
|
2603
|
-
[#1939]: https://github.com/tokio-rs/tokio/pull/1939
|
2604
|
-
[#1940]: https://github.com/tokio-rs/tokio/pull/1940
|
2605
|
-
[#1942]: https://github.com/tokio-rs/tokio/pull/1942
|
2606
|
-
[#1943]: https://github.com/tokio-rs/tokio/pull/1943
|
2607
|
-
[#1949]: https://github.com/tokio-rs/tokio/pull/1949
|
2608
|
-
[#1956]: https://github.com/tokio-rs/tokio/pull/1956
|
2609
|
-
[#1961]: https://github.com/tokio-rs/tokio/pull/1961
|
2610
|
-
[#1962]: https://github.com/tokio-rs/tokio/pull/1962
|
2611
|
-
[#1972]: https://github.com/tokio-rs/tokio/pull/1972
|
2612
|
-
[#1973]: https://github.com/tokio-rs/tokio/pull/1973
|
2613
|
-
[#1975]: https://github.com/tokio-rs/tokio/pull/1975
|
2614
|
-
[#1977]: https://github.com/tokio-rs/tokio/pull/1977
|
2615
|
-
[#1978]: https://github.com/tokio-rs/tokio/pull/1978
|
2616
|
-
|
2617
|
-
# 0.2.4 (December 6, 2019)
|
2618
|
-
|
2619
|
-
### Fixes
|
2620
|
-
|
2621
|
-
- `sync::Mutex` deadlock when `lock()` future is dropped early ([#1898]).
|
2622
|
-
|
2623
|
-
[#1898]: https://github.com/tokio-rs/tokio/pull/1898
|
2624
|
-
|
2625
|
-
# 0.2.3 (December 6, 2019)
|
2626
|
-
|
2627
|
-
### Added
|
2628
|
-
|
2629
|
-
- read / write integers using `AsyncReadExt` and `AsyncWriteExt` ([#1863]).
|
2630
|
-
- `read_buf` / `write_buf` for reading / writing `Buf` / `BufMut` ([#1881]).
|
2631
|
-
- `TcpStream::poll_peek` - pollable API for performing TCP peek ([#1864]).
|
2632
|
-
- `sync::oneshot::error::TryRecvError` provides variants to detect the error
|
2633
|
-
kind ([#1874]).
|
2634
|
-
- `LocalSet::block_on` accepts `!'static` task ([#1882]).
|
2635
|
-
- `task::JoinError` is now `Sync` ([#1888]).
|
2636
|
-
- impl conversions between `tokio::time::Instant` and
|
2637
|
-
`std::time::Instant` ([#1904]).
|
2638
|
-
|
2639
|
-
### Fixes
|
2640
|
-
|
2641
|
-
- calling `spawn_blocking` after runtime shutdown ([#1875]).
|
2642
|
-
- `LocalSet` drop infinite loop ([#1892]).
|
2643
|
-
- `LocalSet` hang under load ([#1905]).
|
2644
|
-
- improved documentation ([#1865], [#1866], [#1868], [#1874], [#1876], [#1911]).
|
2645
|
-
|
2646
|
-
[#1863]: https://github.com/tokio-rs/tokio/pull/1863
|
2647
|
-
[#1864]: https://github.com/tokio-rs/tokio/pull/1864
|
2648
|
-
[#1865]: https://github.com/tokio-rs/tokio/pull/1865
|
2649
|
-
[#1866]: https://github.com/tokio-rs/tokio/pull/1866
|
2650
|
-
[#1868]: https://github.com/tokio-rs/tokio/pull/1868
|
2651
|
-
[#1874]: https://github.com/tokio-rs/tokio/pull/1874
|
2652
|
-
[#1875]: https://github.com/tokio-rs/tokio/pull/1875
|
2653
|
-
[#1876]: https://github.com/tokio-rs/tokio/pull/1876
|
2654
|
-
[#1881]: https://github.com/tokio-rs/tokio/pull/1881
|
2655
|
-
[#1882]: https://github.com/tokio-rs/tokio/pull/1882
|
2656
|
-
[#1888]: https://github.com/tokio-rs/tokio/pull/1888
|
2657
|
-
[#1892]: https://github.com/tokio-rs/tokio/pull/1892
|
2658
|
-
[#1904]: https://github.com/tokio-rs/tokio/pull/1904
|
2659
|
-
[#1905]: https://github.com/tokio-rs/tokio/pull/1905
|
2660
|
-
[#1911]: https://github.com/tokio-rs/tokio/pull/1911
|
2661
|
-
|
2662
|
-
# 0.2.2 (November 29, 2019)
|
2663
|
-
|
2664
|
-
### Fixes
|
2665
|
-
|
2666
|
-
- scheduling with `basic_scheduler` ([#1861]).
|
2667
|
-
- update `spawn` panic message to specify that a task scheduler is required ([#1839]).
|
2668
|
-
- API docs example for `runtime::Builder` to include a task scheduler ([#1841]).
|
2669
|
-
- general documentation ([#1834]).
|
2670
|
-
- building on illumos/solaris ([#1772]).
|
2671
|
-
- panic when dropping `LocalSet` ([#1843]).
|
2672
|
-
- API docs mention the required Cargo features for `Builder::{basic, threaded}_scheduler` ([#1858]).
|
2673
|
-
|
2674
|
-
### Added
|
2675
|
-
|
2676
|
-
- impl `Stream` for `signal::unix::Signal` ([#1849]).
|
2677
|
-
- API docs for platform specific behavior of `signal::ctrl_c` and `signal::unix::Signal` ([#1854]).
|
2678
|
-
- API docs for `signal::unix::Signal::{recv, poll_recv}` and `signal::windows::CtrlBreak::{recv, poll_recv}` ([#1854]).
|
2679
|
-
- `File::into_std` and `File::try_into_std` methods ([#1856]).
|
2680
|
-
|
2681
|
-
[#1772]: https://github.com/tokio-rs/tokio/pull/1772
|
2682
|
-
[#1834]: https://github.com/tokio-rs/tokio/pull/1834
|
2683
|
-
[#1839]: https://github.com/tokio-rs/tokio/pull/1839
|
2684
|
-
[#1841]: https://github.com/tokio-rs/tokio/pull/1841
|
2685
|
-
[#1843]: https://github.com/tokio-rs/tokio/pull/1843
|
2686
|
-
[#1849]: https://github.com/tokio-rs/tokio/pull/1849
|
2687
|
-
[#1854]: https://github.com/tokio-rs/tokio/pull/1854
|
2688
|
-
[#1856]: https://github.com/tokio-rs/tokio/pull/1856
|
2689
|
-
[#1858]: https://github.com/tokio-rs/tokio/pull/1858
|
2690
|
-
[#1861]: https://github.com/tokio-rs/tokio/pull/1861
|
2691
|
-
|
2692
|
-
# 0.2.1 (November 26, 2019)
|
2693
|
-
|
2694
|
-
### Fixes
|
2695
|
-
|
2696
|
-
- API docs for `TcpListener::incoming`, `UnixListener::incoming` ([#1831]).
|
2697
|
-
|
2698
|
-
### Added
|
2699
|
-
|
2700
|
-
- `tokio::task::LocalSet` provides a strategy for spawning `!Send` tasks ([#1733]).
|
2701
|
-
- export `tokio::time::Elapsed` ([#1826]).
|
2702
|
-
- impl `AsRawFd`, `AsRawHandle` for `tokio::fs::File` ([#1827]).
|
2703
|
-
|
2704
|
-
[#1733]: https://github.com/tokio-rs/tokio/pull/1733
|
2705
|
-
[#1826]: https://github.com/tokio-rs/tokio/pull/1826
|
2706
|
-
[#1827]: https://github.com/tokio-rs/tokio/pull/1827
|
2707
|
-
[#1831]: https://github.com/tokio-rs/tokio/pull/1831
|
2708
|
-
|
2709
|
-
# 0.2.0 (November 26, 2019)
|
2710
|
-
|
2711
|
-
A major breaking change. Most implementation and APIs have changed one way or
|
2712
|
-
another. This changelog entry contains a highlight
|
2713
|
-
|
2714
|
-
### Changed
|
2715
|
-
|
2716
|
-
- APIs are updated to use `async / await`.
|
2717
|
-
- most `tokio-*` crates are collapsed into this crate.
|
2718
|
-
- Scheduler is rewritten.
|
2719
|
-
- `tokio::spawn` returns a `JoinHandle`.
|
2720
|
-
- A single I/O / timer is used per runtime.
|
2721
|
-
- I/O driver uses a concurrent slab for allocating state.
|
2722
|
-
- components are made available via feature flag.
|
2723
|
-
- Use `bytes` 0.5
|
2724
|
-
- `tokio::codec` is moved to `tokio-util`.
|
2725
|
-
|
2726
|
-
### Removed
|
2727
|
-
|
2728
|
-
- Standalone `timer` and `net` drivers are removed, use `Runtime` instead
|
2729
|
-
- `current_thread` runtime is removed, use `tokio::runtime::Runtime` with
|
2730
|
-
`basic_scheduler` instead.
|
2731
|
-
|
2732
|
-
# 0.1.21 (May 30, 2019)
|
2733
|
-
|
2734
|
-
### Changed
|
2735
|
-
|
2736
|
-
- Bump `tokio-trace-core` version to 0.2 ([#1111]).
|
2737
|
-
|
2738
|
-
[#1111]: https://github.com/tokio-rs/tokio/pull/1111
|
2739
|
-
|
2740
|
-
# 0.1.20 (May 14, 2019)
|
2741
|
-
|
2742
|
-
### Added
|
2743
|
-
|
2744
|
-
- `tokio::runtime::Builder::panic_handler` allows configuring handling
|
2745
|
-
panics on the runtime ([#1055]).
|
2746
|
-
|
2747
|
-
[#1055]: https://github.com/tokio-rs/tokio/pull/1055
|
2748
|
-
|
2749
|
-
# 0.1.19 (April 22, 2019)
|
2750
|
-
|
2751
|
-
### Added
|
2752
|
-
|
2753
|
-
- Re-export `tokio::sync::Mutex` primitive ([#964]).
|
2754
|
-
|
2755
|
-
[#964]: https://github.com/tokio-rs/tokio/pull/964
|
2756
|
-
|
2757
|
-
# 0.1.18 (March 22, 2019)
|
2758
|
-
|
2759
|
-
### Added
|
2760
|
-
|
2761
|
-
- `TypedExecutor` re-export and implementations ([#993]).
|
2762
|
-
|
2763
|
-
[#993]: https://github.com/tokio-rs/tokio/pull/993
|
2764
|
-
|
2765
|
-
# 0.1.17 (March 13, 2019)
|
2766
|
-
|
2767
|
-
### Added
|
2768
|
-
|
2769
|
-
- Propagate trace subscriber in the runtime ([#966]).
|
2770
|
-
|
2771
|
-
[#966]: https://github.com/tokio-rs/tokio/pull/966
|
2772
|
-
|
2773
|
-
# 0.1.16 (March 1, 2019)
|
2774
|
-
|
2775
|
-
### Fixed
|
2776
|
-
|
2777
|
-
- async-await: track latest nightly changes ([#940]).
|
2778
|
-
|
2779
|
-
### Added
|
2780
|
-
|
2781
|
-
- `sync::Watch`, a single value broadcast channel ([#922]).
|
2782
|
-
- Async equivalent of read / write file helpers being added to `std` ([#896]).
|
2783
|
-
|
2784
|
-
[#896]: https://github.com/tokio-rs/tokio/pull/896
|
2785
|
-
[#922]: https://github.com/tokio-rs/tokio/pull/922
|
2786
|
-
[#940]: https://github.com/tokio-rs/tokio/pull/940
|
2787
|
-
|
2788
|
-
# 0.1.15 (January 24, 2019)
|
2789
|
-
|
2790
|
-
### Added
|
2791
|
-
|
2792
|
-
- Re-export tokio-sync APIs ([#839]).
|
2793
|
-
- Stream enumerate combinator ([#832]).
|
2794
|
-
|
2795
|
-
[#832]: https://github.com/tokio-rs/tokio/pull/832
|
2796
|
-
[#839]: https://github.com/tokio-rs/tokio/pull/839
|
2797
|
-
|
2798
|
-
# 0.1.14 (January 6, 2019)
|
2799
|
-
|
2800
|
-
- Use feature flags to break up the crate, allowing users to pick & choose
|
2801
|
-
components ([#808]).
|
2802
|
-
- Export `UnixDatagram` and `UnixDatagramFramed` ([#772]).
|
2803
|
-
|
2804
|
-
[#772]: https://github.com/tokio-rs/tokio/pull/772
|
2805
|
-
[#808]: https://github.com/tokio-rs/tokio/pull/808
|
2806
|
-
|
2807
|
-
# 0.1.13 (November 21, 2018)
|
2808
|
-
|
2809
|
-
- Fix `Runtime::reactor()` when no tasks are spawned ([#721]).
|
2810
|
-
- `runtime::Builder` no longer uses deprecated methods ([#749]).
|
2811
|
-
- Provide `after_start` and `before_stop` configuration settings for
|
2812
|
-
`Runtime` ([#756]).
|
2813
|
-
- Implement throttle stream combinator ([#736]).
|
2814
|
-
|
2815
|
-
[#721]: https://github.com/tokio-rs/tokio/pull/721
|
2816
|
-
[#736]: https://github.com/tokio-rs/tokio/pull/736
|
2817
|
-
[#749]: https://github.com/tokio-rs/tokio/pull/749
|
2818
|
-
[#756]: https://github.com/tokio-rs/tokio/pull/756
|
2819
|
-
|
2820
|
-
# 0.1.12 (October 23, 2018)
|
2821
|
-
|
2822
|
-
- runtime: expose `keep_alive` on runtime builder ([#676]).
|
2823
|
-
- runtime: create a reactor per worker thread ([#660]).
|
2824
|
-
- codec: fix panic in `LengthDelimitedCodec` ([#682]).
|
2825
|
-
- io: re-export `tokio_io::io::read` function ([#689]).
|
2826
|
-
- runtime: check for executor re-entry in more places ([#708]).
|
2827
|
-
|
2828
|
-
[#660]: https://github.com/tokio-rs/tokio/pull/660
|
2829
|
-
[#676]: https://github.com/tokio-rs/tokio/pull/676
|
2830
|
-
[#682]: https://github.com/tokio-rs/tokio/pull/682
|
2831
|
-
[#689]: https://github.com/tokio-rs/tokio/pull/689
|
2832
|
-
[#708]: https://github.com/tokio-rs/tokio/pull/708
|
2833
|
-
|
2834
|
-
# 0.1.11 (September 28, 2018)
|
2835
|
-
|
2836
|
-
- Fix `tokio-async-await` dependency ([#675]).
|
2837
|
-
|
2838
|
-
[#675]: https://github.com/tokio-rs/tokio/pull/675
|
2839
|
-
|
2840
|
-
# 0.1.10 (September 27, 2018)
|
2841
|
-
|
2842
|
-
- Fix minimal versions
|
2843
|
-
|
2844
|
-
# 0.1.9 (September 27, 2018)
|
2845
|
-
|
2846
|
-
- Experimental async/await improvements ([#661]).
|
2847
|
-
- Re-export `TaskExecutor` from `tokio-current-thread` ([#652]).
|
2848
|
-
- Improve `Runtime` builder API ([#645]).
|
2849
|
-
- `tokio::run` panics when called from the context of an executor
|
2850
|
-
([#646]).
|
2851
|
-
- Introduce `StreamExt` with a `timeout` helper ([#573]).
|
2852
|
-
- Move `length_delimited` into `tokio` ([#575]).
|
2853
|
-
- Re-organize `tokio::net` module ([#548]).
|
2854
|
-
- Re-export `tokio-current-thread::spawn` in current_thread runtime
|
2855
|
-
([#579]).
|
2856
|
-
|
2857
|
-
[#548]: https://github.com/tokio-rs/tokio/pull/548
|
2858
|
-
[#573]: https://github.com/tokio-rs/tokio/pull/573
|
2859
|
-
[#575]: https://github.com/tokio-rs/tokio/pull/575
|
2860
|
-
[#579]: https://github.com/tokio-rs/tokio/pull/579
|
2861
|
-
[#645]: https://github.com/tokio-rs/tokio/pull/645
|
2862
|
-
[#646]: https://github.com/tokio-rs/tokio/pull/646
|
2863
|
-
[#652]: https://github.com/tokio-rs/tokio/pull/652
|
2864
|
-
[#661]: https://github.com/tokio-rs/tokio/pull/661
|
2865
|
-
|
2866
|
-
# 0.1.8 (August 23, 2018)
|
2867
|
-
|
2868
|
-
- Extract tokio::executor::current_thread to a sub crate ([#370])
|
2869
|
-
- Add `Runtime::block_on` ([#398])
|
2870
|
-
- Add `runtime::current_thread::block_on_all` ([#477])
|
2871
|
-
- Misc documentation improvements ([#450])
|
2872
|
-
- Implement `std::error::Error` for error types ([#501])
|
2873
|
-
|
2874
|
-
[#370]: https://github.com/tokio-rs/tokio/pull/370
|
2875
|
-
[#398]: https://github.com/tokio-rs/tokio/pull/398
|
2876
|
-
[#450]: https://github.com/tokio-rs/tokio/pull/450
|
2877
|
-
[#477]: https://github.com/tokio-rs/tokio/pull/477
|
2878
|
-
[#501]: https://github.com/tokio-rs/tokio/pull/501
|
2879
|
-
|
2880
|
-
# 0.1.7 (June 6, 2018)
|
2881
|
-
|
2882
|
-
- Add `Runtime::block_on` for concurrent runtime ([#391]).
|
2883
|
-
- Provide handle to `current_thread::Runtime` that allows spawning tasks from
|
2884
|
-
other threads ([#340]).
|
2885
|
-
- Provide `clock::now()`, a configurable source of time ([#381]).
|
2886
|
-
|
2887
|
-
[#340]: https://github.com/tokio-rs/tokio/pull/340
|
2888
|
-
[#381]: https://github.com/tokio-rs/tokio/pull/381
|
2889
|
-
[#391]: https://github.com/tokio-rs/tokio/pull/391
|
2890
|
-
|
2891
|
-
# 0.1.6 (May 2, 2018)
|
2892
|
-
|
2893
|
-
- Add asynchronous filesystem APIs ([#323]).
|
2894
|
-
- Add "current thread" runtime variant ([#308]).
|
2895
|
-
- `CurrentThread`: Expose inner `Park` instance.
|
2896
|
-
- Improve fairness of `CurrentThread` executor ([#313]).
|
2897
|
-
|
2898
|
-
[#308]: https://github.com/tokio-rs/tokio/pull/308
|
2899
|
-
[#313]: https://github.com/tokio-rs/tokio/pull/313
|
2900
|
-
[#323]: https://github.com/tokio-rs/tokio/pull/323
|
2901
|
-
|
2902
|
-
# 0.1.5 (March 30, 2018)
|
2903
|
-
|
2904
|
-
- Provide timer API ([#266])
|
2905
|
-
|
2906
|
-
[#266]: https://github.com/tokio-rs/tokio/pull/266
|
2907
|
-
|
2908
|
-
# 0.1.4 (March 22, 2018)
|
2909
|
-
|
2910
|
-
- Fix build on FreeBSD ([#218])
|
2911
|
-
- Shutdown the Runtime when the handle is dropped ([#214])
|
2912
|
-
- Set Runtime thread name prefix for worker threads ([#232])
|
2913
|
-
- Add builder for Runtime ([#234])
|
2914
|
-
- Extract TCP and UDP types into separate crates ([#224])
|
2915
|
-
- Optionally support futures 0.2.
|
2916
|
-
|
2917
|
-
[#214]: https://github.com/tokio-rs/tokio/pull/214
|
2918
|
-
[#218]: https://github.com/tokio-rs/tokio/pull/218
|
2919
|
-
[#224]: https://github.com/tokio-rs/tokio/pull/224
|
2920
|
-
[#232]: https://github.com/tokio-rs/tokio/pull/232
|
2921
|
-
[#234]: https://github.com/tokio-rs/tokio/pull/234
|
2922
|
-
|
2923
|
-
# 0.1.3 (March 09, 2018)
|
2924
|
-
|
2925
|
-
- Fix `CurrentThread::turn` to block on idle ([#212]).
|
2926
|
-
|
2927
|
-
[#212]: https://github.com/tokio-rs/tokio/pull/212
|
2928
|
-
|
2929
|
-
# 0.1.2 (March 09, 2018)
|
2930
|
-
|
2931
|
-
- Introduce Tokio Runtime ([#141])
|
2932
|
-
- Provide `CurrentThread` for more flexible usage of current thread executor ([#141]).
|
2933
|
-
- Add Lio for platforms that support it ([#142]).
|
2934
|
-
- I/O resources now lazily bind to the reactor ([#160]).
|
2935
|
-
- Extract Reactor to dedicated crate ([#169])
|
2936
|
-
- Add facade to sub crates and add prelude ([#166]).
|
2937
|
-
- Switch TCP/UDP fns to poll\_ -> Poll<...> style ([#175])
|
2938
|
-
|
2939
|
-
[#141]: https://github.com/tokio-rs/tokio/pull/141
|
2940
|
-
[#142]: https://github.com/tokio-rs/tokio/pull/142
|
2941
|
-
[#160]: https://github.com/tokio-rs/tokio/pull/160
|
2942
|
-
[#166]: https://github.com/tokio-rs/tokio/pull/166
|
2943
|
-
[#169]: https://github.com/tokio-rs/tokio/pull/169
|
2944
|
-
[#175]: https://github.com/tokio-rs/tokio/pull/175
|
2945
|
-
|
2946
|
-
# 0.1.1 (February 09, 2018)
|
2947
|
-
|
2948
|
-
- Doc fixes
|
2949
|
-
|
2950
|
-
# 0.1.0 (February 07, 2018)
|
2951
|
-
|
2952
|
-
- Initial crate released based on [RFC](https://github.com/tokio-rs/tokio-rfcs/pull/3).
|