Merge ~liushuyu-011/ubuntu/+source/rust-cargo-c:ubuntu/devel into ubuntu/+source/rust-cargo-c:debian/sid
Proposed by
Zixing Liu
Status: | Needs review | ||||
---|---|---|---|---|---|
Proposed branch: | ~liushuyu-011/ubuntu/+source/rust-cargo-c:ubuntu/devel | ||||
Merge into: | ubuntu/+source/rust-cargo-c:debian/sid | ||||
Diff against target: |
4337743 lines (+4258775/-39) 13038 files modified
debian/README.source (+11/-0) debian/changelog (+47/-0) debian/control (+18/-35) debian/patches/relax-clap.patch (+1/-1) debian/patches/relax-implib.patch (+1/-1) debian/patches/relax-object.patch (+1/-1) debian/patches/remove-nghttp2-sys.patch (+16/-0) debian/patches/series (+2/-1) debian/rules (+11/-0) vendor/adler2/.cargo-checksum.json (+1/-0) vendor/adler2/CHANGELOG.md (+77/-0) vendor/adler2/Cargo.toml (+97/-0) vendor/adler2/LICENSE-0BSD (+12/-0) vendor/adler2/LICENSE-APACHE (+201/-0) vendor/adler2/LICENSE-MIT (+23/-0) vendor/adler2/README.md (+46/-0) vendor/adler2/RELEASE_PROCESS.md (+13/-0) vendor/adler2/benches/bench.rs (+109/-0) vendor/adler2/src/algo.rs (+155/-0) vendor/adler2/src/lib.rs (+287/-0) vendor/ahash/.cargo-checksum.json (+1/-0) vendor/ahash/Cargo.toml (+167/-0) vendor/ahash/FAQ.md (+118/-0) vendor/ahash/LICENSE-APACHE (+201/-0) vendor/ahash/LICENSE-MIT (+25/-0) vendor/ahash/README.md (+109/-0) vendor/ahash/build.rs (+20/-0) vendor/ahash/rustfmt.toml (+1/-0) vendor/ahash/src/aes_hash.rs (+433/-0) vendor/ahash/src/convert.rs (+162/-0) vendor/ahash/src/fallback_hash.rs (+367/-0) vendor/ahash/src/hash_map.rs (+501/-0) vendor/ahash/src/hash_quality_test.rs (+534/-0) vendor/ahash/src/hash_set.rs (+352/-0) vendor/ahash/src/lib.rs (+396/-0) vendor/ahash/src/operations.rs (+372/-0) vendor/ahash/src/random_state.rs (+528/-0) vendor/ahash/src/specialize.rs (+218/-0) vendor/ahash/tests/bench.rs (+199/-0) vendor/ahash/tests/map_tests.rs (+310/-0) vendor/ahash/tests/nopanic.rs (+81/-0) vendor/aho-corasick/.cargo-checksum.json (+1/-0) vendor/aho-corasick/COPYING (+3/-0) vendor/aho-corasick/Cargo.toml (+74/-0) vendor/aho-corasick/DESIGN.md (+481/-0) vendor/aho-corasick/LICENSE-MIT (+21/-0) vendor/aho-corasick/README.md (+174/-0) vendor/aho-corasick/UNLICENSE (+24/-0) vendor/aho-corasick/rustfmt.toml (+2/-0) vendor/aho-corasick/src/ahocorasick.rs (+2789/-0) vendor/aho-corasick/src/automaton.rs (+1608/-0) vendor/aho-corasick/src/dfa.rs (+835/-0) vendor/aho-corasick/src/lib.rs (+326/-0) vendor/aho-corasick/src/macros.rs (+18/-0) vendor/aho-corasick/src/nfa/contiguous.rs (+1141/-0) vendor/aho-corasick/src/nfa/mod.rs (+40/-0) vendor/aho-corasick/src/nfa/noncontiguous.rs (+1762/-0) vendor/aho-corasick/src/packed/api.rs (+687/-0) vendor/aho-corasick/src/packed/ext.rs (+39/-0) vendor/aho-corasick/src/packed/mod.rs (+120/-0) vendor/aho-corasick/src/packed/pattern.rs (+480/-0) vendor/aho-corasick/src/packed/rabinkarp.rs (+168/-0) vendor/aho-corasick/src/packed/teddy/README.md (+386/-0) vendor/aho-corasick/src/packed/teddy/builder.rs (+792/-0) vendor/aho-corasick/src/packed/teddy/generic.rs (+1382/-0) vendor/aho-corasick/src/packed/teddy/mod.rs (+9/-0) vendor/aho-corasick/src/packed/tests.rs (+583/-0) vendor/aho-corasick/src/packed/vector.rs (+1757/-0) vendor/aho-corasick/src/tests.rs (+1664/-0) vendor/aho-corasick/src/transducer.rs (+270/-0) vendor/aho-corasick/src/util/alphabet.rs (+409/-0) vendor/aho-corasick/src/util/buffer.rs (+124/-0) vendor/aho-corasick/src/util/byte_frequencies.rs (+258/-0) vendor/aho-corasick/src/util/debug.rs (+26/-0) vendor/aho-corasick/src/util/error.rs (+259/-0) vendor/aho-corasick/src/util/int.rs (+278/-0) vendor/aho-corasick/src/util/mod.rs (+12/-0) vendor/aho-corasick/src/util/prefilter.rs (+924/-0) vendor/aho-corasick/src/util/primitives.rs (+759/-0) vendor/aho-corasick/src/util/remapper.rs (+214/-0) vendor/aho-corasick/src/util/search.rs (+1148/-0) vendor/aho-corasick/src/util/special.rs (+42/-0) vendor/allocator-api2/.cargo-checksum.json (+1/-0) vendor/allocator-api2/CHANGELOG.md (+7/-0) vendor/allocator-api2/Cargo.toml (+32/-0) vendor/allocator-api2/LICENSE-APACHE (+176/-0) vendor/allocator-api2/LICENSE-MIT (+23/-0) vendor/allocator-api2/README.md (+53/-0) vendor/allocator-api2/src/lib.rs (+19/-0) vendor/allocator-api2/src/nightly.rs (+5/-0) vendor/allocator-api2/src/stable/alloc/global.rs (+187/-0) vendor/allocator-api2/src/stable/alloc/mod.rs (+416/-0) vendor/allocator-api2/src/stable/alloc/system.rs (+172/-0) vendor/allocator-api2/src/stable/boxed.rs (+2155/-0) vendor/allocator-api2/src/stable/macros.rs (+83/-0) vendor/allocator-api2/src/stable/mod.rs (+62/-0) vendor/allocator-api2/src/stable/raw_vec.rs (+642/-0) vendor/allocator-api2/src/stable/slice.rs (+171/-0) vendor/allocator-api2/src/stable/vec/drain.rs (+242/-0) vendor/allocator-api2/src/stable/vec/into_iter.rs (+198/-0) vendor/allocator-api2/src/stable/vec/mod.rs (+3288/-0) vendor/allocator-api2/src/stable/vec/partial_eq.rs (+43/-0) vendor/allocator-api2/src/stable/vec/set_len_on_drop.rs (+31/-0) vendor/allocator-api2/src/stable/vec/splice.rs (+135/-0) vendor/annotate-snippets/.cargo-checksum.json (+1/-0) vendor/annotate-snippets/CHANGELOG.md (+164/-0) vendor/annotate-snippets/Cargo.lock (+1043/-0) vendor/annotate-snippets/Cargo.toml (+223/-0) vendor/annotate-snippets/LICENSE-APACHE (+201/-0) vendor/annotate-snippets/LICENSE-MIT (+19/-0) vendor/annotate-snippets/README.md (+25/-0) vendor/annotate-snippets/benches/simple.rs (+58/-0) vendor/annotate-snippets/committed.toml (+3/-0) vendor/annotate-snippets/deny.toml (+236/-0) vendor/annotate-snippets/examples/expected_type.rs (+23/-0) vendor/annotate-snippets/examples/expected_type.svg (+46/-0) vendor/annotate-snippets/examples/footer.rs (+22/-0) vendor/annotate-snippets/examples/footer.svg (+43/-0) vendor/annotate-snippets/examples/format.rs (+44/-0) vendor/annotate-snippets/examples/format.svg (+85/-0) vendor/annotate-snippets/examples/multislice.rs (+19/-0) vendor/annotate-snippets/examples/multislice.svg (+44/-0) vendor/annotate-snippets/release.toml (+1/-0) vendor/annotate-snippets/src/lib.rs (+50/-0) vendor/annotate-snippets/src/renderer/display_list.rs (+1392/-0) vendor/annotate-snippets/src/renderer/margin.rs (+119/-0) vendor/annotate-snippets/src/renderer/mod.rs (+162/-0) vendor/annotate-snippets/src/renderer/stylesheet.rs (+68/-0) vendor/annotate-snippets/src/snippet.rs (+157/-0) vendor/annotate-snippets/tests/examples.rs (+37/-0) vendor/annotate-snippets/tests/fixtures/deserialize.rs (+166/-0) vendor/annotate-snippets/tests/fixtures/main.rs (+32/-0) vendor/annotate-snippets/tests/fixtures/no-color/ann_eof.svg (+33/-0) vendor/annotate-snippets/tests/fixtures/no-color/ann_eof.toml (+12/-0) vendor/annotate-snippets/tests/fixtures/no-color/ann_insertion.svg (+33/-0) vendor/annotate-snippets/tests/fixtures/no-color/ann_insertion.toml (+12/-0) vendor/annotate-snippets/tests/fixtures/no-color/ann_multiline.svg (+39/-0) vendor/annotate-snippets/tests/fixtures/no-color/ann_multiline.toml (+18/-0) vendor/annotate-snippets/tests/fixtures/no-color/ann_multiline2.svg (+37/-0) vendor/annotate-snippets/tests/fixtures/no-color/ann_multiline2.toml (+18/-0) vendor/annotate-snippets/tests/fixtures/no-color/ann_removed_nl.svg (+33/-0) vendor/annotate-snippets/tests/fixtures/no-color/ann_removed_nl.toml (+12/-0) vendor/annotate-snippets/tests/fixtures/no-color/ensure-emoji-highlight-width.svg (+33/-0) vendor/annotate-snippets/tests/fixtures/no-color/ensure-emoji-highlight-width.toml (+15/-0) vendor/annotate-snippets/tests/fixtures/no-color/fold_ann_multiline.svg (+45/-0) vendor/annotate-snippets/tests/fixtures/no-color/fold_ann_multiline.toml (+41/-0) vendor/annotate-snippets/tests/fixtures/no-color/fold_bad_origin_line.svg (+33/-0) vendor/annotate-snippets/tests/fixtures/no-color/fold_bad_origin_line.toml (+17/-0) vendor/annotate-snippets/tests/fixtures/no-color/fold_leading.svg (+33/-0) vendor/annotate-snippets/tests/fixtures/no-color/fold_leading.toml (+26/-0) vendor/annotate-snippets/tests/fixtures/no-color/fold_trailing.svg (+33/-0) vendor/annotate-snippets/tests/fixtures/no-color/fold_trailing.toml (+25/-0) vendor/annotate-snippets/tests/fixtures/no-color/issue_9.svg (+45/-0) vendor/annotate-snippets/tests/fixtures/no-color/issue_9.toml (+28/-0) vendor/annotate-snippets/tests/fixtures/no-color/multiple_annotations.svg (+51/-0) vendor/annotate-snippets/tests/fixtures/no-color/multiple_annotations.toml (+29/-0) vendor/annotate-snippets/tests/fixtures/no-color/simple.svg (+39/-0) vendor/annotate-snippets/tests/fixtures/no-color/simple.toml (+19/-0) vendor/annotate-snippets/tests/fixtures/no-color/strip_line.svg (+33/-0) vendor/annotate-snippets/tests/fixtures/no-color/strip_line.toml (+18/-0) vendor/annotate-snippets/tests/fixtures/no-color/strip_line_char.svg (+33/-0) vendor/annotate-snippets/tests/fixtures/no-color/strip_line_char.toml (+18/-0) vendor/annotate-snippets/tests/fixtures/no-color/strip_line_non_ws.svg (+35/-0) vendor/annotate-snippets/tests/fixtures/no-color/strip_line_non_ws.toml (+25/-0) vendor/annotate-snippets/tests/formatter.rs (+734/-0) vendor/anstream/.cargo-checksum.json (+1/-0) vendor/anstream/Cargo.lock (+653/-0) vendor/anstream/Cargo.toml (+232/-0) vendor/anstream/LICENSE-APACHE (+202/-0) vendor/anstream/LICENSE-MIT (+19/-0) vendor/anstream/README.md (+34/-0) vendor/anstream/benches/stream.rs (+104/-0) vendor/anstream/benches/strip.rs (+135/-0) vendor/anstream/benches/wincon.rs (+47/-0) vendor/anstream/examples/dump-stream.rs (+130/-0) vendor/anstream/examples/query-stream.rs (+22/-0) vendor/anstream/src/adapter/mod.rs (+15/-0) vendor/anstream/src/adapter/strip.rs (+511/-0) vendor/anstream/src/adapter/wincon.rs (+387/-0) vendor/anstream/src/auto.rs (+302/-0) vendor/anstream/src/buffer.rs (+68/-0) vendor/anstream/src/fmt.rs (+54/-0) vendor/anstream/src/lib.rs (+85/-0) vendor/anstream/src/macros.rs (+389/-0) vendor/anstream/src/stream.rs (+266/-0) vendor/anstream/src/strip.rs (+227/-0) vendor/anstream/src/wincon.rs (+225/-0) vendor/anstyle-parse/.cargo-checksum.json (+1/-0) vendor/anstyle-parse/Cargo.lock (+713/-0) vendor/anstyle-parse/Cargo.toml (+199/-0) vendor/anstyle-parse/LICENSE-APACHE (+201/-0) vendor/anstyle-parse/LICENSE-MIT (+25/-0) vendor/anstyle-parse/README.md (+33/-0) vendor/anstyle-parse/benches/parse.rs (+207/-0) vendor/anstyle-parse/examples/parselog.rs (+78/-0) vendor/anstyle-parse/src/lib.rs (+438/-0) vendor/anstyle-parse/src/params.rs (+143/-0) vendor/anstyle-parse/src/state/codegen.rs (+218/-0) vendor/anstyle-parse/src/state/definitions.rs (+171/-0) vendor/anstyle-parse/src/state/mod.rs (+43/-0) vendor/anstyle-parse/src/state/table.rs (+361/-0) vendor/anstyle-query/.cargo-checksum.json (+1/-0) vendor/anstyle-query/Cargo.lock (+83/-0) vendor/anstyle-query/Cargo.toml (+170/-0) vendor/anstyle-query/LICENSE-APACHE (+202/-0) vendor/anstyle-query/LICENSE-MIT (+19/-0) vendor/anstyle-query/README.md (+15/-0) vendor/anstyle-query/examples/query.rs (+26/-0) vendor/anstyle-query/src/lib.rs (+160/-0) vendor/anstyle-query/src/windows.rs (+78/-0) vendor/anstyle-wincon/.cargo-checksum.json (+1/-0) vendor/anstyle-wincon/Cargo.toml (+141/-0) vendor/anstyle-wincon/src/lib.rs (+0/-0) vendor/anstyle/.cargo-checksum.json (+1/-0) vendor/anstyle/Cargo.lock (+16/-0) vendor/anstyle/Cargo.toml (+175/-0) vendor/anstyle/LICENSE-APACHE (+202/-0) vendor/anstyle/LICENSE-MIT (+19/-0) vendor/anstyle/README.md (+42/-0) vendor/anstyle/examples/dump-style.rs (+134/-0) vendor/anstyle/src/color.rs (+687/-0) vendor/anstyle/src/effect.rs (+405/-0) vendor/anstyle/src/lib.rs (+64/-0) vendor/anstyle/src/macros.rs (+5/-0) vendor/anstyle/src/reset.rs (+47/-0) vendor/anstyle/src/style.rs (+437/-0) vendor/anyhow/.cargo-checksum.json (+1/-0) vendor/anyhow/Cargo.toml (+126/-0) vendor/anyhow/LICENSE-APACHE (+176/-0) vendor/anyhow/LICENSE-MIT (+23/-0) vendor/anyhow/README.md (+181/-0) vendor/anyhow/build.rs (+192/-0) vendor/anyhow/build/probe.rs (+35/-0) vendor/anyhow/rust-toolchain.toml (+2/-0) vendor/anyhow/src/backtrace.rs (+411/-0) vendor/anyhow/src/chain.rs (+102/-0) vendor/anyhow/src/context.rs (+193/-0) vendor/anyhow/src/ensure.rs (+919/-0) vendor/anyhow/src/error.rs (+1027/-0) vendor/anyhow/src/fmt.rs (+158/-0) vendor/anyhow/src/kind.rs (+121/-0) vendor/anyhow/src/lib.rs (+731/-0) vendor/anyhow/src/macros.rs (+241/-0) vendor/anyhow/src/ptr.rs (+199/-0) vendor/anyhow/src/wrapper.rs (+84/-0) vendor/anyhow/tests/common/mod.rs (+14/-0) vendor/anyhow/tests/compiletest.rs (+7/-0) vendor/anyhow/tests/drop/mod.rs (+53/-0) vendor/anyhow/tests/test_autotrait.rs (+34/-0) vendor/anyhow/tests/test_backtrace.rs (+15/-0) vendor/anyhow/tests/test_boxed.rs (+45/-0) vendor/anyhow/tests/test_chain.rs (+69/-0) vendor/anyhow/tests/test_context.rs (+172/-0) vendor/anyhow/tests/test_convert.rs (+46/-0) vendor/anyhow/tests/test_downcast.rs (+123/-0) vendor/anyhow/tests/test_ensure.rs (+741/-0) vendor/anyhow/tests/test_ffi.rs (+18/-0) vendor/anyhow/tests/test_fmt.rs (+93/-0) vendor/anyhow/tests/test_macros.rs (+96/-0) vendor/anyhow/tests/test_repr.rs (+30/-0) vendor/anyhow/tests/test_source.rs (+62/-0) vendor/anyhow/tests/ui/chained-comparison.rs (+8/-0) vendor/anyhow/tests/ui/chained-comparison.stderr (+10/-0) vendor/anyhow/tests/ui/empty-ensure.rs (+6/-0) vendor/anyhow/tests/ui/empty-ensure.stderr (+12/-0) vendor/anyhow/tests/ui/ensure-nonbool.rs (+40/-0) vendor/anyhow/tests/ui/ensure-nonbool.stderr (+91/-0) vendor/anyhow/tests/ui/must-use.rs (+11/-0) vendor/anyhow/tests/ui/must-use.stderr (+12/-0) vendor/anyhow/tests/ui/no-impl.rs (+8/-0) vendor/anyhow/tests/ui/no-impl.stderr (+32/-0) vendor/anyhow/tests/ui/temporary-value.rs (+5/-0) vendor/anyhow/tests/ui/temporary-value.stderr (+9/-0) vendor/anyhow/tests/ui/wrong-interpolation.rs (+5/-0) vendor/anyhow/tests/ui/wrong-interpolation.stderr (+5/-0) vendor/arc-swap/.cargo-checksum.json (+1/-0) vendor/arc-swap/CHANGELOG.md (+236/-0) vendor/arc-swap/Cargo.toml (+94/-0) vendor/arc-swap/LICENSE-APACHE (+201/-0) vendor/arc-swap/LICENSE-MIT (+25/-0) vendor/arc-swap/README.md (+41/-0) vendor/arc-swap/TODO (+1/-0) vendor/arc-swap/benches/background.rs (+335/-0) vendor/arc-swap/benches/int-access.rs (+130/-0) vendor/arc-swap/benches/track.rs (+113/-0) vendor/arc-swap/ci-check.sh (+16/-0) vendor/arc-swap/rustfmt.toml (+0/-0) vendor/arc-swap/src/access.rs (+546/-0) vendor/arc-swap/src/as_raw.rs (+72/-0) vendor/arc-swap/src/cache.rs (+343/-0) vendor/arc-swap/src/compile_fail_tests.rs (+93/-0) vendor/arc-swap/src/debt/fast.rs (+76/-0) vendor/arc-swap/src/debt/helping.rs (+334/-0) vendor/arc-swap/src/debt/list.rs (+371/-0) vendor/arc-swap/src/debt/mod.rs (+137/-0) vendor/arc-swap/src/docs/internal.rs (+106/-0) vendor/arc-swap/src/docs/limitations.rs (+53/-0) vendor/arc-swap/src/docs/mod.rs (+54/-0) vendor/arc-swap/src/docs/patterns.rs (+271/-0) vendor/arc-swap/src/docs/performance.rs (+87/-0) vendor/arc-swap/src/lib.rs (+1317/-0) vendor/arc-swap/src/ref_cnt.rs (+176/-0) vendor/arc-swap/src/serde.rs (+132/-0) vendor/arc-swap/src/strategy/hybrid.rs (+235/-0) vendor/arc-swap/src/strategy/mod.rs (+168/-0) vendor/arc-swap/src/strategy/rw_lock.rs (+63/-0) vendor/arc-swap/src/strategy/test_strategies.rs (+22/-0) vendor/arc-swap/src/weak.rs (+118/-0) vendor/arc-swap/tests/random.rs (+125/-0) vendor/arc-swap/tests/stress.rs (+310/-0) vendor/autocfg/.cargo-checksum.json (+1/-0) vendor/autocfg/Cargo.lock (+6/-0) vendor/autocfg/Cargo.toml (+75/-0) vendor/autocfg/LICENSE-APACHE (+201/-0) vendor/autocfg/LICENSE-MIT (+25/-0) vendor/autocfg/README.md (+112/-0) vendor/autocfg/examples/integers.rs (+9/-0) vendor/autocfg/examples/nightly.rs (+18/-0) vendor/autocfg/examples/paths.rs (+22/-0) vendor/autocfg/examples/traits.rs (+26/-0) vendor/autocfg/examples/versions.rs (+9/-0) vendor/autocfg/src/error.rs (+81/-0) vendor/autocfg/src/lib.rs (+590/-0) vendor/autocfg/src/rustc.rs (+89/-0) vendor/autocfg/src/tests.rs (+54/-0) vendor/autocfg/src/version.rs (+65/-0) vendor/autocfg/tests/no_std.rs (+28/-0) vendor/autocfg/tests/rustflags.rs (+34/-0) vendor/autocfg/tests/support/mod.rs (+21/-0) vendor/autocfg/tests/tests.rs (+138/-0) vendor/autocfg/tests/wrap_ignored (+12/-0) vendor/autocfg/tests/wrappers.rs (+56/-0) vendor/base16ct/.cargo-checksum.json (+1/-0) vendor/base16ct/CHANGELOG.md (+22/-0) vendor/base16ct/Cargo.toml (+48/-0) vendor/base16ct/LICENSE-APACHE (+201/-0) vendor/base16ct/LICENSE-MIT (+26/-0) vendor/base16ct/README.md (+60/-0) vendor/base16ct/benches/mod.rs (+69/-0) vendor/base16ct/src/display.rs (+35/-0) vendor/base16ct/src/error.rs (+32/-0) vendor/base16ct/src/lib.rs (+124/-0) vendor/base16ct/src/lower.rs (+78/-0) vendor/base16ct/src/mixed.rs (+37/-0) vendor/base16ct/src/upper.rs (+78/-0) vendor/base16ct/tests/lib.rs (+163/-0) vendor/base64/.cargo-checksum.json (+1/-0) vendor/base64/Cargo.lock (+1515/-0) vendor/base64/Cargo.toml (+85/-0) vendor/base64/LICENSE-APACHE (+201/-0) vendor/base64/LICENSE-MIT (+21/-0) vendor/base64/README.md (+154/-0) vendor/base64/RELEASE-NOTES.md (+271/-0) vendor/base64/benches/benchmarks.rs (+238/-0) vendor/base64/clippy.toml (+1/-0) vendor/base64/examples/base64.rs (+81/-0) vendor/base64/icon_CLion.svg (+34/-0) vendor/base64/src/alphabet.rs (+285/-0) vendor/base64/src/chunked_encoder.rs (+172/-0) vendor/base64/src/decode.rs (+386/-0) vendor/base64/src/display.rs (+88/-0) vendor/base64/src/encode.rs (+492/-0) vendor/base64/src/engine/general_purpose/decode.rs (+357/-0) vendor/base64/src/engine/general_purpose/decode_suffix.rs (+162/-0) vendor/base64/src/engine/general_purpose/mod.rs (+352/-0) vendor/base64/src/engine/mod.rs (+478/-0) vendor/base64/src/engine/naive.rs (+195/-0) vendor/base64/src/engine/tests.rs (+1579/-0) vendor/base64/src/lib.rs (+277/-0) vendor/base64/src/prelude.rs (+20/-0) vendor/base64/src/read/decoder.rs (+335/-0) vendor/base64/src/read/decoder_tests.rs (+487/-0) vendor/base64/src/read/mod.rs (+6/-0) vendor/base64/src/tests.rs (+117/-0) vendor/base64/src/write/encoder.rs (+407/-0) vendor/base64/src/write/encoder_string_writer.rs (+207/-0) vendor/base64/src/write/encoder_tests.rs (+554/-0) vendor/base64/src/write/mod.rs (+11/-0) vendor/base64/tests/encode.rs (+77/-0) vendor/base64/tests/tests.rs (+161/-0) vendor/base64ct/.cargo-checksum.json (+1/-0) vendor/base64ct/CHANGELOG.md (+148/-0) vendor/base64ct/Cargo.toml (+55/-0) vendor/base64ct/LICENSE-APACHE (+201/-0) vendor/base64ct/LICENSE-MIT (+26/-0) vendor/base64ct/README.md (+86/-0) vendor/base64ct/benches/mod.rs (+62/-0) vendor/base64ct/src/alphabet.rs (+124/-0) vendor/base64ct/src/alphabet/bcrypt.rs (+33/-0) vendor/base64ct/src/alphabet/crypt.rs (+29/-0) vendor/base64ct/src/alphabet/shacrypt.rs (+65/-0) vendor/base64ct/src/alphabet/standard.rs (+54/-0) vendor/base64ct/src/alphabet/url.rs (+54/-0) vendor/base64ct/src/decoder.rs (+618/-0) vendor/base64ct/src/encoder.rs (+363/-0) vendor/base64ct/src/encoding.rs (+376/-0) vendor/base64ct/src/errors.rs (+84/-0) vendor/base64ct/src/lib.rs (+105/-0) vendor/base64ct/src/line_ending.rs (+53/-0) vendor/base64ct/src/test_vectors.rs (+70/-0) vendor/base64ct/tests/bcrypt.rs (+68/-0) vendor/base64ct/tests/common/mod.rs (+80/-0) vendor/base64ct/tests/crypt.rs (+68/-0) vendor/base64ct/tests/proptests.proptest-regressions (+10/-0) vendor/base64ct/tests/proptests.rs (+152/-0) vendor/base64ct/tests/shacrypt.rs (+98/-0) vendor/base64ct/tests/standard.rs (+142/-0) vendor/base64ct/tests/url.rs (+128/-0) vendor/bitflags/.cargo-checksum.json (+1/-0) vendor/bitflags/CHANGELOG.md (+553/-0) vendor/bitflags/CODE_OF_CONDUCT.md (+73/-0) vendor/bitflags/CONTRIBUTING.md (+9/-0) vendor/bitflags/Cargo.lock (+383/-0) vendor/bitflags/Cargo.toml (+96/-0) vendor/bitflags/LICENSE-APACHE (+201/-0) vendor/bitflags/LICENSE-MIT (+25/-0) vendor/bitflags/README.md (+77/-0) vendor/bitflags/SECURITY.md (+13/-0) vendor/bitflags/benches/parse.rs (+96/-0) vendor/bitflags/examples/custom_bits_type.rs (+97/-0) vendor/bitflags/examples/custom_derive.rs (+23/-0) vendor/bitflags/examples/fmt.rs (+49/-0) vendor/bitflags/examples/macro_free.rs (+61/-0) vendor/bitflags/examples/serde.rs (+36/-0) vendor/bitflags/spec.md (+552/-0) vendor/bitflags/src/example_generated.rs (+65/-0) vendor/bitflags/src/external.rs (+262/-0) vendor/bitflags/src/external/arbitrary.rs (+33/-0) vendor/bitflags/src/external/bytemuck.rs (+19/-0) vendor/bitflags/src/external/serde.rs (+93/-0) vendor/bitflags/src/internal.rs (+125/-0) vendor/bitflags/src/iter.rs (+145/-0) vendor/bitflags/src/lib.rs (+927/-0) vendor/bitflags/src/parser.rs (+332/-0) vendor/bitflags/src/public.rs (+578/-0) vendor/bitflags/src/tests.rs (+131/-0) vendor/bitflags/src/tests/all.rs (+23/-0) vendor/bitflags/src/tests/bits.rs (+36/-0) vendor/bitflags/src/tests/complement.rs (+53/-0) vendor/bitflags/src/tests/contains.rs (+108/-0) vendor/bitflags/src/tests/difference.rs (+92/-0) vendor/bitflags/src/tests/empty.rs (+23/-0) vendor/bitflags/src/tests/eq.rs (+10/-0) vendor/bitflags/src/tests/extend.rs (+42/-0) vendor/bitflags/src/tests/flags.rs (+46/-0) vendor/bitflags/src/tests/fmt.rs (+97/-0) vendor/bitflags/src/tests/from_bits.rs (+45/-0) vendor/bitflags/src/tests/from_bits_retain.rs (+38/-0) vendor/bitflags/src/tests/from_bits_truncate.rs (+42/-0) vendor/bitflags/src/tests/from_name.rs (+42/-0) vendor/bitflags/src/tests/insert.rs (+91/-0) vendor/bitflags/src/tests/intersection.rs (+79/-0) vendor/bitflags/src/tests/intersects.rs (+91/-0) vendor/bitflags/src/tests/is_all.rs (+32/-0) vendor/bitflags/src/tests/is_empty.rs (+31/-0) vendor/bitflags/src/tests/iter.rs (+209/-0) vendor/bitflags/src/tests/parser.rs (+332/-0) vendor/bitflags/src/tests/remove.rs (+100/-0) vendor/bitflags/src/tests/symmetric_difference.rs (+110/-0) vendor/bitflags/src/tests/union.rs (+71/-0) vendor/bitflags/src/traits.rs (+431/-0) vendor/bitmaps/.cargo-checksum.json (+1/-0) vendor/bitmaps/CHANGELOG.md (+34/-0) vendor/bitmaps/CODE_OF_CONDUCT.md (+73/-0) vendor/bitmaps/Cargo.toml (+35/-0) vendor/bitmaps/LICENCE.md (+355/-0) vendor/bitmaps/README.md (+50/-0) vendor/bitmaps/src/bitmap.rs (+510/-0) vendor/bitmaps/src/lib.rs (+62/-0) vendor/bitmaps/src/types.rs (+1337/-0) vendor/block-buffer/.cargo-checksum.json (+1/-0) vendor/block-buffer/CHANGELOG.md (+53/-0) vendor/block-buffer/Cargo.toml (+32/-0) vendor/block-buffer/LICENSE-APACHE (+201/-0) vendor/block-buffer/LICENSE-MIT (+25/-0) vendor/block-buffer/README.md (+40/-0) vendor/block-buffer/src/lib.rs (+350/-0) vendor/block-buffer/src/sealed.rs (+67/-0) vendor/block-buffer/tests/mod.rs (+196/-0) vendor/bstr/.cargo-checksum.json (+1/-0) vendor/bstr/COPYING (+8/-0) vendor/bstr/Cargo.lock (+159/-0) vendor/bstr/Cargo.toml (+146/-0) vendor/bstr/LICENSE-APACHE (+201/-0) vendor/bstr/LICENSE-MIT (+21/-0) vendor/bstr/README.md (+239/-0) vendor/bstr/examples/graphemes-std.rs (+25/-0) vendor/bstr/examples/graphemes.rs (+22/-0) vendor/bstr/examples/lines-std.rs (+17/-0) vendor/bstr/examples/lines.rs (+17/-0) vendor/bstr/examples/uppercase-std.rs (+15/-0) vendor/bstr/examples/uppercase.rs (+18/-0) vendor/bstr/examples/words-std.rs (+18/-0) vendor/bstr/examples/words.rs (+15/-0) vendor/bstr/rustfmt.toml (+2/-0) vendor/bstr/src/ascii.rs (+337/-0) vendor/bstr/src/bstr.rs (+100/-0) vendor/bstr/src/bstring.rs (+103/-0) vendor/bstr/src/byteset/mod.rs (+117/-0) vendor/bstr/src/byteset/scalar.rs (+307/-0) vendor/bstr/src/escape_bytes.rs (+453/-0) vendor/bstr/src/ext_slice.rs (+3872/-0) vendor/bstr/src/ext_vec.rs (+1224/-0) vendor/bstr/src/impls.rs (+1253/-0) vendor/bstr/src/io.rs (+520/-0) vendor/bstr/src/lib.rs (+474/-0) vendor/bstr/src/tests.rs (+32/-0) vendor/bstr/src/unicode/data/GraphemeBreakTest.txt (+630/-0) vendor/bstr/src/unicode/data/LICENSE-UNICODE (+45/-0) vendor/bstr/src/unicode/data/SentenceBreakTest.txt (+530/-0) vendor/bstr/src/unicode/data/WordBreakTest.txt (+1851/-0) vendor/bstr/src/unicode/fsm/grapheme_break_fwd.rs (+19/-0) vendor/bstr/src/unicode/fsm/grapheme_break_rev.rs (+19/-0) vendor/bstr/src/unicode/fsm/mod.rs (+8/-0) vendor/bstr/src/unicode/fsm/regional_indicator_rev.rs (+24/-0) vendor/bstr/src/unicode/fsm/sentence_break_fwd.rs (+19/-0) vendor/bstr/src/unicode/fsm/simple_word_fwd.rs (+19/-0) vendor/bstr/src/unicode/fsm/whitespace_anchored_fwd.rs (+24/-0) vendor/bstr/src/unicode/fsm/whitespace_anchored_rev.rs (+24/-0) vendor/bstr/src/unicode/fsm/word_break_fwd.rs (+19/-0) vendor/bstr/src/unicode/grapheme.rs (+396/-0) vendor/bstr/src/unicode/mod.rs (+12/-0) vendor/bstr/src/unicode/sentence.rs (+230/-0) vendor/bstr/src/unicode/whitespace.rs (+24/-0) vendor/bstr/src/unicode/word.rs (+429/-0) vendor/bstr/src/utf8.rs (+1368/-0) vendor/bumpalo/.cargo-checksum.json (+1/-0) vendor/bumpalo/Cargo.toml (+53/-0) vendor/bumpalo/src/lib.rs (+0/-0) vendor/byteorder/.cargo-checksum.json (+1/-0) vendor/byteorder/CHANGELOG.md (+143/-0) vendor/byteorder/COPYING (+3/-0) vendor/byteorder/Cargo.toml (+54/-0) vendor/byteorder/LICENSE-MIT (+21/-0) vendor/byteorder/README.md (+77/-0) vendor/byteorder/UNLICENSE (+24/-0) vendor/byteorder/benches/bench.rs (+326/-0) vendor/byteorder/rustfmt.toml (+2/-0) vendor/byteorder/src/io.rs (+1592/-0) vendor/byteorder/src/lib.rs (+3975/-0) vendor/bytes/.cargo-checksum.json (+1/-0) vendor/bytes/CHANGELOG.md (+387/-0) vendor/bytes/Cargo.toml (+120/-0) vendor/bytes/LICENSE (+25/-0) vendor/bytes/README.md (+56/-0) vendor/bytes/SECURITY.md (+9/-0) vendor/bytes/benches/buf.rs (+186/-0) vendor/bytes/benches/bytes.rs (+120/-0) vendor/bytes/benches/bytes_mut.rs (+266/-0) vendor/bytes/ci/miri.sh (+10/-0) vendor/bytes/ci/test-stable.sh (+22/-0) vendor/bytes/ci/tsan.sh (+13/-0) vendor/bytes/clippy.toml (+1/-0) vendor/bytes/src/buf/buf_impl.rs (+1472/-0) vendor/bytes/src/buf/buf_mut.rs (+1641/-0) vendor/bytes/src/buf/chain.rs (+240/-0) vendor/bytes/src/buf/iter.rs (+127/-0) vendor/bytes/src/buf/limit.rs (+75/-0) vendor/bytes/src/buf/mod.rs (+39/-0) vendor/bytes/src/buf/reader.rs (+81/-0) vendor/bytes/src/buf/take.rs (+155/-0) vendor/bytes/src/buf/uninit_slice.rs (+257/-0) vendor/bytes/src/buf/vec_deque.rs (+22/-0) vendor/bytes/src/buf/writer.rs (+88/-0) vendor/bytes/src/bytes.rs (+1482/-0) vendor/bytes/src/bytes_mut.rs (+1916/-0) vendor/bytes/src/fmt/debug.rs (+49/-0) vendor/bytes/src/fmt/hex.rs (+37/-0) vendor/bytes/src/fmt/mod.rs (+5/-0) vendor/bytes/src/lib.rs (+165/-0) vendor/bytes/src/loom.rs (+30/-0) vendor/bytes/src/serde.rs (+89/-0) vendor/bytes/tests/test_buf.rs (+134/-0) vendor/bytes/tests/test_buf_mut.rs (+276/-0) vendor/bytes/tests/test_bytes.rs (+1401/-0) vendor/bytes/tests/test_bytes_odd_alloc.rs (+147/-0) vendor/bytes/tests/test_bytes_vec_alloc.rs (+143/-0) vendor/bytes/tests/test_chain.rs (+177/-0) vendor/bytes/tests/test_debug.rs (+35/-0) vendor/bytes/tests/test_iter.rs (+21/-0) vendor/bytes/tests/test_reader.rs (+29/-0) vendor/bytes/tests/test_serde.rs (+20/-0) vendor/bytes/tests/test_take.rs (+32/-0) vendor/bytesize/.cargo-checksum.json (+1/-0) vendor/bytesize/Cargo.toml (+46/-0) vendor/bytesize/LICENSE (+202/-0) vendor/bytesize/README.md (+128/-0) vendor/bytesize/src/lib.rs (+503/-0) vendor/bytesize/src/parse.rs (+238/-0) vendor/cargo-credential-libsecret/.cargo-checksum.json (+1/-0) vendor/cargo-credential-libsecret/Cargo.toml (+56/-0) vendor/cargo-credential-libsecret/LICENSE-APACHE (+201/-0) vendor/cargo-credential-libsecret/LICENSE-MIT (+23/-0) vendor/cargo-credential-libsecret/README.md (+9/-0) vendor/cargo-credential-libsecret/src/lib.rs (+235/-0) vendor/cargo-credential-macos-keychain/.cargo-checksum.json (+1/-0) vendor/cargo-credential-macos-keychain/Cargo.toml (+41/-0) vendor/cargo-credential-macos-keychain/src/lib.rs (+0/-0) vendor/cargo-credential-wincred/.cargo-checksum.json (+1/-0) vendor/cargo-credential-wincred/Cargo.toml (+42/-0) vendor/cargo-credential-wincred/src/lib.rs (+0/-0) vendor/cargo-credential/.cargo-checksum.json (+1/-0) vendor/cargo-credential/Cargo.lock (+611/-0) vendor/cargo-credential/Cargo.toml (+100/-0) vendor/cargo-credential/LICENSE-APACHE (+201/-0) vendor/cargo-credential/LICENSE-MIT (+23/-0) vendor/cargo-credential/README.md (+41/-0) vendor/cargo-credential/examples/file-provider.rs (+90/-0) vendor/cargo-credential/examples/stdout-redirected.rs (+28/-0) vendor/cargo-credential/src/error.rs (+206/-0) vendor/cargo-credential/src/lib.rs (+437/-0) vendor/cargo-credential/src/secret.rs (+101/-0) vendor/cargo-credential/src/stdio.rs (+163/-0) vendor/cargo-credential/tests/examples.rs (+46/-0) vendor/cargo-platform/.cargo-checksum.json (+1/-0) vendor/cargo-platform/Cargo.lock (+65/-0) vendor/cargo-platform/Cargo.toml (+41/-0) vendor/cargo-platform/LICENSE-APACHE (+201/-0) vendor/cargo-platform/LICENSE-MIT (+23/-0) vendor/cargo-platform/examples/matches.rs (+57/-0) vendor/cargo-platform/src/cfg.rs (+319/-0) vendor/cargo-platform/src/error.rs (+67/-0) vendor/cargo-platform/src/lib.rs (+145/-0) vendor/cargo-platform/tests/test_cfg.rs (+251/-0) vendor/cargo-util-schemas/.cargo-checksum.json (+1/-0) vendor/cargo-util-schemas/Cargo.toml (+83/-0) vendor/cargo-util-schemas/LICENSE-APACHE (+201/-0) vendor/cargo-util-schemas/LICENSE-MIT (+23/-0) vendor/cargo-util-schemas/src/core/mod.rs (+10/-0) vendor/cargo-util-schemas/src/core/package_id_spec.rs (+655/-0) vendor/cargo-util-schemas/src/core/partial_version.rs (+248/-0) vendor/cargo-util-schemas/src/core/source_kind.rs (+201/-0) vendor/cargo-util-schemas/src/lib.rs (+11/-0) vendor/cargo-util-schemas/src/manifest/mod.rs (+1702/-0) vendor/cargo-util-schemas/src/manifest/rust_version.rs (+219/-0) vendor/cargo-util-schemas/src/restricted_names.rs (+271/-0) vendor/cargo-util/.cargo-checksum.json (+1/-0) vendor/cargo-util/Cargo.toml (+100/-0) vendor/cargo-util/LICENSE-APACHE (+201/-0) vendor/cargo-util/LICENSE-MIT (+23/-0) vendor/cargo-util/src/du.rs (+85/-0) vendor/cargo-util/src/lib.rs (+22/-0) vendor/cargo-util/src/paths.rs (+990/-0) vendor/cargo-util/src/process_builder.rs (+689/-0) vendor/cargo-util/src/process_error.rs (+200/-0) vendor/cargo-util/src/read2.rs (+185/-0) vendor/cargo-util/src/registry.rs (+45/-0) vendor/cargo-util/src/sha256.rs (+53/-0) vendor/cargo/.cargo-checksum.json (+1/-0) vendor/cargo/CHANGELOG.md (+5505/-0) vendor/cargo/CODE_OF_CONDUCT.md (+3/-0) vendor/cargo/CONTRIBUTING.md (+19/-0) vendor/cargo/Cargo.lock (+3453/-0) vendor/cargo/Cargo.toml (+370/-0) vendor/cargo/LICENSE-APACHE (+201/-0) vendor/cargo/LICENSE-MIT (+23/-0) vendor/cargo/LICENSE-THIRD-PARTY (+1272/-0) vendor/cargo/README.md (+127/-0) vendor/cargo/benches/README.md (+157/-0) vendor/cargo/build.rs (+153/-0) vendor/cargo/ci/clean-test-output.sh (+8/-0) vendor/cargo/ci/dump-environment.sh (+22/-0) vendor/cargo/ci/fetch-smoke-test.sh (+27/-0) vendor/cargo/ci/generate.py (+49/-0) vendor/cargo/ci/validate-man.sh (+27/-0) vendor/cargo/ci/validate-version-bump.sh (+22/-0) vendor/cargo/clippy.toml (+11/-0) vendor/cargo/credential/README.md (+8/-0) vendor/cargo/deny.toml (+274/-0) vendor/cargo/publish.py (+72/-0) vendor/cargo/src/bin/cargo/cli.rs (+704/-0) vendor/cargo/src/bin/cargo/commands/add.rs (+397/-0) vendor/cargo/src/bin/cargo/commands/bench.rs (+80/-0) vendor/cargo/src/bin/cargo/commands/build.rs (+82/-0) vendor/cargo/src/bin/cargo/commands/check.rs (+59/-0) vendor/cargo/src/bin/cargo/commands/clean.rs (+198/-0) vendor/cargo/src/bin/cargo/commands/config.rs (+59/-0) vendor/cargo/src/bin/cargo/commands/doc.rs (+65/-0) vendor/cargo/src/bin/cargo/commands/fetch.rs (+27/-0) vendor/cargo/src/bin/cargo/commands/fix.rs (+105/-0) vendor/cargo/src/bin/cargo/commands/generate_lockfile.rs (+31/-0) vendor/cargo/src/bin/cargo/commands/git_checkout.rs (+14/-0) vendor/cargo/src/bin/cargo/commands/help.rs (+147/-0) vendor/cargo/src/bin/cargo/commands/info.rs (+35/-0) vendor/cargo/src/bin/cargo/commands/init.rs (+26/-0) vendor/cargo/src/bin/cargo/commands/install.rs (+303/-0) vendor/cargo/src/bin/cargo/commands/locate_project.rs (+95/-0) vendor/cargo/src/bin/cargo/commands/login.rs (+42/-0) vendor/cargo/src/bin/cargo/commands/logout.rs (+25/-0) vendor/cargo/src/bin/cargo/commands/metadata.rs (+60/-0) vendor/cargo/src/bin/cargo/commands/mod.rs (+133/-0) vendor/cargo/src/bin/cargo/commands/new.rs (+27/-0) vendor/cargo/src/bin/cargo/commands/owner.rs (+51/-0) vendor/cargo/src/bin/cargo/commands/package.rs (+92/-0) vendor/cargo/src/bin/cargo/commands/pkgid.rs (+38/-0) vendor/cargo/src/bin/cargo/commands/publish.rs (+63/-0) vendor/cargo/src/bin/cargo/commands/read_manifest.rs (+20/-0) vendor/cargo/src/bin/cargo/commands/remove.rs (+359/-0) vendor/cargo/src/bin/cargo/commands/report.rs (+51/-0) vendor/cargo/src/bin/cargo/commands/run.rs (+250/-0) vendor/cargo/src/bin/cargo/commands/rustc.rs (+103/-0) vendor/cargo/src/bin/cargo/commands/rustdoc.rs (+89/-0) vendor/cargo/src/bin/cargo/commands/search.rs (+38/-0) vendor/cargo/src/bin/cargo/commands/test.rs (+115/-0) vendor/cargo/src/bin/cargo/commands/tree.rs (+332/-0) vendor/cargo/src/bin/cargo/commands/uninstall.rs (+39/-0) vendor/cargo/src/bin/cargo/commands/update.rs (+121/-0) vendor/cargo/src/bin/cargo/commands/vendor.rs (+86/-0) vendor/cargo/src/bin/cargo/commands/verify_project.rs (+26/-0) vendor/cargo/src/bin/cargo/commands/version.rs (+18/-0) vendor/cargo/src/bin/cargo/commands/yank.rs (+64/-0) vendor/cargo/src/bin/cargo/main.rs (+407/-0) vendor/cargo/src/cargo/core/compiler/artifact.rs (+122/-0) vendor/cargo/src/cargo/core/compiler/build_config.rs (+275/-0) vendor/cargo/src/cargo/core/compiler/build_context/mod.rs (+144/-0) vendor/cargo/src/cargo/core/compiler/build_context/target_info.rs (+1129/-0) vendor/cargo/src/cargo/core/compiler/build_plan.rs (+160/-0) vendor/cargo/src/cargo/core/compiler/build_runner/compilation_files.rs (+762/-0) vendor/cargo/src/cargo/core/compiler/build_runner/mod.rs (+660/-0) vendor/cargo/src/cargo/core/compiler/compilation.rs (+522/-0) vendor/cargo/src/cargo/core/compiler/compile_kind.rs (+200/-0) vendor/cargo/src/cargo/core/compiler/crate_type.rs (+115/-0) vendor/cargo/src/cargo/core/compiler/custom_build.rs (+1291/-0) vendor/cargo/src/cargo/core/compiler/fingerprint/dirty_reason.rs (+270/-0) vendor/cargo/src/cargo/core/compiler/fingerprint/mod.rs (+2252/-0) vendor/cargo/src/cargo/core/compiler/future_incompat.rs (+505/-0) vendor/cargo/src/cargo/core/compiler/job_queue/job.rs (+114/-0) vendor/cargo/src/cargo/core/compiler/job_queue/job_state.rs (+200/-0) vendor/cargo/src/cargo/core/compiler/job_queue/mod.rs (+1215/-0) vendor/cargo/src/cargo/core/compiler/layout.rs (+242/-0) vendor/cargo/src/cargo/core/compiler/links.rs (+60/-0) vendor/cargo/src/cargo/core/compiler/lto.rs (+194/-0) vendor/cargo/src/cargo/core/compiler/mod.rs (+1988/-0) vendor/cargo/src/cargo/core/compiler/output_depinfo.rs (+179/-0) vendor/cargo/src/cargo/core/compiler/rustdoc.rs (+335/-0) vendor/cargo/src/cargo/core/compiler/standard_lib.rs (+214/-0) vendor/cargo/src/cargo/core/compiler/timings.js (+478/-0) vendor/cargo/src/cargo/core/compiler/timings.rs (+743/-0) vendor/cargo/src/cargo/core/compiler/unit.rs (+290/-0) vendor/cargo/src/cargo/core/compiler/unit_dependencies.rs (+1097/-0) vendor/cargo/src/cargo/core/compiler/unit_graph.rs (+135/-0) vendor/cargo/src/cargo/core/dependency.rs (+652/-0) vendor/cargo/src/cargo/core/features.rs (+1420/-0) vendor/cargo/src/cargo/core/gc.rs (+505/-0) vendor/cargo/src/cargo/core/global_cache_tracker.rs (+1816/-0) vendor/cargo/src/cargo/core/manifest.rs (+1124/-0) vendor/cargo/src/cargo/core/mod.rs (+34/-0) vendor/cargo/src/cargo/core/package.rs (+1178/-0) vendor/cargo/src/cargo/core/package_id.rs (+278/-0) vendor/cargo/src/cargo/core/package_id_spec.rs (+215/-0) vendor/cargo/src/cargo/core/profiles.rs (+1438/-0) vendor/cargo/src/cargo/core/registry.rs (+1014/-0) vendor/cargo/src/cargo/core/resolver/conflict_cache.rs (+220/-0) vendor/cargo/src/cargo/core/resolver/context.rs (+231/-0) vendor/cargo/src/cargo/core/resolver/dep_cache.rs (+577/-0) vendor/cargo/src/cargo/core/resolver/encode.rs (+845/-0) vendor/cargo/src/cargo/core/resolver/errors.rs (+439/-0) vendor/cargo/src/cargo/core/resolver/features.rs (+980/-0) vendor/cargo/src/cargo/core/resolver/mod.rs (+1079/-0) vendor/cargo/src/cargo/core/resolver/resolve.rs (+496/-0) vendor/cargo/src/cargo/core/resolver/types.rs (+372/-0) vendor/cargo/src/cargo/core/resolver/version_prefs.rs (+278/-0) vendor/cargo/src/cargo/core/shell.rs (+701/-0) vendor/cargo/src/cargo/core/source_id.rs (+891/-0) vendor/cargo/src/cargo/core/summary.rs (+429/-0) vendor/cargo/src/cargo/core/workspace.rs (+2017/-0) vendor/cargo/src/cargo/lib.rs (+232/-0) vendor/cargo/src/cargo/macros.rs (+49/-0) vendor/cargo/src/cargo/ops/cargo_add/crate_spec.rs (+62/-0) vendor/cargo/src/cargo/ops/cargo_add/mod.rs (+1126/-0) vendor/cargo/src/cargo/ops/cargo_clean.rs (+587/-0) vendor/cargo/src/cargo/ops/cargo_compile/compile_filter.rs (+309/-0) vendor/cargo/src/cargo/ops/cargo_compile/mod.rs (+950/-0) vendor/cargo/src/cargo/ops/cargo_compile/packages.rs (+242/-0) vendor/cargo/src/cargo/ops/cargo_compile/unit_generator.rs (+721/-0) vendor/cargo/src/cargo/ops/cargo_config.rs (+314/-0) vendor/cargo/src/cargo/ops/cargo_doc.rs (+165/-0) vendor/cargo/src/cargo/ops/cargo_fetch.rs (+78/-0) vendor/cargo/src/cargo/ops/cargo_install.rs (+903/-0) vendor/cargo/src/cargo/ops/cargo_new.rs (+1064/-0) vendor/cargo/src/cargo/ops/cargo_output_metadata.rs (+354/-0) vendor/cargo/src/cargo/ops/cargo_package.rs (+1390/-0) vendor/cargo/src/cargo/ops/cargo_pkgid.rs (+15/-0) vendor/cargo/src/cargo/ops/cargo_read_manifest.rs (+30/-0) vendor/cargo/src/cargo/ops/cargo_remove.rs (+65/-0) vendor/cargo/src/cargo/ops/cargo_run.rs (+110/-0) vendor/cargo/src/cargo/ops/cargo_test.rs (+465/-0) vendor/cargo/src/cargo/ops/cargo_uninstall.rs (+153/-0) vendor/cargo/src/cargo/ops/cargo_update.rs (+964/-0) vendor/cargo/src/cargo/ops/common_for_install_and_uninstall.rs (+812/-0) vendor/cargo/src/cargo/ops/fix.rs (+1375/-0) vendor/cargo/src/cargo/ops/lockfile.rs (+253/-0) vendor/cargo/src/cargo/ops/mod.rs (+99/-0) vendor/cargo/src/cargo/ops/registry/info/mod.rs (+222/-0) vendor/cargo/src/cargo/ops/registry/info/view.rs (+471/-0) vendor/cargo/src/cargo/ops/registry/login.rs (+64/-0) vendor/cargo/src/cargo/ops/registry/logout.rs (+20/-0) vendor/cargo/src/cargo/ops/registry/mod.rs (+373/-0) vendor/cargo/src/cargo/ops/registry/owner.rs (+93/-0) vendor/cargo/src/cargo/ops/registry/publish.rs (+500/-0) vendor/cargo/src/cargo/ops/registry/search.rs (+91/-0) vendor/cargo/src/cargo/ops/registry/yank.rs (+76/-0) vendor/cargo/src/cargo/ops/resolve.rs (+943/-0) vendor/cargo/src/cargo/ops/tree/format/mod.rs (+135/-0) vendor/cargo/src/cargo/ops/tree/format/parse.rs (+123/-0) vendor/cargo/src/cargo/ops/tree/graph.rs (+688/-0) vendor/cargo/src/cargo/ops/tree/mod.rs (+417/-0) vendor/cargo/src/cargo/ops/vendor.rs (+539/-0) vendor/cargo/src/cargo/sources/config.rs (+359/-0) vendor/cargo/src/cargo/sources/directory.rs (+277/-0) vendor/cargo/src/cargo/sources/git/known_hosts.rs (+927/-0) vendor/cargo/src/cargo/sources/git/mod.rs (+61/-0) vendor/cargo/src/cargo/sources/git/oxide.rs (+386/-0) vendor/cargo/src/cargo/sources/git/source.rs (+460/-0) vendor/cargo/src/cargo/sources/git/utils.rs (+1650/-0) vendor/cargo/src/cargo/sources/mod.rs (+46/-0) vendor/cargo/src/cargo/sources/overlay.rs (+148/-0) vendor/cargo/src/cargo/sources/path.rs (+1029/-0) vendor/cargo/src/cargo/sources/registry/download.rs (+171/-0) vendor/cargo/src/cargo/sources/registry/http_remote.rs (+897/-0) vendor/cargo/src/cargo/sources/registry/index/cache.rs (+281/-0) vendor/cargo/src/cargo/sources/registry/index/mod.rs (+887/-0) vendor/cargo/src/cargo/sources/registry/local.rs (+207/-0) vendor/cargo/src/cargo/sources/registry/mod.rs (+1022/-0) vendor/cargo/src/cargo/sources/registry/remote.rs (+455/-0) vendor/cargo/src/cargo/sources/replaced.rs (+182/-0) vendor/cargo/src/cargo/sources/source.rs (+410/-0) vendor/cargo/src/cargo/util/auth/mod.rs (+705/-0) vendor/cargo/src/cargo/util/cache_lock.rs (+548/-0) vendor/cargo/src/cargo/util/canonical_url.rs (+75/-0) vendor/cargo/src/cargo/util/command_prelude.rs (+1046/-0) vendor/cargo/src/cargo/util/context/de.rs (+660/-0) vendor/cargo/src/cargo/util/context/environment.rs (+192/-0) vendor/cargo/src/cargo/util/context/key.rs (+116/-0) vendor/cargo/src/cargo/util/context/mod.rs (+3013/-0) vendor/cargo/src/cargo/util/context/path.rs (+101/-0) vendor/cargo/src/cargo/util/context/target.rs (+237/-0) vendor/cargo/src/cargo/util/context/value.rs (+248/-0) vendor/cargo/src/cargo/util/counter.rs (+67/-0) vendor/cargo/src/cargo/util/cpu.rs (+244/-0) vendor/cargo/src/cargo/util/credential/adaptor.rs (+68/-0) vendor/cargo/src/cargo/util/credential/mod.rs (+8/-0) vendor/cargo/src/cargo/util/credential/paseto.rs (+233/-0) vendor/cargo/src/cargo/util/credential/process.rs (+115/-0) vendor/cargo/src/cargo/util/credential/token.rs (+95/-0) vendor/cargo/src/cargo/util/dependency_queue.rs (+254/-0) vendor/cargo/src/cargo/util/diagnostic_server.rs (+331/-0) vendor/cargo/src/cargo/util/edit_distance.rs (+143/-0) vendor/cargo/src/cargo/util/errors.rs (+346/-0) vendor/cargo/src/cargo/util/flock.rs (+589/-0) vendor/cargo/src/cargo/util/graph.rs (+276/-0) vendor/cargo/src/cargo/util/hasher.rs (+24/-0) vendor/cargo/src/cargo/util/hex.rs (+31/-0) vendor/cargo/src/cargo/util/hostname.rs (+77/-0) vendor/cargo/src/cargo/util/important_paths.rs (+45/-0) vendor/cargo/src/cargo/util/interning.rs (+176/-0) vendor/cargo/src/cargo/util/into_url.rs (+30/-0) vendor/cargo/src/cargo/util/into_url_with_base.rs (+50/-0) vendor/cargo/src/cargo/util/io.rs (+51/-0) vendor/cargo/src/cargo/util/job.rs (+149/-0) vendor/cargo/src/cargo/util/lints.rs (+1000/-0) vendor/cargo/src/cargo/util/lockserver.rs (+173/-0) vendor/cargo/src/cargo/util/machine_message.rs (+115/-0) vendor/cargo/src/cargo/util/mod.rs (+192/-0) vendor/cargo/src/cargo/util/network/http.rs (+226/-0) vendor/cargo/src/cargo/util/network/mod.rs (+82/-0) vendor/cargo/src/cargo/util/network/proxy.rs (+42/-0) vendor/cargo/src/cargo/util/network/retry.rs (+317/-0) vendor/cargo/src/cargo/util/network/sleep.rs (+104/-0) vendor/cargo/src/cargo/util/progress.rs (+533/-0) vendor/cargo/src/cargo/util/queue.rs (+82/-0) vendor/cargo/src/cargo/util/restricted_names.rs (+50/-0) vendor/cargo/src/cargo/util/rustc.rs (+388/-0) vendor/cargo/src/cargo/util/semver_ext.rs (+263/-0) vendor/cargo/src/cargo/util/sqlite.rs (+118/-0) vendor/cargo/src/cargo/util/style.rs (+13/-0) vendor/cargo/src/cargo/util/toml/embedded.rs (+375/-0) vendor/cargo/src/cargo/util/toml/mod.rs (+3058/-0) vendor/cargo/src/cargo/util/toml/targets.rs (+1154/-0) vendor/cargo/src/cargo/util/toml_mut/dependency.rs (+1196/-0) vendor/cargo/src/cargo/util/toml_mut/manifest.rs (+635/-0) vendor/cargo/src/cargo/util/toml_mut/mod.rs (+30/-0) vendor/cargo/src/cargo/util/toml_mut/upgrade.rs (+264/-0) vendor/cargo/src/cargo/util/vcs.rs (+104/-0) vendor/cargo/src/cargo/util/workspace.rs (+130/-0) vendor/cargo/src/cargo/version.rs (+80/-0) vendor/cargo/src/doc/README.md (+71/-0) vendor/cargo/src/doc/book.toml (+9/-0) vendor/cargo/src/doc/contrib/README.md (+12/-0) vendor/cargo/src/doc/contrib/book.toml (+19/-0) vendor/cargo/src/doc/contrib/src/SUMMARY.md (+25/-0) vendor/cargo/src/doc/contrib/src/design.md (+101/-0) vendor/cargo/src/doc/contrib/src/implementation/architecture.md (+5/-0) vendor/cargo/src/doc/contrib/src/implementation/console.md (+58/-0) vendor/cargo/src/doc/contrib/src/implementation/debugging.md (+27/-0) vendor/cargo/src/doc/contrib/src/implementation/filesystem.md (+21/-0) vendor/cargo/src/doc/contrib/src/implementation/formatting.md (+17/-0) vendor/cargo/src/doc/contrib/src/implementation/index.md (+6/-0) vendor/cargo/src/doc/contrib/src/implementation/packages.md (+52/-0) vendor/cargo/src/doc/contrib/src/implementation/subcommands.md (+25/-0) vendor/cargo/src/doc/contrib/src/index.md (+30/-0) vendor/cargo/src/doc/contrib/src/issues.md (+241/-0) vendor/cargo/src/doc/contrib/src/process/index.md (+119/-0) vendor/cargo/src/doc/contrib/src/process/release.md (+189/-0) vendor/cargo/src/doc/contrib/src/process/rfc.md (+64/-0) vendor/cargo/src/doc/contrib/src/process/security.md (+136/-0) vendor/cargo/src/doc/contrib/src/process/unstable.md (+135/-0) vendor/cargo/src/doc/contrib/src/process/working-on-cargo.md (+190/-0) vendor/cargo/src/doc/contrib/src/team.md (+182/-0) vendor/cargo/src/doc/contrib/src/tests/crater.md (+122/-0) vendor/cargo/src/doc/contrib/src/tests/index.md (+20/-0) vendor/cargo/src/doc/contrib/src/tests/profiling.md (+49/-0) vendor/cargo/src/doc/contrib/src/tests/running.md (+78/-0) vendor/cargo/src/doc/contrib/src/tests/writing.md (+301/-0) vendor/cargo/src/doc/man/cargo-add.md (+196/-0) vendor/cargo/src/doc/man/cargo-bench.md (+188/-0) vendor/cargo/src/doc/man/cargo-build.md (+119/-0) vendor/cargo/src/doc/man/cargo-check.md (+102/-0) vendor/cargo/src/doc/man/cargo-clean.md (+96/-0) vendor/cargo/src/doc/man/cargo-doc.md (+132/-0) vendor/cargo/src/doc/man/cargo-fetch.md (+68/-0) vendor/cargo/src/doc/man/cargo-fix.md (+185/-0) vendor/cargo/src/doc/man/cargo-generate-lockfile.md (+53/-0) vendor/cargo/src/doc/man/cargo-help.md (+26/-0) vendor/cargo/src/doc/man/cargo-info.md (+67/-0) vendor/cargo/src/doc/man/cargo-init.md (+51/-0) vendor/cargo/src/doc/man/cargo-install.md (+232/-0) vendor/cargo/src/doc/man/cargo-locate-project.md (+66/-0) vendor/cargo/src/doc/man/cargo-login.md (+64/-0) vendor/cargo/src/doc/man/cargo-logout.md (+63/-0) vendor/cargo/src/doc/man/cargo-metadata.md (+402/-0) vendor/cargo/src/doc/man/cargo-new.md (+46/-0) vendor/cargo/src/doc/man/cargo-owner.md (+81/-0) vendor/cargo/src/doc/man/cargo-package.md (+161/-0) vendor/cargo/src/doc/man/cargo-pkgid.md (+100/-0) vendor/cargo/src/doc/man/cargo-publish.md (+123/-0) vendor/cargo/src/doc/man/cargo-remove.md (+97/-0) vendor/cargo/src/doc/man/cargo-report.md (+42/-0) vendor/cargo/src/doc/man/cargo-run.md (+118/-0) vendor/cargo/src/doc/man/cargo-rustc.md (+149/-0) vendor/cargo/src/doc/man/cargo-rustdoc.md (+121/-0) vendor/cargo/src/doc/man/cargo-search.md (+53/-0) vendor/cargo/src/doc/man/cargo-test.md (+223/-0) vendor/cargo/src/doc/man/cargo-tree.md (+270/-0) vendor/cargo/src/doc/man/cargo-uninstall.md (+63/-0) vendor/cargo/src/doc/man/cargo-update.md (+125/-0) vendor/cargo/src/doc/man/cargo-vendor.md (+107/-0) vendor/cargo/src/doc/man/cargo-verify-project.md (+58/-0) vendor/cargo/src/doc/man/cargo-version.md (+41/-0) vendor/cargo/src/doc/man/cargo-yank.md (+121/-0) vendor/cargo/src/doc/man/cargo.md (+248/-0) vendor/cargo/src/doc/man/generated_txt/cargo-add.txt (+284/-0) vendor/cargo/src/doc/man/generated_txt/cargo-bench.txt (+466/-0) vendor/cargo/src/doc/man/generated_txt/cargo-build.txt (+404/-0) vendor/cargo/src/doc/man/generated_txt/cargo-check.txt (+389/-0) vendor/cargo/src/doc/man/generated_txt/cargo-clean.txt (+198/-0) vendor/cargo/src/doc/man/generated_txt/cargo-doc.txt (+351/-0) vendor/cargo/src/doc/man/generated_txt/cargo-fetch.txt (+173/-0) vendor/cargo/src/doc/man/generated_txt/cargo-fix.txt (+460/-0) vendor/cargo/src/doc/man/generated_txt/cargo-generate-lockfile.txt (+152/-0) vendor/cargo/src/doc/man/generated_txt/cargo-help.txt (+23/-0) vendor/cargo/src/doc/man/generated_txt/cargo-info.txt (+156/-0) vendor/cargo/src/doc/man/generated_txt/cargo-init.txt (+136/-0) vendor/cargo/src/doc/man/generated_txt/cargo-install.txt (+412/-0) vendor/cargo/src/doc/man/generated_txt/cargo-locate-project.txt (+119/-0) vendor/cargo/src/doc/man/generated_txt/cargo-login.txt (+126/-0) vendor/cargo/src/doc/man/generated_txt/cargo-logout.txt (+122/-0) vendor/cargo/src/doc/man/generated_txt/cargo-metadata.txt (+512/-0) vendor/cargo/src/doc/man/generated_txt/cargo-new.txt (+131/-0) vendor/cargo/src/doc/man/generated_txt/cargo-owner.txt (+146/-0) vendor/cargo/src/doc/man/generated_txt/cargo-package.txt (+330/-0) vendor/cargo/src/doc/man/generated_txt/cargo-pkgid.txt (+203/-0) vendor/cargo/src/doc/man/generated_txt/cargo-publish.txt (+278/-0) vendor/cargo/src/doc/man/generated_txt/cargo-remove.txt (+176/-0) vendor/cargo/src/doc/man/generated_txt/cargo-report.txt (+34/-0) vendor/cargo/src/doc/man/generated_txt/cargo-run.txt (+303/-0) vendor/cargo/src/doc/man/generated_txt/cargo-rustc.txt (+411/-0) vendor/cargo/src/doc/man/generated_txt/cargo-rustdoc.txt (+378/-0) vendor/cargo/src/doc/man/generated_txt/cargo-search.txt (+109/-0) vendor/cargo/src/doc/man/generated_txt/cargo-test.txt (+505/-0) vendor/cargo/src/doc/man/generated_txt/cargo-tree.txt (+416/-0) vendor/cargo/src/doc/man/generated_txt/cargo-uninstall.txt (+120/-0) vendor/cargo/src/doc/man/generated_txt/cargo-update.txt (+219/-0) vendor/cargo/src/doc/man/generated_txt/cargo-vendor.txt (+194/-0) vendor/cargo/src/doc/man/generated_txt/cargo-verify-project.txt (+137/-0) vendor/cargo/src/doc/man/generated_txt/cargo-version.txt (+32/-0) vendor/cargo/src/doc/man/generated_txt/cargo-yank.txt (+191/-0) vendor/cargo/src/doc/man/generated_txt/cargo.txt (+314/-0) vendor/cargo/src/doc/man/includes/description-install-root.md (+7/-0) vendor/cargo/src/doc/man/includes/description-one-target.md (+4/-0) vendor/cargo/src/doc/man/includes/options-display.md (+24/-0) vendor/cargo/src/doc/man/includes/options-future-incompat.md (+6/-0) vendor/cargo/src/doc/man/includes/options-ignore-rust-version.md (+3/-0) vendor/cargo/src/doc/man/includes/options-index.md (+3/-0) vendor/cargo/src/doc/man/includes/options-jobs.md (+8/-0) vendor/cargo/src/doc/man/includes/options-keep-going.md (+10/-0) vendor/cargo/src/doc/man/includes/options-locked.md (+32/-0) vendor/cargo/src/doc/man/includes/options-lockfile-path.md (+12/-0) vendor/cargo/src/doc/man/includes/options-manifest-path.md (+4/-0) vendor/cargo/src/doc/man/includes/options-message-format.md (+21/-0) vendor/cargo/src/doc/man/includes/options-new.md (+39/-0) vendor/cargo/src/doc/man/includes/options-output-format.md (+9/-0) vendor/cargo/src/doc/man/includes/options-profile-legacy-check.md (+10/-0) vendor/cargo/src/doc/man/includes/options-profile.md (+4/-0) vendor/cargo/src/doc/man/includes/options-registry.md (+6/-0) vendor/cargo/src/doc/man/includes/options-release.md (+4/-0) vendor/cargo/src/doc/man/includes/options-target-dir.md (+13/-0) vendor/cargo/src/doc/man/includes/options-target-triple.md (+16/-0) vendor/cargo/src/doc/man/includes/options-targets-bin-auto-built.md (+8/-0) vendor/cargo/src/doc/man/includes/options-targets-lib-bin.md (+12/-0) vendor/cargo/src/doc/man/includes/options-targets.md (+57/-0) vendor/cargo/src/doc/man/includes/options-test.md (+14/-0) vendor/cargo/src/doc/man/includes/options-timings.md (+16/-0) vendor/cargo/src/doc/man/includes/options-token.md (+11/-0) vendor/cargo/src/doc/man/includes/section-environment.md (+4/-0) vendor/cargo/src/doc/man/includes/section-exit-status.md (+4/-0) vendor/cargo/src/doc/man/includes/section-features.md (+26/-0) vendor/cargo/src/doc/man/includes/section-options-common.md (+39/-0) vendor/cargo/src/doc/man/includes/section-options-package.md (+13/-0) vendor/cargo/src/doc/man/includes/section-package-selection.md (+42/-0) vendor/cargo/src/doc/src/SUMMARY.md (+97/-0) vendor/cargo/src/doc/src/appendix/git-authentication.md (+96/-0) vendor/cargo/src/doc/src/appendix/glossary.md (+274/-0) vendor/cargo/src/doc/src/commands/build-commands.md (+13/-0) vendor/cargo/src/doc/src/commands/cargo-add.md (+305/-0) vendor/cargo/src/doc/src/commands/cargo-bench.md (+508/-0) vendor/cargo/src/doc/src/commands/cargo-build.md (+441/-0) vendor/cargo/src/doc/src/commands/cargo-check.md (+423/-0) vendor/cargo/src/doc/src/commands/cargo-clean.md (+216/-0) vendor/cargo/src/doc/src/commands/cargo-doc.md (+390/-0) vendor/cargo/src/doc/src/commands/cargo-fetch.md (+179/-0) vendor/cargo/src/doc/src/commands/cargo-fix.md (+502/-0) vendor/cargo/src/doc/src/commands/cargo-generate-lockfile.md (+164/-0) vendor/cargo/src/doc/src/commands/cargo-help.md (+26/-0) vendor/cargo/src/doc/src/commands/cargo-info.md (+168/-0) vendor/cargo/src/doc/src/commands/cargo-init.md (+157/-0) vendor/cargo/src/doc/src/commands/cargo-install.md (+441/-0) vendor/cargo/src/doc/src/commands/cargo-locate-project.md (+139/-0) vendor/cargo/src/doc/src/commands/cargo-login.md (+138/-0) vendor/cargo/src/doc/src/commands/cargo-logout.md (+137/-0) vendor/cargo/src/doc/src/commands/cargo-metadata.md (+536/-0) vendor/cargo/src/doc/src/commands/cargo-new.md (+152/-0) vendor/cargo/src/doc/src/commands/cargo-owner.md (+169/-0) vendor/cargo/src/doc/src/commands/cargo-package.md (+361/-0) vendor/cargo/src/doc/src/commands/cargo-pkgid.md (+210/-0) vendor/cargo/src/doc/src/commands/cargo-publish.md (+308/-0) vendor/cargo/src/doc/src/commands/cargo-remove.md (+202/-0) vendor/cargo/src/doc/src/commands/cargo-report.md (+43/-0) vendor/cargo/src/doc/src/commands/cargo-run.md (+339/-0) vendor/cargo/src/doc/src/commands/cargo-rustc.md (+443/-0) vendor/cargo/src/doc/src/commands/cargo-rustdoc.md (+418/-0) vendor/cargo/src/doc/src/commands/cargo-search.md (+129/-0) vendor/cargo/src/doc/src/commands/cargo-test.md (+551/-0) vendor/cargo/src/doc/src/commands/cargo-tree.md (+440/-0) vendor/cargo/src/doc/src/commands/cargo-uninstall.md (+139/-0) vendor/cargo/src/doc/src/commands/cargo-update.md (+232/-0) vendor/cargo/src/doc/src/commands/cargo-vendor.md (+217/-0) vendor/cargo/src/doc/src/commands/cargo-verify-project.md (+154/-0) vendor/cargo/src/doc/src/commands/cargo-version.md (+42/-0) vendor/cargo/src/doc/src/commands/cargo-yank.md (+207/-0) vendor/cargo/src/doc/src/commands/cargo.md (+345/-0) vendor/cargo/src/doc/src/commands/general-commands.md (+4/-0) vendor/cargo/src/doc/src/commands/index.md (+6/-0) vendor/cargo/src/doc/src/commands/manifest-commands.md (+13/-0) vendor/cargo/src/doc/src/commands/package-commands.md (+6/-0) vendor/cargo/src/doc/src/commands/publishing-commands.md (+7/-0) vendor/cargo/src/doc/src/faq.md (+296/-0) vendor/cargo/src/doc/src/getting-started/first-steps.md (+82/-0) vendor/cargo/src/doc/src/getting-started/index.md (+9/-0) vendor/cargo/src/doc/src/getting-started/installation.md (+38/-0) vendor/cargo/src/doc/src/guide/build-cache.md (+108/-0) vendor/cargo/src/doc/src/guide/cargo-home.md (+93/-0) vendor/cargo/src/doc/src/guide/cargo-toml-vs-cargo-lock.md (+104/-0) vendor/cargo/src/doc/src/guide/continuous-integration.md (+205/-0) vendor/cargo/src/doc/src/guide/creating-a-new-project.md (+97/-0) vendor/cargo/src/doc/src/guide/dependencies.md (+93/-0) vendor/cargo/src/doc/src/guide/index.md (+15/-0) vendor/cargo/src/doc/src/guide/project-layout.md (+61/-0) vendor/cargo/src/doc/src/guide/tests.md (+44/-0) vendor/cargo/src/doc/src/guide/why-cargo-exists.md (+65/-0) vendor/cargo/src/doc/src/guide/working-on-an-existing-project.md (+24/-0) vendor/cargo/src/doc/src/images/winapi-features.svg (+3/-0) vendor/cargo/src/doc/src/index.md (+48/-0) vendor/cargo/src/doc/src/reference/build-script-examples.md (+509/-0) vendor/cargo/src/doc/src/reference/build-scripts.md (+513/-0) vendor/cargo/src/doc/src/reference/cargo-targets.md (+389/-0) vendor/cargo/src/doc/src/reference/config.md (+1360/-0) vendor/cargo/src/doc/src/reference/credential-provider-protocol.md (+237/-0) vendor/cargo/src/doc/src/reference/environment-variables.md (+425/-0) vendor/cargo/src/doc/src/reference/external-tools.md (+303/-0) vendor/cargo/src/doc/src/reference/features-examples.md (+187/-0) vendor/cargo/src/doc/src/reference/features.md (+528/-0) vendor/cargo/src/doc/src/reference/future-incompat-report.md (+37/-0) vendor/cargo/src/doc/src/reference/index.md (+32/-0) vendor/cargo/src/doc/src/reference/lints.md (+116/-0) vendor/cargo/src/doc/src/reference/manifest.md (+700/-0) vendor/cargo/src/doc/src/reference/overriding-dependencies.md (+359/-0) vendor/cargo/src/doc/src/reference/pkgid-spec.md (+75/-0) vendor/cargo/src/doc/src/reference/profiles.md (+488/-0) vendor/cargo/src/doc/src/reference/publishing.md (+296/-0) vendor/cargo/src/doc/src/reference/registries.md (+157/-0) vendor/cargo/src/doc/src/reference/registry-authentication.md (+99/-0) vendor/cargo/src/doc/src/reference/registry-index.md (+325/-0) vendor/cargo/src/doc/src/reference/registry-web-api.md (+362/-0) vendor/cargo/src/doc/src/reference/resolver.md (+612/-0) vendor/cargo/src/doc/src/reference/running-a-registry.md (+20/-0) vendor/cargo/src/doc/src/reference/semver.md (+2275/-0) vendor/cargo/src/doc/src/reference/source-replacement.md (+130/-0) vendor/cargo/src/doc/src/reference/specifying-dependencies.md (+648/-0) vendor/cargo/src/doc/src/reference/timings.md (+66/-0) vendor/cargo/src/doc/src/reference/unstable.md (+1891/-0) vendor/cargo/src/doc/src/reference/workspaces.md (+317/-0) vendor/cargo/src/doc/theme/head.hbs (+5/-0) vendor/cargo/src/etc/_cargo (+487/-0) vendor/cargo/src/etc/cargo.bashcomp.sh (+285/-0) vendor/cargo/src/etc/man/cargo-add.1 (+376/-0) vendor/cargo/src/etc/man/cargo-bench.1 (+573/-0) vendor/cargo/src/etc/man/cargo-build.1 (+496/-0) vendor/cargo/src/etc/man/cargo-check.1 (+477/-0) vendor/cargo/src/etc/man/cargo-clean.1 (+245/-0) vendor/cargo/src/etc/man/cargo-doc.1 (+427/-0) vendor/cargo/src/etc/man/cargo-fetch.1 (+201/-0) vendor/cargo/src/etc/man/cargo-fix.1 (+574/-0) vendor/cargo/src/etc/man/cargo-generate-lockfile.1 (+187/-0) vendor/cargo/src/etc/man/cargo-help.1 (+34/-0) vendor/cargo/src/etc/man/cargo-info.1 (+201/-0) vendor/cargo/src/etc/man/cargo-init.1 (+171/-0) vendor/cargo/src/etc/man/cargo-install.1 (+530/-0) vendor/cargo/src/etc/man/cargo-locate-project.1 (+150/-0) vendor/cargo/src/etc/man/cargo-login.1 (+154/-0) vendor/cargo/src/etc/man/cargo-logout.1 (+153/-0) vendor/cargo/src/etc/man/cargo-metadata.1 (+558/-0) vendor/cargo/src/etc/man/cargo-new.1 (+166/-0) vendor/cargo/src/etc/man/cargo-owner.1 (+197/-0) vendor/cargo/src/etc/man/cargo-package.1 (+405/-0) vendor/cargo/src/etc/man/cargo-pkgid.1 (+272/-0) vendor/cargo/src/etc/man/cargo-publish.1 (+337/-0) vendor/cargo/src/etc/man/cargo-remove.1 (+228/-0) vendor/cargo/src/etc/man/cargo-report.1 (+48/-0) vendor/cargo/src/etc/man/cargo-run.1 (+373/-0) vendor/cargo/src/etc/man/cargo-rustc.1 (+506/-0) vendor/cargo/src/etc/man/cargo-rustdoc.1 (+461/-0) vendor/cargo/src/etc/man/cargo-search.1 (+138/-0) vendor/cargo/src/etc/man/cargo-test.1 (+624/-0) vendor/cargo/src/etc/man/cargo-tree.1 (+531/-0) vendor/cargo/src/etc/man/cargo-uninstall.1 (+161/-0) vendor/cargo/src/etc/man/cargo-update.1 (+283/-0) vendor/cargo/src/etc/man/cargo-vendor.1 (+251/-0) vendor/cargo/src/etc/man/cargo-verify-project.1 (+178/-0) vendor/cargo/src/etc/man/cargo-version.1 (+52/-0) vendor/cargo/src/etc/man/cargo-yank.1 (+248/-0) vendor/cargo/src/etc/man/cargo.1 (+418/-0) vendor/cargo/tests/build-std/main.rs (+302/-0) vendor/cargo/tests/testsuite/advanced_env.rs (+37/-0) vendor/cargo/tests/testsuite/alt_registry.rs (+1982/-0) vendor/cargo/tests/testsuite/artifact_dep.rs (+3328/-0) vendor/cargo/tests/testsuite/artifact_dir.rs (+418/-0) vendor/cargo/tests/testsuite/bad_config.rs (+3062/-0) vendor/cargo/tests/testsuite/bad_manifest_path.rs (+412/-0) vendor/cargo/tests/testsuite/bench.rs (+2187/-0) vendor/cargo/tests/testsuite/binary_name.rs (+342/-0) vendor/cargo/tests/testsuite/build.rs (+7021/-0) vendor/cargo/tests/testsuite/build_plan.rs (+244/-0) vendor/cargo/tests/testsuite/build_script.rs (+5838/-0) vendor/cargo/tests/testsuite/build_script_env.rs (+385/-0) vendor/cargo/tests/testsuite/build_script_extra_link_arg.rs (+406/-0) vendor/cargo/tests/testsuite/cache_lock.rs (+307/-0) vendor/cargo/tests/testsuite/cache_messages.rs (+556/-0) vendor/cargo/tests/testsuite/cargo/help/mod.rs (+13/-0) vendor/cargo/tests/testsuite/cargo/help/stdout.term.svg (+106/-0) vendor/cargo/tests/testsuite/cargo/mod.rs (+2/-0) vendor/cargo/tests/testsuite/cargo/z_help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo/z_help/stdout.term.svg (+99/-0) vendor/cargo/tests/testsuite/cargo_add/add_basic/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/add_basic/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/add_multiple/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/add_multiple/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/add_no_vendored_package_with_alter_registry/mod.rs (+36/-0) vendor/cargo/tests/testsuite/cargo_add/add_no_vendored_package_with_alter_registry/stderr.term.svg (+51/-0) vendor/cargo/tests/testsuite/cargo_add/add_no_vendored_package_with_vendor/mod.rs (+24/-0) vendor/cargo/tests/testsuite/cargo_add/add_no_vendored_package_with_vendor/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_add/add_normalized_name_external/mod.rs (+42/-0) vendor/cargo/tests/testsuite/cargo_add/add_normalized_name_external/stderr.term.svg (+65/-0) vendor/cargo/tests/testsuite/cargo_add/add_toolchain/mod.rs (+24/-0) vendor/cargo/tests/testsuite/cargo_add/add_toolchain/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_add/build/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/build/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/build_prefer_existing_version/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/build_prefer_existing_version/stderr.term.svg (+36/-0) vendor/cargo/tests/testsuite/cargo_add/change_rename_target/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/change_rename_target/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/cyclic_features/mod.rs (+31/-0) vendor/cargo/tests/testsuite/cargo_add/cyclic_features/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/default_features/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/default_features/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/deprecated_default_features/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/deprecated_default_features/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_add/deprecated_section/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/deprecated_section/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_add/detect_workspace_inherit/mod.rs (+26/-0) vendor/cargo/tests/testsuite/cargo_add/detect_workspace_inherit/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_add/detect_workspace_inherit_features/mod.rs (+26/-0) vendor/cargo/tests/testsuite/cargo_add/detect_workspace_inherit_features/stderr.term.svg (+48/-0) vendor/cargo/tests/testsuite/cargo_add/detect_workspace_inherit_optional/mod.rs (+26/-0) vendor/cargo/tests/testsuite/cargo_add/detect_workspace_inherit_optional/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/detect_workspace_inherit_public/mod.rs (+27/-0) vendor/cargo/tests/testsuite/cargo_add/detect_workspace_inherit_public/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_add/dev/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/dev/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/dev_build_conflict/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/dev_build_conflict/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_add/dev_prefer_existing_version/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/dev_prefer_existing_version/stderr.term.svg (+36/-0) vendor/cargo/tests/testsuite/cargo_add/dry_run/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/dry_run/stderr.term.svg (+32/-0) vendor/cargo/tests/testsuite/cargo_add/empty_dep_name/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_add/empty_dep_name/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_add/features/mod.rs (+32/-0) vendor/cargo/tests/testsuite/cargo_add/features/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_add/features_activated_over_limit/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/features_activated_over_limit/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/features_deactivated_over_limit/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/features_deactivated_over_limit/stderr.term.svg (+95/-0) vendor/cargo/tests/testsuite/cargo_add/features_empty/mod.rs (+32/-0) vendor/cargo/tests/testsuite/cargo_add/features_empty/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_add/features_multiple_occurrences/mod.rs (+32/-0) vendor/cargo/tests/testsuite/cargo_add/features_multiple_occurrences/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_add/features_preserve/mod.rs (+32/-0) vendor/cargo/tests/testsuite/cargo_add/features_preserve/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_add/features_spaced_values/mod.rs (+32/-0) vendor/cargo/tests/testsuite/cargo_add/features_spaced_values/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_add/features_unknown/mod.rs (+32/-0) vendor/cargo/tests/testsuite/cargo_add/features_unknown/stderr.term.svg (+36/-0) vendor/cargo/tests/testsuite/cargo_add/features_unknown_no_features/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/features_unknown_no_features/stderr.term.svg (+34/-0) vendor/cargo/tests/testsuite/cargo_add/git/mod.rs (+35/-0) vendor/cargo/tests/testsuite/cargo_add/git/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/git_branch/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_add/git_branch/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/git_conflicts_namever/mod.rs (+41/-0) vendor/cargo/tests/testsuite/cargo_add/git_conflicts_namever/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_add/git_dev/mod.rs (+35/-0) vendor/cargo/tests/testsuite/cargo_add/git_dev/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/git_inferred_name/mod.rs (+35/-0) vendor/cargo/tests/testsuite/cargo_add/git_inferred_name/stderr.term.svg (+35/-0) vendor/cargo/tests/testsuite/cargo_add/git_inferred_name_multiple/mod.rs (+75/-0) vendor/cargo/tests/testsuite/cargo_add/git_inferred_name_multiple/stderr.term.svg (+36/-0) vendor/cargo/tests/testsuite/cargo_add/git_multiple_names/mod.rs (+53/-0) vendor/cargo/tests/testsuite/cargo_add/git_multiple_names/stderr.term.svg (+35/-0) vendor/cargo/tests/testsuite/cargo_add/git_multiple_packages_features/mod.rs (+64/-0) vendor/cargo/tests/testsuite/cargo_add/git_multiple_packages_features/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/git_normalized_name/mod.rs (+35/-0) vendor/cargo/tests/testsuite/cargo_add/git_normalized_name/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_add/git_registry/mod.rs (+54/-0) vendor/cargo/tests/testsuite/cargo_add/git_registry/stderr.term.svg (+38/-0) vendor/cargo/tests/testsuite/cargo_add/git_rev/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/git_rev/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/git_tag/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/git_tag/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_add/help/stdout.term.svg (+302/-0) vendor/cargo/tests/testsuite/cargo_add/infer_prerelease/mod.rs (+27/-0) vendor/cargo/tests/testsuite/cargo_add/infer_prerelease/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_arg/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_arg/stderr.term.svg (+46/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_git_name/mod.rs (+35/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_git_name/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_key_inherit_dependency/mod.rs (+24/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_key_inherit_dependency/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_key_overwrite_inherit_dependency/mod.rs (+24/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_key_overwrite_inherit_dependency/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_key_rename_inherit_dependency/mod.rs (+24/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_key_rename_inherit_dependency/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_manifest/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_manifest/stderr.term.svg (+40/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_name_external/mod.rs (+26/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_name_external/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_path/mod.rs (+26/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_path/stderr.term.svg (+45/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_path_name/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_path_name/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_path_self/mod.rs (+26/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_path_self/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_target_empty/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_target_empty/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_vers/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/invalid_vers/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/list_features/mod.rs (+32/-0) vendor/cargo/tests/testsuite/cargo_add/list_features/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_add/list_features_path/mod.rs (+43/-0) vendor/cargo/tests/testsuite/cargo_add/list_features_path/stderr.term.svg (+46/-0) vendor/cargo/tests/testsuite/cargo_add/list_features_path_no_default/mod.rs (+48/-0) vendor/cargo/tests/testsuite/cargo_add/list_features_path_no_default/stderr.term.svg (+46/-0) vendor/cargo/tests/testsuite/cargo_add/locked_changed/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/locked_changed/stderr.term.svg (+32/-0) vendor/cargo/tests/testsuite/cargo_add/locked_unchanged/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/locked_unchanged/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_add/lockfile_updated/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/lockfile_updated/stderr.term.svg (+34/-0) vendor/cargo/tests/testsuite/cargo_add/manifest_path_package/mod.rs (+44/-0) vendor/cargo/tests/testsuite/cargo_add/manifest_path_package/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_add/merge_activated_features/mod.rs (+24/-0) vendor/cargo/tests/testsuite/cargo_add/merge_activated_features/stderr.term.svg (+48/-0) vendor/cargo/tests/testsuite/cargo_add/mod.rs (+138/-0) vendor/cargo/tests/testsuite/cargo_add/multiple_conflicts_with_features/mod.rs (+43/-0) vendor/cargo/tests/testsuite/cargo_add/multiple_conflicts_with_features/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_add/multiple_conflicts_with_rename/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/multiple_conflicts_with_rename/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_add/namever/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/namever/stderr.term.svg (+39/-0) vendor/cargo/tests/testsuite/cargo_add/no_args/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_add/no_args/stderr.term.svg (+43/-0) vendor/cargo/tests/testsuite/cargo_add/no_default_features/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/no_default_features/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/no_optional/mod.rs (+27/-0) vendor/cargo/tests/testsuite/cargo_add/no_optional/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/no_public/mod.rs (+27/-0) vendor/cargo/tests/testsuite/cargo_add/no_public/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/offline_empty_cache/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/offline_empty_cache/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_add/optional/mod.rs (+27/-0) vendor/cargo/tests/testsuite/cargo_add/optional/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_default_features/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_default_features/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_default_features_with_no_default_features/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_default_features_with_no_default_features/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_features/mod.rs (+32/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_features/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_git_with_path/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_git_with_path/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_inherit_features_noop/mod.rs (+26/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_inherit_features_noop/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_inherit_noop/mod.rs (+26/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_inherit_noop/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_inherit_optional_noop/mod.rs (+26/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_inherit_optional_noop/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_inline_features/mod.rs (+45/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_inline_features/stderr.term.svg (+43/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_name_dev_noop/mod.rs (+33/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_name_dev_noop/stderr.term.svg (+35/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_name_noop/mod.rs (+33/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_name_noop/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_no_default_features/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_no_default_features/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_no_default_features_with_default_features/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_no_default_features_with_default_features/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_no_optional/mod.rs (+27/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_no_optional/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_no_optional_with_optional/mod.rs (+27/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_no_optional_with_optional/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_no_public/mod.rs (+27/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_no_public/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_no_public_with_public/mod.rs (+27/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_no_public_with_public/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_optional/mod.rs (+27/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_optional/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_optional_with_no_optional/mod.rs (+33/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_optional_with_no_optional/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_optional_with_optional/mod.rs (+27/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_optional_with_optional/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_path_noop/mod.rs (+33/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_path_noop/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_path_with_version/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_path_with_version/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_preserves_inline_table/mod.rs (+32/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_preserves_inline_table/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_public/mod.rs (+27/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_public/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_public_with_no_public/mod.rs (+27/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_public_with_no_public/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_rename_with_no_rename/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_rename_with_no_rename/stderr.term.svg (+35/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_rename_with_rename/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_rename_with_rename/stderr.term.svg (+35/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_rename_with_rename_noop/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_rename_with_rename_noop/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_version_with_git/mod.rs (+46/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_version_with_git/stderr.term.svg (+35/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_version_with_path/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_version_with_path/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_with_rename/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_with_rename/stderr.term.svg (+35/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_workspace_dep/mod.rs (+26/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_workspace_dep/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_workspace_dep_features/mod.rs (+26/-0) vendor/cargo/tests/testsuite/cargo_add/overwrite_workspace_dep_features/stderr.term.svg (+48/-0) vendor/cargo/tests/testsuite/cargo_add/path/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_add/path/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_add/path_dev/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_add/path_dev/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_add/path_inferred_name/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_add/path_inferred_name/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_add/path_inferred_name_conflicts_full_feature/mod.rs (+26/-0) vendor/cargo/tests/testsuite/cargo_add/path_inferred_name_conflicts_full_feature/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_add/path_normalized_name/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_add/path_normalized_name/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_add/preserve_dep_std_table/mod.rs (+32/-0) vendor/cargo/tests/testsuite/cargo_add/preserve_dep_std_table/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_add/preserve_features_sorted/mod.rs (+33/-0) vendor/cargo/tests/testsuite/cargo_add/preserve_features_sorted/stderr.term.svg (+43/-0) vendor/cargo/tests/testsuite/cargo_add/preserve_features_table/mod.rs (+32/-0) vendor/cargo/tests/testsuite/cargo_add/preserve_features_table/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_add/preserve_features_unsorted/mod.rs (+33/-0) vendor/cargo/tests/testsuite/cargo_add/preserve_features_unsorted/stderr.term.svg (+43/-0) vendor/cargo/tests/testsuite/cargo_add/preserve_sorted/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/preserve_sorted/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/preserve_unsorted/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/preserve_unsorted/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/public/mod.rs (+27/-0) vendor/cargo/tests/testsuite/cargo_add/public/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/quiet/mod.rs (+31/-0) vendor/cargo/tests/testsuite/cargo_add/registry/mod.rs (+41/-0) vendor/cargo/tests/testsuite/cargo_add/registry/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/rename/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/rename/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/require_weak/mod.rs (+32/-0) vendor/cargo/tests/testsuite/cargo_add/require_weak/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_add/rust_version_ignore/mod.rs (+36/-0) vendor/cargo/tests/testsuite/cargo_add/rust_version_ignore/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/rust_version_incompatible/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_add/rust_version_incompatible/stderr.term.svg (+32/-0) vendor/cargo/tests/testsuite/cargo_add/rust_version_latest/mod.rs (+35/-0) vendor/cargo/tests/testsuite/cargo_add/rust_version_latest/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/rust_version_older/mod.rs (+35/-0) vendor/cargo/tests/testsuite/cargo_add/rust_version_older/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/rustc_ignore/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/rustc_ignore/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/rustc_incompatible/mod.rs (+32/-0) vendor/cargo/tests/testsuite/cargo_add/rustc_incompatible/stderr.term.svg (+32/-0) vendor/cargo/tests/testsuite/cargo_add/rustc_latest/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_add/rustc_latest/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/rustc_older/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_add/rustc_older/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_add/sorted_table_with_dotted_item/mod.rs (+44/-0) vendor/cargo/tests/testsuite/cargo_add/sorted_table_with_dotted_item/stderr.term.svg (+39/-0) vendor/cargo/tests/testsuite/cargo_add/target/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/target/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/target_cfg/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_add/target_cfg/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_add/unknown_inherited_feature/mod.rs (+24/-0) vendor/cargo/tests/testsuite/cargo_add/unknown_inherited_feature/stderr.term.svg (+40/-0) vendor/cargo/tests/testsuite/cargo_add/vers/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_add/vers/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_add/workspace_name/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_add/workspace_name/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_add/workspace_path/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_add/workspace_path/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_add/workspace_path_dev/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_add/workspace_path_dev/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_alias_config.rs (+497/-0) vendor/cargo/tests/testsuite/cargo_bench/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_bench/help/stdout.term.svg (+146/-0) vendor/cargo/tests/testsuite/cargo_bench/mod.rs (+2/-0) vendor/cargo/tests/testsuite/cargo_bench/no_keep_going/mod.rs (+22/-0) vendor/cargo/tests/testsuite/cargo_bench/no_keep_going/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_build/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_build/help/stdout.term.svg (+144/-0) vendor/cargo/tests/testsuite/cargo_build/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_check/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_check/help/stdout.term.svg (+140/-0) vendor/cargo/tests/testsuite/cargo_check/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_clean/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_clean/help/stdout.term.svg (+88/-0) vendor/cargo/tests/testsuite/cargo_clean/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_command.rs (+582/-0) vendor/cargo/tests/testsuite/cargo_config/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_config/help/stdout.term.svg (+64/-0) vendor/cargo/tests/testsuite/cargo_config/mod.rs (+580/-0) vendor/cargo/tests/testsuite/cargo_doc/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_doc/help/stdout.term.svg (+134/-0) vendor/cargo/tests/testsuite/cargo_doc/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_env_config.rs (+278/-0) vendor/cargo/tests/testsuite/cargo_features.rs (+710/-0) vendor/cargo/tests/testsuite/cargo_fetch/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_fetch/help/stdout.term.svg (+72/-0) vendor/cargo/tests/testsuite/cargo_fetch/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_fix/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_fix/help/stdout.term.svg (+148/-0) vendor/cargo/tests/testsuite/cargo_fix/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_generate_lockfile/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_generate_lockfile/help/stdout.term.svg (+68/-0) vendor/cargo/tests/testsuite/cargo_generate_lockfile/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_git_checkout/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_git_checkout/help/stdout.term.svg (+25/-0) vendor/cargo/tests/testsuite/cargo_git_checkout/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_help/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_help/help/stdout.term.svg (+64/-0) vendor/cargo/tests/testsuite/cargo_help/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_info/basic/mod.rs (+53/-0) vendor/cargo/tests/testsuite/cargo_info/basic/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_info/basic/stdout.term.svg (+51/-0) vendor/cargo/tests/testsuite/cargo_info/features/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_info/features/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_info/features/stdout.term.svg (+44/-0) vendor/cargo/tests/testsuite/cargo_info/features_activated_over_limit/mod.rs (+36/-0) vendor/cargo/tests/testsuite/cargo_info/features_activated_over_limit/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_info/features_activated_over_limit/stdout.term.svg (+43/-0) vendor/cargo/tests/testsuite/cargo_info/features_activated_over_limit_verbose/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_info/features_activated_over_limit_verbose/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_info/features_activated_over_limit_verbose/stdout.term.svg (+441/-0) vendor/cargo/tests/testsuite/cargo_info/features_deactivated_over_limit/mod.rs (+36/-0) vendor/cargo/tests/testsuite/cargo_info/features_deactivated_over_limit/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_info/features_deactivated_over_limit/stdout.term.svg (+83/-0) vendor/cargo/tests/testsuite/cargo_info/git_dependency/mod.rs (+44/-0) vendor/cargo/tests/testsuite/cargo_info/git_dependency/stdout.term.svg (+40/-0) vendor/cargo/tests/testsuite/cargo_info/help/mod.rs (+13/-0) vendor/cargo/tests/testsuite/cargo_info/help/stdout.term.svg (+72/-0) vendor/cargo/tests/testsuite/cargo_info/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_info/not_found/mod.rs (+24/-0) vendor/cargo/tests/testsuite/cargo_info/not_found/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_info/path_dependency/mod.rs (+24/-0) vendor/cargo/tests/testsuite/cargo_info/path_dependency/stdout.term.svg (+40/-0) vendor/cargo/tests/testsuite/cargo_info/pick_msrv_compatible_package/mod.rs (+24/-0) vendor/cargo/tests/testsuite/cargo_info/pick_msrv_compatible_package/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_info/pick_msrv_compatible_package/stdout.term.svg (+36/-0) vendor/cargo/tests/testsuite/cargo_info/pick_msrv_compatible_package_within_ws/mod.rs (+32/-0) vendor/cargo/tests/testsuite/cargo_info/pick_msrv_compatible_package_within_ws/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_info/pick_msrv_compatible_package_within_ws/stdout.term.svg (+36/-0) vendor/cargo/tests/testsuite/cargo_info/pick_msrv_compatible_package_within_ws_and_use_msrv_from_ws/mod.rs (+32/-0) vendor/cargo/tests/testsuite/cargo_info/pick_msrv_compatible_package_within_ws_and_use_msrv_from_ws/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_info/pick_msrv_compatible_package_within_ws_and_use_msrv_from_ws/stdout.term.svg (+36/-0) vendor/cargo/tests/testsuite/cargo_info/specify_empty_version_with_url/mod.rs (+22/-0) vendor/cargo/tests/testsuite/cargo_info/specify_empty_version_with_url/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_info/specify_version_outside_ws/mod.rs (+20/-0) vendor/cargo/tests/testsuite/cargo_info/specify_version_outside_ws/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_info/specify_version_outside_ws/stdout.term.svg (+36/-0) vendor/cargo/tests/testsuite/cargo_info/specify_version_with_url_but_registry_is_not_matched/mod.rs (+22/-0) vendor/cargo/tests/testsuite/cargo_info/specify_version_with_url_but_registry_is_not_matched/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_info/specify_version_within_ws_and_conflict_with_lockfile/mod.rs (+36/-0) vendor/cargo/tests/testsuite/cargo_info/specify_version_within_ws_and_conflict_with_lockfile/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_info/specify_version_within_ws_and_conflict_with_lockfile/stdout.term.svg (+36/-0) vendor/cargo/tests/testsuite/cargo_info/specify_version_within_ws_and_match_with_lockfile/mod.rs (+36/-0) vendor/cargo/tests/testsuite/cargo_info/specify_version_within_ws_and_match_with_lockfile/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_info/specify_version_within_ws_and_match_with_lockfile/stdout.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_info/transitive_dependency_within_ws/direct1-stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_info/transitive_dependency_within_ws/direct1-stdout.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_info/transitive_dependency_within_ws/direct2-stdout.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_info/transitive_dependency_within_ws/mod.rs (+78/-0) vendor/cargo/tests/testsuite/cargo_info/transitive_dependency_within_ws/transitive1-stdout.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_info/transitive_dependency_within_ws/transitive2-stdout.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_info/transitive_dependency_within_ws/ws-stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_info/transitive_dependency_within_ws/ws-stdout.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_info/verbose/mod.rs (+53/-0) vendor/cargo/tests/testsuite/cargo_info/verbose/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_info/verbose/stdout.term.svg (+59/-0) vendor/cargo/tests/testsuite/cargo_info/with_frozen_outside_ws/mod.rs (+30/-0) vendor/cargo/tests/testsuite/cargo_info/with_frozen_outside_ws/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_info/with_frozen_within_ws/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_info/with_frozen_within_ws/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_info/with_locked_outside_ws/mod.rs (+30/-0) vendor/cargo/tests/testsuite/cargo_info/with_locked_outside_ws/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_info/with_locked_within_ws/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_info/with_locked_within_ws/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_info/with_locked_within_ws_and_pick_the_package/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_info/with_locked_within_ws_and_pick_the_package/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_info/with_locked_within_ws_and_pick_the_package/stdout.term.svg (+36/-0) vendor/cargo/tests/testsuite/cargo_info/with_offline/mod.rs (+30/-0) vendor/cargo/tests/testsuite/cargo_info/with_offline/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_info/with_quiet/mod.rs (+30/-0) vendor/cargo/tests/testsuite/cargo_info/with_quiet/stdout.term.svg (+36/-0) vendor/cargo/tests/testsuite/cargo_info/within_ws/mod.rs (+36/-0) vendor/cargo/tests/testsuite/cargo_info/within_ws/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_info/within_ws/stdout.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_info/within_ws_and_pick_ws_package/mod.rs (+27/-0) vendor/cargo/tests/testsuite/cargo_info/within_ws_and_pick_ws_package/stdout.term.svg (+36/-0) vendor/cargo/tests/testsuite/cargo_info/within_ws_with_alternative_registry/mod.rs (+30/-0) vendor/cargo/tests/testsuite/cargo_info/within_ws_with_alternative_registry/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_info/within_ws_with_alternative_registry/stdout.term.svg (+36/-0) vendor/cargo/tests/testsuite/cargo_info/within_ws_without_lockfile/mod.rs (+33/-0) vendor/cargo/tests/testsuite/cargo_info/within_ws_without_lockfile/stderr.term.svg (+37/-0) vendor/cargo/tests/testsuite/cargo_info/within_ws_without_lockfile/stdout.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_info/without_requiring_registry_auth/mod.rs (+26/-0) vendor/cargo/tests/testsuite/cargo_info/without_requiring_registry_auth/stderr.term.svg (+31/-0) vendor/cargo/tests/testsuite/cargo_info/without_requiring_registry_auth/stdout.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_init/auto_git/in/mod.rs (+7/-0) vendor/cargo/tests/testsuite/cargo_init/auto_git/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/auto_git/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_explicit/in/src/main.rs (+4/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_explicit/mod.rs (+22/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_explicit/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_explicit_nosrc/in/main.rs (+4/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_explicit_nosrc/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_explicit_nosrc/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_implicit/in/src/main.rs (+4/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_implicit/mod.rs (+22/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_implicit/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_implicit_namenosrc/in/case.rs (+4/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_implicit_namenosrc/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_implicit_namenosrc/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_implicit_namesrc/in/src/case.rs (+4/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_implicit_namesrc/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_implicit_namesrc/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_implicit_nosrc/in/main.rs (+4/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_implicit_nosrc/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/bin_already_exists_implicit_nosrc/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/both_lib_and_bin/mod.rs (+19/-0) vendor/cargo/tests/testsuite/cargo_init/both_lib_and_bin/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_init/cant_create_library_when_both_binlib_present/in/case.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/cant_create_library_when_both_binlib_present/in/lib.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/cant_create_library_when_both_binlib_present/mod.rs (+19/-0) vendor/cargo/tests/testsuite/cargo_init/cant_create_library_when_both_binlib_present/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/confused_by_multiple_lib_files/in/lib.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/confused_by_multiple_lib_files/in/src/lib.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/confused_by_multiple_lib_files/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/confused_by_multiple_lib_files/out/lib.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/confused_by_multiple_lib_files/out/src/lib.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/confused_by_multiple_lib_files/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_init/creates_binary_when_both_binlib_present/in/case.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/creates_binary_when_both_binlib_present/in/lib.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/creates_binary_when_both_binlib_present/mod.rs (+22/-0) vendor/cargo/tests/testsuite/cargo_init/creates_binary_when_both_binlib_present/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/creates_binary_when_instructed_and_has_lib_file/in/case.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/creates_binary_when_instructed_and_has_lib_file/mod.rs (+22/-0) vendor/cargo/tests/testsuite/cargo_init/creates_binary_when_instructed_and_has_lib_file/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_init/creates_library_when_instructed_and_has_bin_file/in/case.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/creates_library_when_instructed_and_has_bin_file/mod.rs (+22/-0) vendor/cargo/tests/testsuite/cargo_init/creates_library_when_instructed_and_has_bin_file/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_init/empty_dir/mod.rs (+7/-0) vendor/cargo/tests/testsuite/cargo_init/explicit_bin_with_git/in/mod.rs (+7/-0) vendor/cargo/tests/testsuite/cargo_init/explicit_bin_with_git/mod.rs (+22/-0) vendor/cargo/tests/testsuite/cargo_init/explicit_bin_with_git/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/formats_source/in/rustfmt.toml (+1/-0) vendor/cargo/tests/testsuite/cargo_init/formats_source/mod.rs (+30/-0) vendor/cargo/tests/testsuite/cargo_init/formats_source/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/fossil_autodetect/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/fossil_autodetect/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/git_autodetect/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_init/git_autodetect/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/git_ignore_exists_no_conflicting_entries/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/git_ignore_exists_no_conflicting_entries/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_init/help/stdout.term.svg (+86/-0) vendor/cargo/tests/testsuite/cargo_init/ignores_failure_to_format_source/in/rustfmt.toml (+1/-0) vendor/cargo/tests/testsuite/cargo_init/ignores_failure_to_format_source/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/ignores_failure_to_format_source/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/inferred_bin_with_git/in/main.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/inferred_bin_with_git/mod.rs (+22/-0) vendor/cargo/tests/testsuite/cargo_init/inferred_bin_with_git/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/inferred_lib_with_git/in/lib.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/inferred_lib_with_git/mod.rs (+22/-0) vendor/cargo/tests/testsuite/cargo_init/inferred_lib_with_git/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/inherit_workspace_package_table/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_init/inherit_workspace_package_table/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/invalid_dir_name/mod.rs (+21/-0) vendor/cargo/tests/testsuite/cargo_init/invalid_dir_name/stderr.term.svg (+44/-0) vendor/cargo/tests/testsuite/cargo_init/lib_already_exists_nosrc/in/lib.rs (+0/-0) vendor/cargo/tests/testsuite/cargo_init/lib_already_exists_nosrc/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/lib_already_exists_nosrc/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/lib_already_exists_src/in/src/lib.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/lib_already_exists_src/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/lib_already_exists_src/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/mercurial_autodetect/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/mercurial_autodetect/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/mod.rs (+45/-0) vendor/cargo/tests/testsuite/cargo_init/multibin_project_name_clash/in/case.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/multibin_project_name_clash/in/main.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/multibin_project_name_clash/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/multibin_project_name_clash/out/case.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/multibin_project_name_clash/out/main.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_init/multibin_project_name_clash/stderr.term.svg (+33/-0) vendor/cargo/tests/testsuite/cargo_init/no_filename/mod.rs (+16/-0) vendor/cargo/tests/testsuite/cargo_init/no_filename/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_init/path_contains_separator/mod.rs (+27/-0) vendor/cargo/tests/testsuite/cargo_init/path_contains_separator/stderr.term.svg (+35/-0) vendor/cargo/tests/testsuite/cargo_init/pijul_autodetect/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/pijul_autodetect/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/reserved_name/mod.rs (+22/-0) vendor/cargo/tests/testsuite/cargo_init/reserved_name/stderr.term.svg (+44/-0) vendor/cargo/tests/testsuite/cargo_init/simple_bin/in/mod.rs (+7/-0) vendor/cargo/tests/testsuite/cargo_init/simple_bin/mod.rs (+30/-0) vendor/cargo/tests/testsuite/cargo_init/simple_bin/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/simple_git/in/mod.rs (+7/-0) vendor/cargo/tests/testsuite/cargo_init/simple_git/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/simple_git/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/simple_git_ignore_exists/mod.rs (+29/-0) vendor/cargo/tests/testsuite/cargo_init/simple_git_ignore_exists/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/simple_hg/in/mod.rs (+7/-0) vendor/cargo/tests/testsuite/cargo_init/simple_hg/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/simple_hg/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/simple_hg_ignore_exists/mod.rs (+23/-0) vendor/cargo/tests/testsuite/cargo_init/simple_hg_ignore_exists/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/simple_lib/in/mod.rs (+7/-0) vendor/cargo/tests/testsuite/cargo_init/simple_lib/mod.rs (+30/-0) vendor/cargo/tests/testsuite/cargo_init/simple_lib/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/unknown_flags/mod.rs (+15/-0) vendor/cargo/tests/testsuite/cargo_init/unknown_flags/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_init/with_argument/mod.rs (+22/-0) vendor/cargo/tests/testsuite/cargo_init/with_argument/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_init/workspace_add_member/mod.rs (+22/-0) vendor/cargo/tests/testsuite/cargo_init/workspace_add_member/stderr.term.svg (+32/-0) vendor/cargo/tests/testsuite/cargo_install/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_install/help/stdout.term.svg (+138/-0) vendor/cargo/tests/testsuite/cargo_install/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_locate_project/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_locate_project/help/stdout.term.svg (+70/-0) vendor/cargo/tests/testsuite/cargo_locate_project/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_login/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_login/help/stdout.term.svg (+72/-0) vendor/cargo/tests/testsuite/cargo_login/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_logout/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_logout/help/stdout.term.svg (+64/-0) vendor/cargo/tests/testsuite/cargo_logout/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_metadata/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_metadata/help/stdout.term.svg (+88/-0) vendor/cargo/tests/testsuite/cargo_metadata/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_new/add_members_to_non_workspace/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_new/add_members_to_non_workspace/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_new/add_members_to_workspace_format_previous_items/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_new/add_members_to_workspace_format_previous_items/stderr.term.svg (+32/-0) vendor/cargo/tests/testsuite/cargo_new/add_members_to_workspace_format_sorted/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_new/add_members_to_workspace_format_sorted/stderr.term.svg (+32/-0) vendor/cargo/tests/testsuite/cargo_new/add_members_to_workspace_with_absolute_package_path/mod.rs (+26/-0) vendor/cargo/tests/testsuite/cargo_new/add_members_to_workspace_with_absolute_package_path/stderr.term.svg (+32/-0) vendor/cargo/tests/testsuite/cargo_new/add_members_to_workspace_with_empty_members/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_new/add_members_to_workspace_with_empty_members/stderr.term.svg (+32/-0) vendor/cargo/tests/testsuite/cargo_new/add_members_to_workspace_with_exclude_list/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_new/add_members_to_workspace_with_exclude_list/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_new/add_members_to_workspace_with_members_glob/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_new/add_members_to_workspace_with_members_glob/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_new/add_members_to_workspace_without_members/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_new/add_members_to_workspace_without_members/stderr.term.svg (+32/-0) vendor/cargo/tests/testsuite/cargo_new/empty_name/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_new/empty_name/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_new/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_new/help/stdout.term.svg (+86/-0) vendor/cargo/tests/testsuite/cargo_new/inherit_workspace_lints/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_new/inherit_workspace_lints/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_new/inherit_workspace_package_table/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_new/inherit_workspace_package_table/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_new/inherit_workspace_package_table_with_edition/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_new/inherit_workspace_package_table_with_edition/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_new/inherit_workspace_package_table_with_registry/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_new/inherit_workspace_package_table_with_registry/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_new/inherit_workspace_package_table_without_version/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_new/inherit_workspace_package_table_without_version/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_new/mod.rs (+16/-0) vendor/cargo/tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_members/mod.rs (+25/-0) vendor/cargo/tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_members/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_owner/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_owner/help/stdout.term.svg (+80/-0) vendor/cargo/tests/testsuite/cargo_owner/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_package/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_package/help/stdout.term.svg (+110/-0) vendor/cargo/tests/testsuite/cargo_package/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_pkgid/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_pkgid/help/stdout.term.svg (+78/-0) vendor/cargo/tests/testsuite/cargo_pkgid/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_publish/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_publish/help/stdout.term.svg (+106/-0) vendor/cargo/tests/testsuite/cargo_publish/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_read_manifest/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_read_manifest/help/stdout.term.svg (+64/-0) vendor/cargo/tests/testsuite/cargo_read_manifest/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_remove/avoid_empty_tables/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/avoid_empty_tables/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/build/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/build/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/dev/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/dev/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/dry_run/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/dry_run/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_remove/gc_keep_used_patch/mod.rs (+30/-0) vendor/cargo/tests/testsuite/cargo_remove/gc_keep_used_patch/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/gc_patch/mod.rs (+81/-0) vendor/cargo/tests/testsuite/cargo_remove/gc_patch/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/gc_profile/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_remove/gc_profile/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/gc_replace/mod.rs (+39/-0) vendor/cargo/tests/testsuite/cargo_remove/gc_replace/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_remove/help/stdout.term.svg (+90/-0) vendor/cargo/tests/testsuite/cargo_remove/invalid_arg/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/invalid_arg/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_remove/invalid_dep/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/invalid_dep/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_remove/invalid_package/mod.rs (+40/-0) vendor/cargo/tests/testsuite/cargo_remove/invalid_package/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/invalid_package_multiple/mod.rs (+40/-0) vendor/cargo/tests/testsuite/cargo_remove/invalid_package_multiple/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_remove/invalid_section/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/invalid_section/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_remove/invalid_section_dep/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/invalid_section_dep/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_remove/invalid_target/mod.rs (+40/-0) vendor/cargo/tests/testsuite/cargo_remove/invalid_target/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_remove/invalid_target_dep/mod.rs (+40/-0) vendor/cargo/tests/testsuite/cargo_remove/invalid_target_dep/stderr.term.svg (+30/-0) vendor/cargo/tests/testsuite/cargo_remove/mod.rs (+34/-0) vendor/cargo/tests/testsuite/cargo_remove/multiple_deps/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/multiple_deps/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_remove/multiple_dev/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/multiple_dev/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_remove/no_arg/mod.rs (+37/-0) vendor/cargo/tests/testsuite/cargo_remove/no_arg/stderr.term.svg (+39/-0) vendor/cargo/tests/testsuite/cargo_remove/offline/mod.rs (+45/-0) vendor/cargo/tests/testsuite/cargo_remove/offline/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/optional_dep_feature/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/optional_dep_feature/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/optional_dep_feature_formatting/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/optional_dep_feature_formatting/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_remove/optional_feature/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/optional_feature/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/package/mod.rs (+40/-0) vendor/cargo/tests/testsuite/cargo_remove/package/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/remove_basic/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/remove_basic/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/skip_gc_glob_profile/mod.rs (+28/-0) vendor/cargo/tests/testsuite/cargo_remove/skip_gc_glob_profile/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/target/mod.rs (+40/-0) vendor/cargo/tests/testsuite/cargo_remove/target/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/target_build/mod.rs (+40/-0) vendor/cargo/tests/testsuite/cargo_remove/target_build/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/target_dev/mod.rs (+40/-0) vendor/cargo/tests/testsuite/cargo_remove/target_dev/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/update_lock_file/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/update_lock_file/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/workspace/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/workspace/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/workspace_non_virtual/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/workspace_non_virtual/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_remove/workspace_preserved/mod.rs (+38/-0) vendor/cargo/tests/testsuite/cargo_remove/workspace_preserved/stderr.term.svg (+27/-0) vendor/cargo/tests/testsuite/cargo_report/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_report/help/stdout.term.svg (+68/-0) vendor/cargo/tests/testsuite/cargo_report/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_run/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_run/help/stdout.term.svg (+122/-0) vendor/cargo/tests/testsuite/cargo_run/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_rustc/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_rustc/help/stdout.term.svg (+144/-0) vendor/cargo/tests/testsuite/cargo_rustc/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_rustdoc/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_rustdoc/help/stdout.term.svg (+142/-0) vendor/cargo/tests/testsuite/cargo_rustdoc/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_search/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_search/help/stdout.term.svg (+74/-0) vendor/cargo/tests/testsuite/cargo_search/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_targets.rs (+72/-0) vendor/cargo/tests/testsuite/cargo_test/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_test/help/stdout.term.svg (+154/-0) vendor/cargo/tests/testsuite/cargo_test/mod.rs (+2/-0) vendor/cargo/tests/testsuite/cargo_test/no_keep_going/mod.rs (+22/-0) vendor/cargo/tests/testsuite/cargo_test/no_keep_going/stderr.term.svg (+42/-0) vendor/cargo/tests/testsuite/cargo_tree/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_tree/help/stdout.term.svg (+116/-0) vendor/cargo/tests/testsuite/cargo_tree/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_uninstall/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_uninstall/help/stdout.term.svg (+82/-0) vendor/cargo/tests/testsuite/cargo_uninstall/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_update/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_update/help/stdout.term.svg (+84/-0) vendor/cargo/tests/testsuite/cargo_update/mod.rs (+2/-0) vendor/cargo/tests/testsuite/cargo_update/toolchain_pkgname/mod.rs (+21/-0) vendor/cargo/tests/testsuite/cargo_update/toolchain_pkgname/stderr.term.svg (+29/-0) vendor/cargo/tests/testsuite/cargo_vendor/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_vendor/help/stdout.term.svg (+82/-0) vendor/cargo/tests/testsuite/cargo_vendor/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_verify_project/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_verify_project/help/stdout.term.svg (+64/-0) vendor/cargo/tests/testsuite/cargo_verify_project/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_version/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_version/help/stdout.term.svg (+62/-0) vendor/cargo/tests/testsuite/cargo_version/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cargo_yank/help/mod.rs (+14/-0) vendor/cargo/tests/testsuite/cargo_yank/help/stdout.term.svg (+78/-0) vendor/cargo/tests/testsuite/cargo_yank/mod.rs (+1/-0) vendor/cargo/tests/testsuite/cfg.rs (+523/-0) vendor/cargo/tests/testsuite/check.rs (+1680/-0) vendor/cargo/tests/testsuite/check_cfg.rs (+947/-0) vendor/cargo/tests/testsuite/clean.rs (+918/-0) vendor/cargo/tests/testsuite/collisions.rs (+594/-0) vendor/cargo/tests/testsuite/concurrent.rs (+510/-0) vendor/cargo/tests/testsuite/config.rs (+2145/-0) vendor/cargo/tests/testsuite/config_cli.rs (+577/-0) vendor/cargo/tests/testsuite/config_include.rs (+496/-0) vendor/cargo/tests/testsuite/corrupt_git.rs (+161/-0) vendor/cargo/tests/testsuite/credential_process.rs (+713/-0) vendor/cargo/tests/testsuite/cross_compile.rs (+1262/-0) vendor/cargo/tests/testsuite/cross_publish.rs (+123/-0) vendor/cargo/tests/testsuite/custom_target.rs (+268/-0) vendor/cargo/tests/testsuite/death.rs (+102/-0) vendor/cargo/tests/testsuite/dep_info.rs (+620/-0) vendor/cargo/tests/testsuite/diagnostics.rs (+33/-0) vendor/cargo/tests/testsuite/direct_minimal_versions.rs (+256/-0) vendor/cargo/tests/testsuite/directory.rs (+786/-0) vendor/cargo/tests/testsuite/doc.rs (+2913/-0) vendor/cargo/tests/testsuite/docscrape.rs (+770/-0) vendor/cargo/tests/testsuite/edition.rs (+196/-0) vendor/cargo/tests/testsuite/error.rs (+21/-0) vendor/cargo/tests/testsuite/features.rs (+2341/-0) vendor/cargo/tests/testsuite/features2.rs (+2815/-0) vendor/cargo/tests/testsuite/features_namespaced.rs (+1346/-0) vendor/cargo/tests/testsuite/fetch.rs (+147/-0) vendor/cargo/tests/testsuite/fix.rs (+2959/-0) vendor/cargo/tests/testsuite/fix_n_times.rs (+522/-0) vendor/cargo/tests/testsuite/freshness.rs (+3149/-0) vendor/cargo/tests/testsuite/future_incompat_report.rs (+460/-0) vendor/cargo/tests/testsuite/generate_lockfile.rs (+286/-0) vendor/cargo/tests/testsuite/git.rs (+4121/-0) vendor/cargo/tests/testsuite/git_auth.rs (+481/-0) vendor/cargo/tests/testsuite/git_gc.rs (+117/-0) vendor/cargo/tests/testsuite/git_shallow.rs (+874/-0) vendor/cargo/tests/testsuite/glob_targets.rs (+512/-0) vendor/cargo/tests/testsuite/global_cache_tracker.rs (+2076/-0) vendor/cargo/tests/testsuite/help.rs (+167/-0) vendor/cargo/tests/testsuite/https.rs (+165/-0) vendor/cargo/tests/testsuite/inheritable_workspace_fields.rs (+1877/-0) vendor/cargo/tests/testsuite/install.rs (+2736/-0) vendor/cargo/tests/testsuite/install_upgrade.rs (+986/-0) vendor/cargo/tests/testsuite/jobserver.rs (+458/-0) vendor/cargo/tests/testsuite/lints/error/mod.rs (+36/-0) vendor/cargo/tests/testsuite/lints/error/stderr.term.svg (+41/-0) vendor/cargo/tests/testsuite/lints/implicit_features.rs (+136/-0) vendor/cargo/tests/testsuite/lints/inherited/mod.rs (+43/-0) vendor/cargo/tests/testsuite/lints/inherited/stderr.term.svg (+57/-0) vendor/cargo/tests/testsuite/lints/mod.rs (+328/-0) vendor/cargo/tests/testsuite/lints/unknown_lints.rs (+91/-0) vendor/cargo/tests/testsuite/lints/unused_optional_dependencies.rs (+349/-0) vendor/cargo/tests/testsuite/lints/warning/mod.rs (+36/-0) vendor/cargo/tests/testsuite/lints/warning/stderr.term.svg (+46/-0) vendor/cargo/tests/testsuite/lints_table.rs (+843/-0) vendor/cargo/tests/testsuite/list_availables.rs (+1005/-0) vendor/cargo/tests/testsuite/local_registry.rs (+554/-0) vendor/cargo/tests/testsuite/locate_project.rs (+125/-0) vendor/cargo/tests/testsuite/lockfile_compat.rs (+1314/-0) vendor/cargo/tests/testsuite/lockfile_path.rs (+462/-0) vendor/cargo/tests/testsuite/login.rs (+369/-0) vendor/cargo/tests/testsuite/logout.rs (+129/-0) vendor/cargo/tests/testsuite/lto.rs (+947/-0) vendor/cargo/tests/testsuite/main.rs (+194/-0) vendor/cargo/tests/testsuite/member_discovery.rs (+44/-0) vendor/cargo/tests/testsuite/member_errors.rs (+168/-0) vendor/cargo/tests/testsuite/message_format.rs (+154/-0) vendor/cargo/tests/testsuite/messages.rs (+164/-0) vendor/cargo/tests/testsuite/metabuild.rs (+834/-0) vendor/cargo/tests/testsuite/metadata.rs (+4935/-0) vendor/cargo/tests/testsuite/minimal_versions.rs (+46/-0) vendor/cargo/tests/testsuite/multitarget.rs (+270/-0) vendor/cargo/tests/testsuite/net_config.rs (+78/-0) vendor/cargo/tests/testsuite/new.rs (+571/-0) vendor/cargo/tests/testsuite/offline.rs (+792/-0) vendor/cargo/tests/testsuite/old_cargos.rs (+741/-0) vendor/cargo/tests/testsuite/open_namespaces.rs (+370/-0) vendor/cargo/tests/testsuite/owner.rs (+194/-0) vendor/cargo/tests/testsuite/package.rs (+6502/-0) vendor/cargo/tests/testsuite/package_features.rs (+810/-0) vendor/cargo/tests/testsuite/patch.rs (+3076/-0) vendor/cargo/tests/testsuite/path.rs (+1923/-0) vendor/cargo/tests/testsuite/paths.rs (+253/-0) vendor/cargo/tests/testsuite/pkgid.rs (+413/-0) vendor/cargo/tests/testsuite/precise_pre_release.rs (+119/-0) vendor/cargo/tests/testsuite/proc_macro.rs (+571/-0) vendor/cargo/tests/testsuite/profile_config.rs (+528/-0) vendor/cargo/tests/testsuite/profile_custom.rs (+701/-0) vendor/cargo/tests/testsuite/profile_overrides.rs (+613/-0) vendor/cargo/tests/testsuite/profile_targets.rs (+735/-0) vendor/cargo/tests/testsuite/profile_trim_paths.rs (+841/-0) vendor/cargo/tests/testsuite/profiles.rs (+883/-0) vendor/cargo/tests/testsuite/progress.rs (+168/-0) vendor/cargo/tests/testsuite/pub_priv.rs (+685/-0) vendor/cargo/tests/testsuite/publish.rs (+3419/-0) vendor/cargo/tests/testsuite/publish_lockfile.rs (+593/-0) vendor/cargo/tests/testsuite/read_manifest.rs (+236/-0) vendor/cargo/tests/testsuite/registry.rs (+4334/-0) vendor/cargo/tests/testsuite/registry_auth.rs (+573/-0) vendor/cargo/tests/testsuite/registry_overlay.rs (+309/-0) vendor/cargo/tests/testsuite/rename_deps.rs (+406/-0) vendor/cargo/tests/testsuite/replace.rs (+1500/-0) vendor/cargo/tests/testsuite/required_features.rs (+1630/-0) vendor/cargo/tests/testsuite/run.rs (+1745/-0) vendor/cargo/tests/testsuite/rust_version.rs (+1078/-0) vendor/cargo/tests/testsuite/rustc.rs (+797/-0) vendor/cargo/tests/testsuite/rustc_info_cache.rs (+190/-0) vendor/cargo/tests/testsuite/rustdoc.rs (+322/-0) vendor/cargo/tests/testsuite/rustdoc_extern_html.rs (+500/-0) vendor/cargo/tests/testsuite/rustdocflags.rs (+281/-0) vendor/cargo/tests/testsuite/rustflags.rs (+1707/-0) vendor/cargo/tests/testsuite/rustup.rs (+261/-0) vendor/cargo/tests/testsuite/script.rs (+1319/-0) vendor/cargo/tests/testsuite/search.rs (+212/-0) vendor/cargo/tests/testsuite/shell_quoting.rs (+43/-0) vendor/cargo/tests/testsuite/source_replacement.rs (+296/-0) vendor/cargo/tests/testsuite/ssh.rs (+635/-0) vendor/cargo/tests/testsuite/standard_lib.rs (+712/-0) vendor/cargo/tests/testsuite/test.rs (+5607/-0) vendor/cargo/tests/testsuite/timings.rs (+56/-0) vendor/cargo/tests/testsuite/tool_paths.rs (+487/-0) vendor/cargo/tests/testsuite/tree.rs (+2132/-0) vendor/cargo/tests/testsuite/tree_graph_features.rs (+352/-0) vendor/cargo/tests/testsuite/unit_graph.rs (+236/-0) vendor/cargo/tests/testsuite/update.rs (+2712/-0) vendor/cargo/tests/testsuite/vendor.rs (+1886/-0) vendor/cargo/tests/testsuite/verify_project.rs (+85/-0) vendor/cargo/tests/testsuite/version.rs (+70/-0) vendor/cargo/tests/testsuite/warn_on_failure.rs (+116/-0) vendor/cargo/tests/testsuite/weak_dep_features.rs (+658/-0) vendor/cargo/tests/testsuite/workspaces.rs (+2630/-0) vendor/cargo/tests/testsuite/yank.rs (+214/-0) vendor/cargo/triagebot.toml (+352/-0) vendor/cargo/windows.manifest.xml (+28/-0) vendor/cbindgen/.cargo-checksum.json (+1/-0) vendor/cbindgen/CHANGES (+350/-0) vendor/cbindgen/Cargo.lock (+571/-0) vendor/cbindgen/Cargo.toml (+114/-0) vendor/cbindgen/LICENSE (+373/-0) vendor/cbindgen/README.md (+98/-0) vendor/cbindgen/build.rs (+97/-0) vendor/cbindgen/contributing.md (+25/-0) vendor/cbindgen/docs.md (+1129/-0) vendor/cbindgen/internals.md (+30/-0) vendor/cbindgen/rust-toolchain.toml (+2/-0) vendor/cbindgen/src/bindgen/bindings.rs (+229/-0) vendor/cbindgen/src/bindgen/bitflags.rs (+289/-0) vendor/cbindgen/src/bindgen/builder.rs (+426/-0) vendor/cbindgen/src/bindgen/cargo/cargo.rs (+265/-0) vendor/cbindgen/src/bindgen/cargo/cargo_expand.rs (+145/-0) vendor/cbindgen/src/bindgen/cargo/cargo_lock.rs (+53/-0) vendor/cbindgen/src/bindgen/cargo/cargo_metadata.rs (+253/-0) vendor/cbindgen/src/bindgen/cargo/cargo_toml.rs (+67/-0) vendor/cbindgen/src/bindgen/cargo/mod.rs (+12/-0) vendor/cbindgen/src/bindgen/cdecl.rs (+401/-0) vendor/cbindgen/src/bindgen/config.rs (+1130/-0) vendor/cbindgen/src/bindgen/declarationtyperesolver.rs (+57/-0) vendor/cbindgen/src/bindgen/dependencies.rs (+46/-0) vendor/cbindgen/src/bindgen/error.rs (+88/-0) vendor/cbindgen/src/bindgen/ir/annotation.rs (+222/-0) vendor/cbindgen/src/bindgen/ir/cfg.rs (+360/-0) vendor/cbindgen/src/bindgen/ir/constant.rs (+728/-0) vendor/cbindgen/src/bindgen/ir/documentation.rs (+34/-0) vendor/cbindgen/src/bindgen/ir/enumeration.rs (+1502/-0) vendor/cbindgen/src/bindgen/ir/field.rs (+45/-0) vendor/cbindgen/src/bindgen/ir/function.rs (+291/-0) vendor/cbindgen/src/bindgen/ir/generic_path.rs (+343/-0) vendor/cbindgen/src/bindgen/ir/global.rs (+115/-0) vendor/cbindgen/src/bindgen/ir/item.rs (+242/-0) vendor/cbindgen/src/bindgen/ir/mod.rs (+39/-0) vendor/cbindgen/src/bindgen/ir/opaque.rs (+138/-0) vendor/cbindgen/src/bindgen/ir/path.rs (+50/-0) vendor/cbindgen/src/bindgen/ir/repr.rs (+175/-0) vendor/cbindgen/src/bindgen/ir/structure.rs (+380/-0) vendor/cbindgen/src/bindgen/ir/ty.rs (+882/-0) vendor/cbindgen/src/bindgen/ir/typedef.rs (+181/-0) vendor/cbindgen/src/bindgen/ir/union.rs (+261/-0) vendor/cbindgen/src/bindgen/language_backend/clike.rs (+1002/-0) vendor/cbindgen/src/bindgen/language_backend/cython.rs (+439/-0) vendor/cbindgen/src/bindgen/language_backend/mod.rs (+210/-0) vendor/cbindgen/src/bindgen/library.rs (+450/-0) vendor/cbindgen/src/bindgen/mangle.rs (+348/-0) vendor/cbindgen/src/bindgen/mod.rs (+66/-0) vendor/cbindgen/src/bindgen/monomorph.rs (+147/-0) vendor/cbindgen/src/bindgen/parser.rs (+1038/-0) vendor/cbindgen/src/bindgen/rename.rs (+140/-0) vendor/cbindgen/src/bindgen/reserved.rs (+91/-0) vendor/cbindgen/src/bindgen/utilities.rs (+374/-0) vendor/cbindgen/src/bindgen/writer.rs (+271/-0) vendor/cbindgen/src/lib.rs (+41/-0) vendor/cbindgen/src/logging.rs (+105/-0) vendor/cbindgen/src/main.rs (+353/-0) vendor/cbindgen/template.toml (+159/-0) vendor/cbindgen/tests/depfile.rs (+116/-0) vendor/cbindgen/tests/depfile/Readme.md (+11/-0) vendor/cbindgen/tests/depfile/cbindgen_test.cmake (+27/-0) vendor/cbindgen/tests/expectations/abi_string.c (+8/-0) vendor/cbindgen/tests/expectations/abi_string.compat.c (+16/-0) vendor/cbindgen/tests/expectations/abi_string.cpp (+13/-0) vendor/cbindgen/tests/expectations/abi_string.pyx (+11/-0) vendor/cbindgen/tests/expectations/alias.c (+37/-0) vendor/cbindgen/tests/expectations/alias.compat.c (+51/-0) vendor/cbindgen/tests/expectations/alias.cpp (+36/-0) vendor/cbindgen/tests/expectations/alias.pyx (+36/-0) vendor/cbindgen/tests/expectations/alias_both.c (+37/-0) vendor/cbindgen/tests/expectations/alias_both.compat.c (+51/-0) vendor/cbindgen/tests/expectations/alias_tag.c (+37/-0) vendor/cbindgen/tests/expectations/alias_tag.compat.c (+51/-0) vendor/cbindgen/tests/expectations/alias_tag.pyx (+36/-0) vendor/cbindgen/tests/expectations/annotation.c (+65/-0) vendor/cbindgen/tests/expectations/annotation.compat.c (+91/-0) vendor/cbindgen/tests/expectations/annotation.cpp (+152/-0) vendor/cbindgen/tests/expectations/annotation.pyx (+52/-0) vendor/cbindgen/tests/expectations/annotation_both.c (+65/-0) vendor/cbindgen/tests/expectations/annotation_both.compat.c (+91/-0) vendor/cbindgen/tests/expectations/annotation_tag.c (+65/-0) vendor/cbindgen/tests/expectations/annotation_tag.compat.c (+91/-0) vendor/cbindgen/tests/expectations/annotation_tag.pyx (+52/-0) vendor/cbindgen/tests/expectations/array.c (+19/-0) vendor/cbindgen/tests/expectations/array.compat.c (+27/-0) vendor/cbindgen/tests/expectations/array.cpp (+39/-0) vendor/cbindgen/tests/expectations/array.pyx (+16/-0) vendor/cbindgen/tests/expectations/array_both.c (+19/-0) vendor/cbindgen/tests/expectations/array_both.compat.c (+27/-0) vendor/cbindgen/tests/expectations/array_tag.c (+19/-0) vendor/cbindgen/tests/expectations/array_tag.compat.c (+27/-0) vendor/cbindgen/tests/expectations/array_tag.pyx (+16/-0) vendor/cbindgen/tests/expectations/asserted_cast.c (+78/-0) vendor/cbindgen/tests/expectations/asserted_cast.compat.c (+104/-0) vendor/cbindgen/tests/expectations/asserted_cast.cpp (+250/-0) vendor/cbindgen/tests/expectations/asserted_cast.pyx (+62/-0) vendor/cbindgen/tests/expectations/asserted_cast_both.c (+78/-0) vendor/cbindgen/tests/expectations/asserted_cast_both.compat.c (+104/-0) vendor/cbindgen/tests/expectations/asserted_cast_tag.c (+78/-0) vendor/cbindgen/tests/expectations/asserted_cast_tag.compat.c (+104/-0) vendor/cbindgen/tests/expectations/asserted_cast_tag.pyx (+62/-0) vendor/cbindgen/tests/expectations/assoc_const_conflict.compat.c (+6/-0) vendor/cbindgen/tests/expectations/assoc_const_conflict.cpp (+7/-0) vendor/cbindgen/tests/expectations/assoc_const_conflict.pyx (+9/-0) vendor/cbindgen/tests/expectations/assoc_constant.c (+12/-0) vendor/cbindgen/tests/expectations/assoc_constant.compat.c (+20/-0) vendor/cbindgen/tests/expectations/assoc_constant.cpp (+17/-0) vendor/cbindgen/tests/expectations/assoc_constant.pyx (+14/-0) vendor/cbindgen/tests/expectations/assoc_constant_both.c (+12/-0) vendor/cbindgen/tests/expectations/assoc_constant_both.compat.c (+20/-0) vendor/cbindgen/tests/expectations/assoc_constant_tag.c (+12/-0) vendor/cbindgen/tests/expectations/assoc_constant_tag.compat.c (+20/-0) vendor/cbindgen/tests/expectations/assoc_constant_tag.pyx (+14/-0) vendor/cbindgen/tests/expectations/associated_constant_panic.compat.c (+4/-0) vendor/cbindgen/tests/expectations/associated_constant_panic.cpp (+5/-0) vendor/cbindgen/tests/expectations/associated_constant_panic.pyx (+8/-0) vendor/cbindgen/tests/expectations/associated_in_body.c (+59/-0) vendor/cbindgen/tests/expectations/associated_in_body.compat.c (+67/-0) vendor/cbindgen/tests/expectations/associated_in_body.cpp (+84/-0) vendor/cbindgen/tests/expectations/associated_in_body.pyx (+41/-0) vendor/cbindgen/tests/expectations/associated_in_body_both.c (+59/-0) vendor/cbindgen/tests/expectations/associated_in_body_both.compat.c (+67/-0) vendor/cbindgen/tests/expectations/associated_in_body_tag.c (+59/-0) vendor/cbindgen/tests/expectations/associated_in_body_tag.compat.c (+67/-0) vendor/cbindgen/tests/expectations/associated_in_body_tag.pyx (+41/-0) vendor/cbindgen/tests/expectations/bitfield.c (+11/-0) vendor/cbindgen/tests/expectations/bitfield.compat.c (+19/-0) vendor/cbindgen/tests/expectations/bitfield.cpp (+16/-0) vendor/cbindgen/tests/expectations/bitfield.pyx (+13/-0) vendor/cbindgen/tests/expectations/bitfield_both.c (+11/-0) vendor/cbindgen/tests/expectations/bitfield_both.compat.c (+19/-0) vendor/cbindgen/tests/expectations/bitfield_tag.c (+11/-0) vendor/cbindgen/tests/expectations/bitfield_tag.compat.c (+19/-0) vendor/cbindgen/tests/expectations/bitfield_tag.pyx (+13/-0) vendor/cbindgen/tests/expectations/bitflags.c (+65/-0) vendor/cbindgen/tests/expectations/bitflags.compat.c (+73/-0) vendor/cbindgen/tests/expectations/bitflags.cpp (+166/-0) vendor/cbindgen/tests/expectations/bitflags.pyx (+48/-0) vendor/cbindgen/tests/expectations/bitflags_both.c (+65/-0) vendor/cbindgen/tests/expectations/bitflags_both.compat.c (+73/-0) vendor/cbindgen/tests/expectations/bitflags_tag.c (+65/-0) vendor/cbindgen/tests/expectations/bitflags_tag.compat.c (+73/-0) vendor/cbindgen/tests/expectations/bitflags_tag.pyx (+48/-0) vendor/cbindgen/tests/expectations/body.c (+93/-0) vendor/cbindgen/tests/expectations/body.compat.c (+101/-0) vendor/cbindgen/tests/expectations/body.cpp (+106/-0) vendor/cbindgen/tests/expectations/body.pyx (+74/-0) vendor/cbindgen/tests/expectations/body_both.c (+93/-0) vendor/cbindgen/tests/expectations/body_both.compat.c (+101/-0) vendor/cbindgen/tests/expectations/body_tag.c (+93/-0) vendor/cbindgen/tests/expectations/body_tag.compat.c (+101/-0) vendor/cbindgen/tests/expectations/body_tag.pyx (+74/-0) vendor/cbindgen/tests/expectations/box.c (+32/-0) vendor/cbindgen/tests/expectations/box.compat.c (+40/-0) vendor/cbindgen/tests/expectations/box.cpp (+41/-0) vendor/cbindgen/tests/expectations/box.pyx (+35/-0) vendor/cbindgen/tests/expectations/box_both.c (+32/-0) vendor/cbindgen/tests/expectations/box_both.compat.c (+40/-0) vendor/cbindgen/tests/expectations/box_tag.c (+32/-0) vendor/cbindgen/tests/expectations/box_tag.compat.c (+40/-0) vendor/cbindgen/tests/expectations/box_tag.pyx (+35/-0) vendor/cbindgen/tests/expectations/cdecl.c (+38/-0) vendor/cbindgen/tests/expectations/cdecl.compat.c (+46/-0) vendor/cbindgen/tests/expectations/cdecl.cpp (+43/-0) vendor/cbindgen/tests/expectations/cdecl.pyx (+41/-0) vendor/cbindgen/tests/expectations/cell.c (+14/-0) vendor/cbindgen/tests/expectations/cell.compat.c (+22/-0) vendor/cbindgen/tests/expectations/cell.cpp (+23/-0) vendor/cbindgen/tests/expectations/cell.pyx (+17/-0) vendor/cbindgen/tests/expectations/cell_both.c (+14/-0) vendor/cbindgen/tests/expectations/cell_both.compat.c (+22/-0) vendor/cbindgen/tests/expectations/cell_tag.c (+14/-0) vendor/cbindgen/tests/expectations/cell_tag.compat.c (+22/-0) vendor/cbindgen/tests/expectations/cell_tag.pyx (+17/-0) vendor/cbindgen/tests/expectations/cfg.c (+110/-0) vendor/cbindgen/tests/expectations/cfg.compat.c (+136/-0) vendor/cbindgen/tests/expectations/cfg.cpp (+247/-0) vendor/cbindgen/tests/expectations/cfg.pyx (+83/-0) vendor/cbindgen/tests/expectations/cfg_2.c (+42/-0) vendor/cbindgen/tests/expectations/cfg_2.compat.c (+50/-0) vendor/cbindgen/tests/expectations/cfg_2.cpp (+47/-0) vendor/cbindgen/tests/expectations/cfg_2.pyx (+36/-0) vendor/cbindgen/tests/expectations/cfg_2_both.c (+42/-0) vendor/cbindgen/tests/expectations/cfg_2_both.compat.c (+50/-0) vendor/cbindgen/tests/expectations/cfg_2_tag.c (+42/-0) vendor/cbindgen/tests/expectations/cfg_2_tag.compat.c (+50/-0) vendor/cbindgen/tests/expectations/cfg_2_tag.pyx (+36/-0) vendor/cbindgen/tests/expectations/cfg_both.c (+110/-0) vendor/cbindgen/tests/expectations/cfg_both.compat.c (+136/-0) vendor/cbindgen/tests/expectations/cfg_field.compat.c (+4/-0) vendor/cbindgen/tests/expectations/cfg_field.cpp (+5/-0) vendor/cbindgen/tests/expectations/cfg_field.pyx (+8/-0) vendor/cbindgen/tests/expectations/cfg_tag.c (+110/-0) vendor/cbindgen/tests/expectations/cfg_tag.compat.c (+136/-0) vendor/cbindgen/tests/expectations/cfg_tag.pyx (+83/-0) vendor/cbindgen/tests/expectations/char.c (+10/-0) vendor/cbindgen/tests/expectations/char.compat.c (+18/-0) vendor/cbindgen/tests/expectations/char.cpp (+15/-0) vendor/cbindgen/tests/expectations/char.pyx (+12/-0) vendor/cbindgen/tests/expectations/char_both.c (+10/-0) vendor/cbindgen/tests/expectations/char_both.compat.c (+18/-0) vendor/cbindgen/tests/expectations/char_tag.c (+10/-0) vendor/cbindgen/tests/expectations/char_tag.compat.c (+18/-0) vendor/cbindgen/tests/expectations/char_tag.pyx (+12/-0) vendor/cbindgen/tests/expectations/const_conflict.compat.c (+6/-0) vendor/cbindgen/tests/expectations/const_conflict.cpp (+7/-0) vendor/cbindgen/tests/expectations/const_conflict.pyx (+9/-0) vendor/cbindgen/tests/expectations/const_generics.c (+17/-0) vendor/cbindgen/tests/expectations/const_generics.compat.c (+25/-0) vendor/cbindgen/tests/expectations/const_generics.cpp (+21/-0) vendor/cbindgen/tests/expectations/const_generics.pyx (+19/-0) vendor/cbindgen/tests/expectations/const_generics_arrayvec.c (+11/-0) vendor/cbindgen/tests/expectations/const_generics_arrayvec.compat.c (+19/-0) vendor/cbindgen/tests/expectations/const_generics_arrayvec.cpp (+17/-0) vendor/cbindgen/tests/expectations/const_generics_arrayvec.pyx (+13/-0) vendor/cbindgen/tests/expectations/const_generics_arrayvec_both.c (+11/-0) vendor/cbindgen/tests/expectations/const_generics_arrayvec_both.compat.c (+19/-0) vendor/cbindgen/tests/expectations/const_generics_arrayvec_tag.c (+11/-0) vendor/cbindgen/tests/expectations/const_generics_arrayvec_tag.compat.c (+19/-0) vendor/cbindgen/tests/expectations/const_generics_arrayvec_tag.pyx (+13/-0) vendor/cbindgen/tests/expectations/const_generics_bool.c (+36/-0) vendor/cbindgen/tests/expectations/const_generics_bool.compat.c (+44/-0) vendor/cbindgen/tests/expectations/const_generics_bool.cpp (+37/-0) vendor/cbindgen/tests/expectations/const_generics_bool.pyx (+37/-0) vendor/cbindgen/tests/expectations/const_generics_bool_both.c (+36/-0) vendor/cbindgen/tests/expectations/const_generics_bool_both.compat.c (+44/-0) vendor/cbindgen/tests/expectations/const_generics_bool_tag.c (+36/-0) vendor/cbindgen/tests/expectations/const_generics_bool_tag.compat.c (+44/-0) vendor/cbindgen/tests/expectations/const_generics_bool_tag.pyx (+37/-0) vendor/cbindgen/tests/expectations/const_generics_both.c (+17/-0) vendor/cbindgen/tests/expectations/const_generics_both.compat.c (+25/-0) vendor/cbindgen/tests/expectations/const_generics_byte.c (+20/-0) vendor/cbindgen/tests/expectations/const_generics_byte.compat.c (+28/-0) vendor/cbindgen/tests/expectations/const_generics_byte.cpp (+21/-0) vendor/cbindgen/tests/expectations/const_generics_byte.pyx (+21/-0) vendor/cbindgen/tests/expectations/const_generics_byte_both.c (+20/-0) vendor/cbindgen/tests/expectations/const_generics_byte_both.compat.c (+28/-0) vendor/cbindgen/tests/expectations/const_generics_byte_tag.c (+20/-0) vendor/cbindgen/tests/expectations/const_generics_byte_tag.compat.c (+28/-0) vendor/cbindgen/tests/expectations/const_generics_byte_tag.pyx (+21/-0) vendor/cbindgen/tests/expectations/const_generics_char.c (+12/-0) vendor/cbindgen/tests/expectations/const_generics_char.compat.c (+20/-0) vendor/cbindgen/tests/expectations/const_generics_char.cpp (+18/-0) vendor/cbindgen/tests/expectations/const_generics_char.pyx (+14/-0) vendor/cbindgen/tests/expectations/const_generics_char_both.c (+12/-0) vendor/cbindgen/tests/expectations/const_generics_char_both.compat.c (+20/-0) vendor/cbindgen/tests/expectations/const_generics_char_tag.c (+12/-0) vendor/cbindgen/tests/expectations/const_generics_char_tag.compat.c (+20/-0) vendor/cbindgen/tests/expectations/const_generics_char_tag.pyx (+14/-0) vendor/cbindgen/tests/expectations/const_generics_constant.c (+19/-0) vendor/cbindgen/tests/expectations/const_generics_constant.compat.c (+27/-0) vendor/cbindgen/tests/expectations/const_generics_constant.cpp (+25/-0) vendor/cbindgen/tests/expectations/const_generics_constant.pyx (+20/-0) vendor/cbindgen/tests/expectations/const_generics_constant_both.c (+19/-0) vendor/cbindgen/tests/expectations/const_generics_constant_both.compat.c (+27/-0) vendor/cbindgen/tests/expectations/const_generics_constant_tag.c (+19/-0) vendor/cbindgen/tests/expectations/const_generics_constant_tag.compat.c (+27/-0) vendor/cbindgen/tests/expectations/const_generics_constant_tag.pyx (+20/-0) vendor/cbindgen/tests/expectations/const_generics_tag.c (+17/-0) vendor/cbindgen/tests/expectations/const_generics_tag.compat.c (+25/-0) vendor/cbindgen/tests/expectations/const_generics_tag.pyx (+19/-0) vendor/cbindgen/tests/expectations/const_generics_thru.c (+24/-0) vendor/cbindgen/tests/expectations/const_generics_thru.compat.c (+32/-0) vendor/cbindgen/tests/expectations/const_generics_thru.cpp (+23/-0) vendor/cbindgen/tests/expectations/const_generics_thru.pyx (+23/-0) vendor/cbindgen/tests/expectations/const_generics_thru_both.c (+24/-0) vendor/cbindgen/tests/expectations/const_generics_thru_both.compat.c (+32/-0) vendor/cbindgen/tests/expectations/const_generics_thru_tag.c (+24/-0) vendor/cbindgen/tests/expectations/const_generics_thru_tag.compat.c (+32/-0) vendor/cbindgen/tests/expectations/const_generics_thru_tag.pyx (+23/-0) vendor/cbindgen/tests/expectations/const_transparent.compat.c (+19/-0) vendor/cbindgen/tests/expectations/const_transparent.cpp (+26/-0) vendor/cbindgen/tests/expectations/const_transparent.pyx (+22/-0) vendor/cbindgen/tests/expectations/constant.c (+53/-0) vendor/cbindgen/tests/expectations/constant.compat.c (+61/-0) vendor/cbindgen/tests/expectations/constant.cpp (+54/-0) vendor/cbindgen/tests/expectations/constant.pyx (+51/-0) vendor/cbindgen/tests/expectations/constant_big.compat.c (+12/-0) vendor/cbindgen/tests/expectations/constant_big.cpp (+13/-0) vendor/cbindgen/tests/expectations/constant_big.pyx (+15/-0) vendor/cbindgen/tests/expectations/constant_both.c (+53/-0) vendor/cbindgen/tests/expectations/constant_both.compat.c (+61/-0) vendor/cbindgen/tests/expectations/constant_constexpr.compat.c (+19/-0) vendor/cbindgen/tests/expectations/constant_constexpr.cpp (+21/-0) vendor/cbindgen/tests/expectations/constant_constexpr.pyx (+21/-0) vendor/cbindgen/tests/expectations/constant_constexpr_both.compat.c (+19/-0) vendor/cbindgen/tests/expectations/constant_constexpr_tag.compat.c (+19/-0) vendor/cbindgen/tests/expectations/constant_constexpr_tag.pyx (+21/-0) vendor/cbindgen/tests/expectations/constant_sort_name.c (+12/-0) vendor/cbindgen/tests/expectations/constant_sort_name.compat.c (+20/-0) vendor/cbindgen/tests/expectations/constant_sort_name.cpp (+17/-0) vendor/cbindgen/tests/expectations/constant_sort_name.pyx (+15/-0) vendor/cbindgen/tests/expectations/constant_sort_none.c (+12/-0) vendor/cbindgen/tests/expectations/constant_sort_none.compat.c (+20/-0) vendor/cbindgen/tests/expectations/constant_sort_none.cpp (+17/-0) vendor/cbindgen/tests/expectations/constant_sort_none.pyx (+15/-0) vendor/cbindgen/tests/expectations/constant_tag.c (+53/-0) vendor/cbindgen/tests/expectations/constant_tag.compat.c (+61/-0) vendor/cbindgen/tests/expectations/constant_tag.pyx (+51/-0) vendor/cbindgen/tests/expectations/constant_user_defined_type.compat.c (+20/-0) vendor/cbindgen/tests/expectations/constant_user_defined_type.cpp (+21/-0) vendor/cbindgen/tests/expectations/constant_user_defined_type.pyx (+21/-0) vendor/cbindgen/tests/expectations/constant_user_defined_type_both.compat.c (+20/-0) vendor/cbindgen/tests/expectations/constant_user_defined_type_tag.compat.c (+20/-0) vendor/cbindgen/tests/expectations/constant_user_defined_type_tag.pyx (+21/-0) vendor/cbindgen/tests/expectations/custom_header.c (+10/-0) vendor/cbindgen/tests/expectations/custom_header.compat.c (+18/-0) vendor/cbindgen/tests/expectations/custom_header.cpp (+14/-0) vendor/cbindgen/tests/expectations/custom_header.pyx (+12/-0) vendor/cbindgen/tests/expectations/cython_options.compat.c (+4/-0) vendor/cbindgen/tests/expectations/cython_options.cpp (+5/-0) vendor/cbindgen/tests/expectations/cython_options.pyx (+10/-0) vendor/cbindgen/tests/expectations/decl_name_conflicting.c (+16/-0) vendor/cbindgen/tests/expectations/decl_name_conflicting.compat.c (+30/-0) vendor/cbindgen/tests/expectations/decl_name_conflicting.cpp (+20/-0) vendor/cbindgen/tests/expectations/decl_name_conflicting.pyx (+17/-0) vendor/cbindgen/tests/expectations/decl_name_conflicting_both.c (+16/-0) vendor/cbindgen/tests/expectations/decl_name_conflicting_both.compat.c (+30/-0) vendor/cbindgen/tests/expectations/decl_name_conflicting_tag.c (+16/-0) vendor/cbindgen/tests/expectations/decl_name_conflicting_tag.compat.c (+30/-0) vendor/cbindgen/tests/expectations/decl_name_conflicting_tag.pyx (+17/-0) vendor/cbindgen/tests/expectations/dep_v2.c (+11/-0) vendor/cbindgen/tests/expectations/dep_v2.compat.c (+19/-0) vendor/cbindgen/tests/expectations/dep_v2.cpp (+16/-0) vendor/cbindgen/tests/expectations/dep_v2.pyx (+13/-0) vendor/cbindgen/tests/expectations/dep_v2_both.c (+11/-0) vendor/cbindgen/tests/expectations/dep_v2_both.compat.c (+19/-0) vendor/cbindgen/tests/expectations/dep_v2_tag.c (+11/-0) vendor/cbindgen/tests/expectations/dep_v2_tag.compat.c (+19/-0) vendor/cbindgen/tests/expectations/dep_v2_tag.pyx (+13/-0) vendor/cbindgen/tests/expectations/deprecated.c (+87/-0) vendor/cbindgen/tests/expectations/deprecated.compat.c (+119/-0) vendor/cbindgen/tests/expectations/deprecated.cpp (+92/-0) vendor/cbindgen/tests/expectations/deprecated.pyx (+77/-0) vendor/cbindgen/tests/expectations/deprecated_both.c (+87/-0) vendor/cbindgen/tests/expectations/deprecated_both.compat.c (+119/-0) vendor/cbindgen/tests/expectations/deprecated_tag.c (+87/-0) vendor/cbindgen/tests/expectations/deprecated_tag.compat.c (+119/-0) vendor/cbindgen/tests/expectations/deprecated_tag.pyx (+77/-0) vendor/cbindgen/tests/expectations/derive_eq.c (+43/-0) vendor/cbindgen/tests/expectations/derive_eq.compat.c (+57/-0) vendor/cbindgen/tests/expectations/derive_eq.cpp (+100/-0) vendor/cbindgen/tests/expectations/derive_eq.pyx (+40/-0) vendor/cbindgen/tests/expectations/derive_eq_both.c (+43/-0) vendor/cbindgen/tests/expectations/derive_eq_both.compat.c (+57/-0) vendor/cbindgen/tests/expectations/derive_eq_tag.c (+43/-0) vendor/cbindgen/tests/expectations/derive_eq_tag.compat.c (+57/-0) vendor/cbindgen/tests/expectations/derive_eq_tag.pyx (+40/-0) vendor/cbindgen/tests/expectations/derive_ostream.c (+89/-0) vendor/cbindgen/tests/expectations/derive_ostream.compat.c (+121/-0) vendor/cbindgen/tests/expectations/derive_ostream.cpp (+184/-0) vendor/cbindgen/tests/expectations/derive_ostream.pyx (+70/-0) vendor/cbindgen/tests/expectations/derive_ostream_both.c (+89/-0) vendor/cbindgen/tests/expectations/derive_ostream_both.compat.c (+121/-0) vendor/cbindgen/tests/expectations/derive_ostream_tag.c (+89/-0) vendor/cbindgen/tests/expectations/derive_ostream_tag.compat.c (+121/-0) vendor/cbindgen/tests/expectations/derive_ostream_tag.pyx (+70/-0) vendor/cbindgen/tests/expectations/destructor_and_copy_ctor.c (+210/-0) vendor/cbindgen/tests/expectations/destructor_and_copy_ctor.compat.c (+266/-0) vendor/cbindgen/tests/expectations/destructor_and_copy_ctor.cpp (+712/-0) vendor/cbindgen/tests/expectations/destructor_and_copy_ctor.pyx (+145/-0) vendor/cbindgen/tests/expectations/destructor_and_copy_ctor_both.c (+210/-0) vendor/cbindgen/tests/expectations/destructor_and_copy_ctor_both.compat.c (+266/-0) vendor/cbindgen/tests/expectations/destructor_and_copy_ctor_tag.c (+210/-0) vendor/cbindgen/tests/expectations/destructor_and_copy_ctor_tag.compat.c (+266/-0) vendor/cbindgen/tests/expectations/destructor_and_copy_ctor_tag.pyx (+145/-0) vendor/cbindgen/tests/expectations/display_list.c (+45/-0) vendor/cbindgen/tests/expectations/display_list.compat.c (+59/-0) vendor/cbindgen/tests/expectations/display_list.cpp (+51/-0) vendor/cbindgen/tests/expectations/display_list.pyx (+42/-0) vendor/cbindgen/tests/expectations/display_list_both.c (+45/-0) vendor/cbindgen/tests/expectations/display_list_both.compat.c (+59/-0) vendor/cbindgen/tests/expectations/display_list_tag.c (+45/-0) vendor/cbindgen/tests/expectations/display_list_tag.compat.c (+59/-0) vendor/cbindgen/tests/expectations/display_list_tag.pyx (+42/-0) vendor/cbindgen/tests/expectations/doclength_short.c (+14/-0) vendor/cbindgen/tests/expectations/doclength_short.compat.c (+22/-0) vendor/cbindgen/tests/expectations/doclength_short.cpp (+15/-0) vendor/cbindgen/tests/expectations/doclength_short.pyx (+13/-0) vendor/cbindgen/tests/expectations/docstyle_auto.c (+9/-0) vendor/cbindgen/tests/expectations/docstyle_auto.compat.c (+17/-0) vendor/cbindgen/tests/expectations/docstyle_auto.cpp (+12/-0) vendor/cbindgen/tests/expectations/docstyle_auto.pyx (+10/-0) vendor/cbindgen/tests/expectations/docstyle_c99.c (+7/-0) vendor/cbindgen/tests/expectations/docstyle_c99.compat.c (+15/-0) vendor/cbindgen/tests/expectations/docstyle_c99.cpp (+12/-0) vendor/cbindgen/tests/expectations/docstyle_c99.pyx (+10/-0) vendor/cbindgen/tests/expectations/docstyle_doxy.c (+9/-0) vendor/cbindgen/tests/expectations/docstyle_doxy.compat.c (+17/-0) vendor/cbindgen/tests/expectations/docstyle_doxy.cpp (+14/-0) vendor/cbindgen/tests/expectations/docstyle_doxy.pyx (+10/-0) vendor/cbindgen/tests/expectations/documentation.c (+31/-0) vendor/cbindgen/tests/expectations/documentation.compat.c (+39/-0) vendor/cbindgen/tests/expectations/documentation.cpp (+32/-0) vendor/cbindgen/tests/expectations/documentation.pyx (+30/-0) vendor/cbindgen/tests/expectations/documentation_attr.c (+20/-0) vendor/cbindgen/tests/expectations/documentation_attr.compat.c (+28/-0) vendor/cbindgen/tests/expectations/documentation_attr.cpp (+23/-0) vendor/cbindgen/tests/expectations/documentation_attr.pyx (+21/-0) vendor/cbindgen/tests/expectations/enum.c (+261/-0) vendor/cbindgen/tests/expectations/enum.compat.c (+335/-0) vendor/cbindgen/tests/expectations/enum.cpp (+271/-0) vendor/cbindgen/tests/expectations/enum.pyx (+215/-0) vendor/cbindgen/tests/expectations/enum_both.c (+261/-0) vendor/cbindgen/tests/expectations/enum_both.compat.c (+335/-0) vendor/cbindgen/tests/expectations/enum_discriminant.c (+19/-0) vendor/cbindgen/tests/expectations/enum_discriminant.compat.c (+33/-0) vendor/cbindgen/tests/expectations/enum_discriminant.cpp (+23/-0) vendor/cbindgen/tests/expectations/enum_discriminant.pyx (+21/-0) vendor/cbindgen/tests/expectations/enum_self.c (+29/-0) vendor/cbindgen/tests/expectations/enum_self.compat.c (+43/-0) vendor/cbindgen/tests/expectations/enum_self.cpp (+40/-0) vendor/cbindgen/tests/expectations/enum_self.pyx (+23/-0) vendor/cbindgen/tests/expectations/enum_self_both.c (+29/-0) vendor/cbindgen/tests/expectations/enum_self_both.compat.c (+43/-0) vendor/cbindgen/tests/expectations/enum_self_tag.c (+29/-0) vendor/cbindgen/tests/expectations/enum_self_tag.compat.c (+43/-0) vendor/cbindgen/tests/expectations/enum_self_tag.pyx (+23/-0) vendor/cbindgen/tests/expectations/enum_tag.c (+261/-0) vendor/cbindgen/tests/expectations/enum_tag.compat.c (+335/-0) vendor/cbindgen/tests/expectations/enum_tag.pyx (+215/-0) vendor/cbindgen/tests/expectations/euclid.c (+117/-0) vendor/cbindgen/tests/expectations/euclid.compat.c (+125/-0) vendor/cbindgen/tests/expectations/euclid.cpp (+102/-0) vendor/cbindgen/tests/expectations/euclid.pyx (+108/-0) vendor/cbindgen/tests/expectations/euclid_both.c (+117/-0) vendor/cbindgen/tests/expectations/euclid_both.compat.c (+125/-0) vendor/cbindgen/tests/expectations/euclid_tag.c (+117/-0) vendor/cbindgen/tests/expectations/euclid_tag.compat.c (+125/-0) vendor/cbindgen/tests/expectations/euclid_tag.pyx (+108/-0) vendor/cbindgen/tests/expectations/exclude_generic_monomorph.c (+28/-0) vendor/cbindgen/tests/expectations/exclude_generic_monomorph.compat.c (+36/-0) vendor/cbindgen/tests/expectations/exclude_generic_monomorph.cpp (+28/-0) vendor/cbindgen/tests/expectations/exclude_generic_monomorph.pyx (+30/-0) vendor/cbindgen/tests/expectations/exclude_generic_monomorph_both.c (+28/-0) vendor/cbindgen/tests/expectations/exclude_generic_monomorph_both.compat.c (+36/-0) vendor/cbindgen/tests/expectations/exclude_generic_monomorph_tag.c (+28/-0) vendor/cbindgen/tests/expectations/exclude_generic_monomorph_tag.compat.c (+36/-0) vendor/cbindgen/tests/expectations/exclude_generic_monomorph_tag.pyx (+30/-0) vendor/cbindgen/tests/expectations/expand.c (+10/-0) vendor/cbindgen/tests/expectations/expand.compat.c (+18/-0) vendor/cbindgen/tests/expectations/expand.cpp (+15/-0) vendor/cbindgen/tests/expectations/expand.pyx (+12/-0) vendor/cbindgen/tests/expectations/expand_both.c (+10/-0) vendor/cbindgen/tests/expectations/expand_both.compat.c (+18/-0) vendor/cbindgen/tests/expectations/expand_default_features.c (+12/-0) vendor/cbindgen/tests/expectations/expand_default_features.compat.c (+20/-0) vendor/cbindgen/tests/expectations/expand_default_features.cpp (+17/-0) vendor/cbindgen/tests/expectations/expand_default_features.pyx (+14/-0) vendor/cbindgen/tests/expectations/expand_default_features_both.c (+12/-0) vendor/cbindgen/tests/expectations/expand_default_features_both.compat.c (+20/-0) vendor/cbindgen/tests/expectations/expand_default_features_tag.c (+12/-0) vendor/cbindgen/tests/expectations/expand_default_features_tag.compat.c (+20/-0) vendor/cbindgen/tests/expectations/expand_default_features_tag.pyx (+14/-0) vendor/cbindgen/tests/expectations/expand_dep.c (+11/-0) vendor/cbindgen/tests/expectations/expand_dep.compat.c (+19/-0) vendor/cbindgen/tests/expectations/expand_dep.cpp (+16/-0) vendor/cbindgen/tests/expectations/expand_dep.pyx (+13/-0) vendor/cbindgen/tests/expectations/expand_dep_both.c (+11/-0) vendor/cbindgen/tests/expectations/expand_dep_both.compat.c (+19/-0) vendor/cbindgen/tests/expectations/expand_dep_tag.c (+11/-0) vendor/cbindgen/tests/expectations/expand_dep_tag.compat.c (+19/-0) vendor/cbindgen/tests/expectations/expand_dep_tag.pyx (+13/-0) vendor/cbindgen/tests/expectations/expand_dep_v2.c (+11/-0) vendor/cbindgen/tests/expectations/expand_dep_v2.compat.c (+19/-0) vendor/cbindgen/tests/expectations/expand_dep_v2.cpp (+16/-0) vendor/cbindgen/tests/expectations/expand_dep_v2.pyx (+13/-0) vendor/cbindgen/tests/expectations/expand_dep_v2_both.c (+11/-0) vendor/cbindgen/tests/expectations/expand_dep_v2_both.compat.c (+19/-0) vendor/cbindgen/tests/expectations/expand_dep_v2_tag.c (+11/-0) vendor/cbindgen/tests/expectations/expand_dep_v2_tag.compat.c (+19/-0) vendor/cbindgen/tests/expectations/expand_dep_v2_tag.pyx (+13/-0) vendor/cbindgen/tests/expectations/expand_features.c (+14/-0) vendor/cbindgen/tests/expectations/expand_features.compat.c (+22/-0) vendor/cbindgen/tests/expectations/expand_features.cpp (+19/-0) vendor/cbindgen/tests/expectations/expand_features.pyx (+16/-0) vendor/cbindgen/tests/expectations/expand_features_both.c (+14/-0) vendor/cbindgen/tests/expectations/expand_features_both.compat.c (+22/-0) vendor/cbindgen/tests/expectations/expand_features_tag.c (+14/-0) vendor/cbindgen/tests/expectations/expand_features_tag.compat.c (+22/-0) vendor/cbindgen/tests/expectations/expand_features_tag.pyx (+16/-0) vendor/cbindgen/tests/expectations/expand_no_default_features.c (+10/-0) vendor/cbindgen/tests/expectations/expand_no_default_features.compat.c (+18/-0) vendor/cbindgen/tests/expectations/expand_no_default_features.cpp (+15/-0) vendor/cbindgen/tests/expectations/expand_no_default_features.pyx (+12/-0) vendor/cbindgen/tests/expectations/expand_no_default_features_both.c (+10/-0) vendor/cbindgen/tests/expectations/expand_no_default_features_both.compat.c (+18/-0) vendor/cbindgen/tests/expectations/expand_no_default_features_tag.c (+10/-0) vendor/cbindgen/tests/expectations/expand_no_default_features_tag.compat.c (+18/-0) vendor/cbindgen/tests/expectations/expand_no_default_features_tag.pyx (+12/-0) vendor/cbindgen/tests/expectations/expand_tag.c (+10/-0) vendor/cbindgen/tests/expectations/expand_tag.compat.c (+18/-0) vendor/cbindgen/tests/expectations/expand_tag.pyx (+12/-0) vendor/cbindgen/tests/expectations/export_name.c (+6/-0) vendor/cbindgen/tests/expectations/export_name.compat.c (+14/-0) vendor/cbindgen/tests/expectations/export_name.cpp (+11/-0) vendor/cbindgen/tests/expectations/export_name.pyx (+9/-0) vendor/cbindgen/tests/expectations/extern.c (+15/-0) vendor/cbindgen/tests/expectations/extern.compat.c (+23/-0) vendor/cbindgen/tests/expectations/extern.cpp (+20/-0) vendor/cbindgen/tests/expectations/extern.pyx (+17/-0) vendor/cbindgen/tests/expectations/extern_2.c (+8/-0) vendor/cbindgen/tests/expectations/extern_2.compat.c (+16/-0) vendor/cbindgen/tests/expectations/extern_2.cpp (+13/-0) vendor/cbindgen/tests/expectations/extern_2.pyx (+11/-0) vendor/cbindgen/tests/expectations/extern_both.c (+15/-0) vendor/cbindgen/tests/expectations/extern_both.compat.c (+23/-0) vendor/cbindgen/tests/expectations/extern_tag.c (+15/-0) vendor/cbindgen/tests/expectations/extern_tag.compat.c (+23/-0) vendor/cbindgen/tests/expectations/extern_tag.pyx (+17/-0) vendor/cbindgen/tests/expectations/external_workspace_child.c (+10/-0) vendor/cbindgen/tests/expectations/external_workspace_child.compat.c (+18/-0) vendor/cbindgen/tests/expectations/external_workspace_child.cpp (+15/-0) vendor/cbindgen/tests/expectations/external_workspace_child.pyx (+12/-0) vendor/cbindgen/tests/expectations/external_workspace_child_both.c (+10/-0) vendor/cbindgen/tests/expectations/external_workspace_child_both.compat.c (+18/-0) vendor/cbindgen/tests/expectations/external_workspace_child_tag.c (+10/-0) vendor/cbindgen/tests/expectations/external_workspace_child_tag.compat.c (+18/-0) vendor/cbindgen/tests/expectations/external_workspace_child_tag.pyx (+12/-0) vendor/cbindgen/tests/expectations/fns.c (+16/-0) vendor/cbindgen/tests/expectations/fns.compat.c (+24/-0) vendor/cbindgen/tests/expectations/fns.cpp (+21/-0) vendor/cbindgen/tests/expectations/fns.pyx (+18/-0) vendor/cbindgen/tests/expectations/fns_both.c (+16/-0) vendor/cbindgen/tests/expectations/fns_both.compat.c (+24/-0) vendor/cbindgen/tests/expectations/fns_tag.c (+16/-0) vendor/cbindgen/tests/expectations/fns_tag.compat.c (+24/-0) vendor/cbindgen/tests/expectations/fns_tag.pyx (+18/-0) vendor/cbindgen/tests/expectations/forward_declaration.c (+50/-0) vendor/cbindgen/tests/expectations/forward_declaration.compat.c (+58/-0) vendor/cbindgen/tests/expectations/forward_declaration.cpp (+57/-0) vendor/cbindgen/tests/expectations/forward_declaration.pyx (+45/-0) vendor/cbindgen/tests/expectations/forward_declaration_both.c (+50/-0) vendor/cbindgen/tests/expectations/forward_declaration_both.compat.c (+58/-0) vendor/cbindgen/tests/expectations/forward_declaration_tag.c (+50/-0) vendor/cbindgen/tests/expectations/forward_declaration_tag.compat.c (+58/-0) vendor/cbindgen/tests/expectations/forward_declaration_tag.pyx (+45/-0) vendor/cbindgen/tests/expectations/function_args.c (+10/-0) vendor/cbindgen/tests/expectations/function_args.compat.c (+18/-0) vendor/cbindgen/tests/expectations/function_args.cpp (+15/-0) vendor/cbindgen/tests/expectations/function_args.pyx (+13/-0) vendor/cbindgen/tests/expectations/function_noreturn.c (+20/-0) vendor/cbindgen/tests/expectations/function_noreturn.compat.c (+28/-0) vendor/cbindgen/tests/expectations/function_noreturn.cpp (+25/-0) vendor/cbindgen/tests/expectations/function_noreturn.pyx (+22/-0) vendor/cbindgen/tests/expectations/function_noreturn_both.c (+20/-0) vendor/cbindgen/tests/expectations/function_noreturn_both.compat.c (+28/-0) vendor/cbindgen/tests/expectations/function_noreturn_tag.c (+20/-0) vendor/cbindgen/tests/expectations/function_noreturn_tag.compat.c (+28/-0) vendor/cbindgen/tests/expectations/function_noreturn_tag.pyx (+22/-0) vendor/cbindgen/tests/expectations/function_ptr.c (+14/-0) vendor/cbindgen/tests/expectations/function_ptr.compat.c (+22/-0) vendor/cbindgen/tests/expectations/function_ptr.cpp (+19/-0) vendor/cbindgen/tests/expectations/function_ptr.pyx (+17/-0) vendor/cbindgen/tests/expectations/function_sort_name.c (+12/-0) vendor/cbindgen/tests/expectations/function_sort_name.compat.c (+20/-0) vendor/cbindgen/tests/expectations/function_sort_name.cpp (+17/-0) vendor/cbindgen/tests/expectations/function_sort_name.pyx (+15/-0) vendor/cbindgen/tests/expectations/function_sort_none.c (+12/-0) vendor/cbindgen/tests/expectations/function_sort_none.compat.c (+20/-0) vendor/cbindgen/tests/expectations/function_sort_none.cpp (+17/-0) vendor/cbindgen/tests/expectations/function_sort_none.pyx (+15/-0) vendor/cbindgen/tests/expectations/generic_defaults.c (+19/-0) vendor/cbindgen/tests/expectations/generic_defaults.compat.c (+27/-0) vendor/cbindgen/tests/expectations/generic_defaults.cpp (+23/-0) vendor/cbindgen/tests/expectations/generic_defaults.pyx (+21/-0) vendor/cbindgen/tests/expectations/generic_defaults_both.c (+19/-0) vendor/cbindgen/tests/expectations/generic_defaults_both.compat.c (+27/-0) vendor/cbindgen/tests/expectations/generic_defaults_tag.c (+19/-0) vendor/cbindgen/tests/expectations/generic_defaults_tag.compat.c (+27/-0) vendor/cbindgen/tests/expectations/generic_defaults_tag.pyx (+21/-0) vendor/cbindgen/tests/expectations/generic_pointer.c (+12/-0) vendor/cbindgen/tests/expectations/generic_pointer.compat.c (+20/-0) vendor/cbindgen/tests/expectations/generic_pointer.cpp (+18/-0) vendor/cbindgen/tests/expectations/generic_pointer.pyx (+14/-0) vendor/cbindgen/tests/expectations/generic_pointer_both.c (+12/-0) vendor/cbindgen/tests/expectations/generic_pointer_both.compat.c (+20/-0) vendor/cbindgen/tests/expectations/generic_pointer_tag.c (+12/-0) vendor/cbindgen/tests/expectations/generic_pointer_tag.compat.c (+20/-0) vendor/cbindgen/tests/expectations/generic_pointer_tag.pyx (+14/-0) vendor/cbindgen/tests/expectations/global_attr.compat.c (+4/-0) vendor/cbindgen/tests/expectations/global_attr.cpp (+5/-0) vendor/cbindgen/tests/expectations/global_attr.pyx (+8/-0) vendor/cbindgen/tests/expectations/global_variable.c (+8/-0) vendor/cbindgen/tests/expectations/global_variable.compat.c (+16/-0) vendor/cbindgen/tests/expectations/global_variable.cpp (+13/-0) vendor/cbindgen/tests/expectations/global_variable.pyx (+11/-0) vendor/cbindgen/tests/expectations/ignore.c (+12/-0) vendor/cbindgen/tests/expectations/ignore.compat.c (+20/-0) vendor/cbindgen/tests/expectations/ignore.cpp (+17/-0) vendor/cbindgen/tests/expectations/ignore.pyx (+15/-0) vendor/cbindgen/tests/expectations/include.compat.c (+5/-0) vendor/cbindgen/tests/expectations/include.cpp (+6/-0) vendor/cbindgen/tests/expectations/include.pyx (+8/-0) vendor/cbindgen/tests/expectations/include_guard.c (+6/-0) vendor/cbindgen/tests/expectations/include_guard.compat.c (+14/-0) vendor/cbindgen/tests/expectations/include_guard.cpp (+10/-0) vendor/cbindgen/tests/expectations/include_guard.pyx (+4/-0) vendor/cbindgen/tests/expectations/include_item.compat.c (+13/-0) vendor/cbindgen/tests/expectations/include_item.cpp (+14/-0) vendor/cbindgen/tests/expectations/include_item.pyx (+14/-0) vendor/cbindgen/tests/expectations/include_item_both.compat.c (+13/-0) vendor/cbindgen/tests/expectations/include_item_tag.compat.c (+13/-0) vendor/cbindgen/tests/expectations/include_item_tag.pyx (+14/-0) vendor/cbindgen/tests/expectations/include_specific.compat.c (+1/-0) vendor/cbindgen/tests/expectations/include_specific.cpp (+1/-0) vendor/cbindgen/tests/expectations/include_specific.pyx (+3/-0) vendor/cbindgen/tests/expectations/infinite-recursion-typedef-monomorph.compat.c (+4/-0) vendor/cbindgen/tests/expectations/infinite-recursion-typedef-monomorph.cpp (+5/-0) vendor/cbindgen/tests/expectations/infinite-recursion-typedef-monomorph.pyx (+8/-0) vendor/cbindgen/tests/expectations/infinite_recursion_typedef_monomorph.compat.c (+4/-0) vendor/cbindgen/tests/expectations/infinite_recursion_typedef_monomorph.cpp (+5/-0) vendor/cbindgen/tests/expectations/infinite_recursion_typedef_monomorph.pyx (+8/-0) vendor/cbindgen/tests/expectations/inner_mod.c (+10/-0) vendor/cbindgen/tests/expectations/inner_mod.compat.c (+18/-0) vendor/cbindgen/tests/expectations/inner_mod.cpp (+15/-0) vendor/cbindgen/tests/expectations/inner_mod.pyx (+12/-0) vendor/cbindgen/tests/expectations/inner_mod_both.c (+10/-0) vendor/cbindgen/tests/expectations/inner_mod_both.compat.c (+18/-0) vendor/cbindgen/tests/expectations/inner_mod_tag.c (+10/-0) vendor/cbindgen/tests/expectations/inner_mod_tag.compat.c (+18/-0) vendor/cbindgen/tests/expectations/inner_mod_tag.pyx (+12/-0) vendor/cbindgen/tests/expectations/item_types.c (+10/-0) vendor/cbindgen/tests/expectations/item_types.compat.c (+16/-0) vendor/cbindgen/tests/expectations/item_types.cpp (+10/-0) vendor/cbindgen/tests/expectations/item_types.pyx (+12/-0) vendor/cbindgen/tests/expectations/item_types_renamed.c (+10/-0) vendor/cbindgen/tests/expectations/item_types_renamed.compat.c (+16/-0) vendor/cbindgen/tests/expectations/item_types_renamed.cpp (+10/-0) vendor/cbindgen/tests/expectations/item_types_renamed.pyx (+12/-0) vendor/cbindgen/tests/expectations/layout.compat.c (+72/-0) vendor/cbindgen/tests/expectations/layout.cpp (+73/-0) vendor/cbindgen/tests/expectations/layout.pyx (+72/-0) vendor/cbindgen/tests/expectations/layout_aligned_opaque.compat.c (+34/-0) vendor/cbindgen/tests/expectations/layout_aligned_opaque.cpp (+35/-0) vendor/cbindgen/tests/expectations/layout_aligned_opaque.pyx (+43/-0) vendor/cbindgen/tests/expectations/layout_aligned_opaque_both.compat.c (+34/-0) vendor/cbindgen/tests/expectations/layout_aligned_opaque_tag.compat.c (+34/-0) vendor/cbindgen/tests/expectations/layout_aligned_opaque_tag.pyx (+43/-0) vendor/cbindgen/tests/expectations/layout_both.compat.c (+72/-0) vendor/cbindgen/tests/expectations/layout_packed_opaque.compat.c (+52/-0) vendor/cbindgen/tests/expectations/layout_packed_opaque.cpp (+53/-0) vendor/cbindgen/tests/expectations/layout_packed_opaque.pyx (+49/-0) vendor/cbindgen/tests/expectations/layout_packed_opaque_both.compat.c (+52/-0) vendor/cbindgen/tests/expectations/layout_packed_opaque_tag.compat.c (+52/-0) vendor/cbindgen/tests/expectations/layout_packed_opaque_tag.pyx (+49/-0) vendor/cbindgen/tests/expectations/layout_tag.compat.c (+72/-0) vendor/cbindgen/tests/expectations/layout_tag.pyx (+72/-0) vendor/cbindgen/tests/expectations/lifetime_arg.c (+24/-0) vendor/cbindgen/tests/expectations/lifetime_arg.compat.c (+32/-0) vendor/cbindgen/tests/expectations/lifetime_arg.cpp (+31/-0) vendor/cbindgen/tests/expectations/lifetime_arg.pyx (+20/-0) vendor/cbindgen/tests/expectations/lifetime_arg_both.c (+24/-0) vendor/cbindgen/tests/expectations/lifetime_arg_both.compat.c (+32/-0) vendor/cbindgen/tests/expectations/lifetime_arg_tag.c (+24/-0) vendor/cbindgen/tests/expectations/lifetime_arg_tag.compat.c (+32/-0) vendor/cbindgen/tests/expectations/lifetime_arg_tag.pyx (+20/-0) vendor/cbindgen/tests/expectations/linestyle_cr.c (+1/-0) vendor/cbindgen/tests/expectations/linestyle_cr.compat.c (+1/-0) vendor/cbindgen/tests/expectations/linestyle_cr.cpp (+1/-0) vendor/cbindgen/tests/expectations/linestyle_cr.pyx (+1/-0) vendor/cbindgen/tests/expectations/linestyle_cr_both.c (+1/-0) vendor/cbindgen/tests/expectations/linestyle_cr_both.compat.c (+1/-0) vendor/cbindgen/tests/expectations/linestyle_cr_tag.c (+1/-0) vendor/cbindgen/tests/expectations/linestyle_cr_tag.compat.c (+1/-0) vendor/cbindgen/tests/expectations/linestyle_cr_tag.pyx (+1/-0) vendor/cbindgen/tests/expectations/linestyle_crlf.c (+11/-0) vendor/cbindgen/tests/expectations/linestyle_crlf.compat.c (+19/-0) vendor/cbindgen/tests/expectations/linestyle_crlf.cpp (+16/-0) vendor/cbindgen/tests/expectations/linestyle_crlf.pyx (+13/-0) vendor/cbindgen/tests/expectations/linestyle_crlf_both.c (+11/-0) vendor/cbindgen/tests/expectations/linestyle_crlf_both.compat.c (+19/-0) vendor/cbindgen/tests/expectations/linestyle_crlf_tag.c (+11/-0) vendor/cbindgen/tests/expectations/linestyle_crlf_tag.compat.c (+19/-0) vendor/cbindgen/tests/expectations/linestyle_crlf_tag.pyx (+13/-0) vendor/cbindgen/tests/expectations/linestyle_lf.c (+11/-0) vendor/cbindgen/tests/expectations/linestyle_lf.compat.c (+19/-0) vendor/cbindgen/tests/expectations/linestyle_lf.cpp (+16/-0) vendor/cbindgen/tests/expectations/linestyle_lf.pyx (+13/-0) vendor/cbindgen/tests/expectations/linestyle_lf_both.c (+11/-0) vendor/cbindgen/tests/expectations/linestyle_lf_both.compat.c (+19/-0) vendor/cbindgen/tests/expectations/linestyle_lf_tag.c (+11/-0) vendor/cbindgen/tests/expectations/linestyle_lf_tag.compat.c (+19/-0) vendor/cbindgen/tests/expectations/linestyle_lf_tag.pyx (+13/-0) vendor/cbindgen/tests/expectations/literal_target.compat.c (+4/-0) vendor/cbindgen/tests/expectations/literal_target.cpp (+5/-0) vendor/cbindgen/tests/expectations/literal_target.pyx (+8/-0) vendor/cbindgen/tests/expectations/mangle.c (+17/-0) vendor/cbindgen/tests/expectations/mangle.compat.c (+25/-0) vendor/cbindgen/tests/expectations/mangle.cpp (+23/-0) vendor/cbindgen/tests/expectations/mangle.pyx (+18/-0) vendor/cbindgen/tests/expectations/mangle_both.c (+17/-0) vendor/cbindgen/tests/expectations/mangle_both.compat.c (+25/-0) vendor/cbindgen/tests/expectations/mangle_tag.c (+17/-0) vendor/cbindgen/tests/expectations/mangle_tag.compat.c (+25/-0) vendor/cbindgen/tests/expectations/mangle_tag.pyx (+18/-0) vendor/cbindgen/tests/expectations/manuallydrop.c (+35/-0) vendor/cbindgen/tests/expectations/manuallydrop.compat.c (+43/-0) vendor/cbindgen/tests/expectations/manuallydrop.cpp (+41/-0) vendor/cbindgen/tests/expectations/manuallydrop.pyx (+37/-0) vendor/cbindgen/tests/expectations/manuallydrop_both.c (+35/-0) vendor/cbindgen/tests/expectations/manuallydrop_both.compat.c (+43/-0) vendor/cbindgen/tests/expectations/manuallydrop_tag.c (+35/-0) vendor/cbindgen/tests/expectations/manuallydrop_tag.compat.c (+43/-0) vendor/cbindgen/tests/expectations/manuallydrop_tag.pyx (+37/-0) vendor/cbindgen/tests/expectations/maybeuninit.c (+28/-0) vendor/cbindgen/tests/expectations/maybeuninit.compat.c (+36/-0) vendor/cbindgen/tests/expectations/maybeuninit.cpp (+34/-0) vendor/cbindgen/tests/expectations/maybeuninit.pyx (+31/-0) vendor/cbindgen/tests/expectations/maybeuninit_both.c (+28/-0) vendor/cbindgen/tests/expectations/maybeuninit_both.compat.c (+36/-0) vendor/cbindgen/tests/expectations/maybeuninit_tag.c (+28/-0) vendor/cbindgen/tests/expectations/maybeuninit_tag.compat.c (+36/-0) vendor/cbindgen/tests/expectations/maybeuninit_tag.pyx (+31/-0) vendor/cbindgen/tests/expectations/mod_2015.c (+14/-0) vendor/cbindgen/tests/expectations/mod_2015.compat.c (+22/-0) vendor/cbindgen/tests/expectations/mod_2015.cpp (+19/-0) vendor/cbindgen/tests/expectations/mod_2015.pyx (+16/-0) vendor/cbindgen/tests/expectations/mod_2015_both.c (+14/-0) vendor/cbindgen/tests/expectations/mod_2015_both.compat.c (+22/-0) vendor/cbindgen/tests/expectations/mod_2015_tag.c (+14/-0) vendor/cbindgen/tests/expectations/mod_2015_tag.compat.c (+22/-0) vendor/cbindgen/tests/expectations/mod_2015_tag.pyx (+16/-0) vendor/cbindgen/tests/expectations/mod_2018.c (+20/-0) vendor/cbindgen/tests/expectations/mod_2018.compat.c (+28/-0) vendor/cbindgen/tests/expectations/mod_2018.cpp (+25/-0) vendor/cbindgen/tests/expectations/mod_2018.pyx (+21/-0) vendor/cbindgen/tests/expectations/mod_2018_both.c (+20/-0) vendor/cbindgen/tests/expectations/mod_2018_both.compat.c (+28/-0) vendor/cbindgen/tests/expectations/mod_2018_tag.c (+20/-0) vendor/cbindgen/tests/expectations/mod_2018_tag.compat.c (+28/-0) vendor/cbindgen/tests/expectations/mod_2018_tag.pyx (+21/-0) vendor/cbindgen/tests/expectations/mod_attr.c (+38/-0) vendor/cbindgen/tests/expectations/mod_attr.compat.c (+46/-0) vendor/cbindgen/tests/expectations/mod_attr.cpp (+43/-0) vendor/cbindgen/tests/expectations/mod_attr.pyx (+33/-0) vendor/cbindgen/tests/expectations/mod_attr_both.c (+38/-0) vendor/cbindgen/tests/expectations/mod_attr_both.compat.c (+46/-0) vendor/cbindgen/tests/expectations/mod_attr_tag.c (+38/-0) vendor/cbindgen/tests/expectations/mod_attr_tag.compat.c (+46/-0) vendor/cbindgen/tests/expectations/mod_attr_tag.pyx (+33/-0) vendor/cbindgen/tests/expectations/mod_path.c (+12/-0) vendor/cbindgen/tests/expectations/mod_path.compat.c (+20/-0) vendor/cbindgen/tests/expectations/mod_path.cpp (+17/-0) vendor/cbindgen/tests/expectations/mod_path.pyx (+14/-0) vendor/cbindgen/tests/expectations/mod_path_both.c (+12/-0) vendor/cbindgen/tests/expectations/mod_path_both.compat.c (+20/-0) vendor/cbindgen/tests/expectations/mod_path_tag.c (+12/-0) vendor/cbindgen/tests/expectations/mod_path_tag.compat.c (+20/-0) vendor/cbindgen/tests/expectations/mod_path_tag.pyx (+14/-0) vendor/cbindgen/tests/expectations/monomorph_1.c (+43/-0) vendor/cbindgen/tests/expectations/monomorph_1.compat.c (+51/-0) vendor/cbindgen/tests/expectations/monomorph_1.cpp (+35/-0) vendor/cbindgen/tests/expectations/monomorph_1.pyx (+44/-0) vendor/cbindgen/tests/expectations/monomorph_1_both.c (+43/-0) vendor/cbindgen/tests/expectations/monomorph_1_both.compat.c (+51/-0) vendor/cbindgen/tests/expectations/monomorph_1_tag.c (+43/-0) vendor/cbindgen/tests/expectations/monomorph_1_tag.compat.c (+51/-0) vendor/cbindgen/tests/expectations/monomorph_1_tag.pyx (+44/-0) vendor/cbindgen/tests/expectations/monomorph_2.c (+22/-0) vendor/cbindgen/tests/expectations/monomorph_2.compat.c (+30/-0) vendor/cbindgen/tests/expectations/monomorph_2.cpp (+23/-0) vendor/cbindgen/tests/expectations/monomorph_2.pyx (+25/-0) vendor/cbindgen/tests/expectations/monomorph_2_both.c (+22/-0) vendor/cbindgen/tests/expectations/monomorph_2_both.compat.c (+30/-0) vendor/cbindgen/tests/expectations/monomorph_2_tag.c (+22/-0) vendor/cbindgen/tests/expectations/monomorph_2_tag.compat.c (+30/-0) vendor/cbindgen/tests/expectations/monomorph_2_tag.pyx (+25/-0) vendor/cbindgen/tests/expectations/monomorph_3.c (+43/-0) vendor/cbindgen/tests/expectations/monomorph_3.compat.c (+51/-0) vendor/cbindgen/tests/expectations/monomorph_3.cpp (+35/-0) vendor/cbindgen/tests/expectations/monomorph_3.pyx (+44/-0) vendor/cbindgen/tests/expectations/monomorph_3_both.c (+43/-0) vendor/cbindgen/tests/expectations/monomorph_3_both.compat.c (+51/-0) vendor/cbindgen/tests/expectations/monomorph_3_tag.c (+43/-0) vendor/cbindgen/tests/expectations/monomorph_3_tag.compat.c (+51/-0) vendor/cbindgen/tests/expectations/monomorph_3_tag.pyx (+44/-0) vendor/cbindgen/tests/expectations/must_use.c (+30/-0) vendor/cbindgen/tests/expectations/must_use.compat.c (+44/-0) vendor/cbindgen/tests/expectations/must_use.cpp (+38/-0) vendor/cbindgen/tests/expectations/must_use.pyx (+26/-0) vendor/cbindgen/tests/expectations/must_use_both.c (+30/-0) vendor/cbindgen/tests/expectations/must_use_both.compat.c (+44/-0) vendor/cbindgen/tests/expectations/must_use_tag.c (+30/-0) vendor/cbindgen/tests/expectations/must_use_tag.compat.c (+44/-0) vendor/cbindgen/tests/expectations/must_use_tag.pyx (+26/-0) vendor/cbindgen/tests/expectations/namespace_constant.c (+14/-0) vendor/cbindgen/tests/expectations/namespace_constant.compat.c (+30/-0) vendor/cbindgen/tests/expectations/namespace_constant.cpp (+23/-0) vendor/cbindgen/tests/expectations/namespace_constant.pyx (+16/-0) vendor/cbindgen/tests/expectations/namespace_constant_both.c (+14/-0) vendor/cbindgen/tests/expectations/namespace_constant_both.compat.c (+30/-0) vendor/cbindgen/tests/expectations/namespace_constant_tag.c (+14/-0) vendor/cbindgen/tests/expectations/namespace_constant_tag.compat.c (+30/-0) vendor/cbindgen/tests/expectations/namespace_constant_tag.pyx (+16/-0) vendor/cbindgen/tests/expectations/namespaces_constant.c (+14/-0) vendor/cbindgen/tests/expectations/namespaces_constant.compat.c (+32/-0) vendor/cbindgen/tests/expectations/namespaces_constant.cpp (+25/-0) vendor/cbindgen/tests/expectations/namespaces_constant.pyx (+16/-0) vendor/cbindgen/tests/expectations/namespaces_constant_both.c (+14/-0) vendor/cbindgen/tests/expectations/namespaces_constant_both.compat.c (+32/-0) vendor/cbindgen/tests/expectations/namespaces_constant_tag.c (+14/-0) vendor/cbindgen/tests/expectations/namespaces_constant_tag.compat.c (+32/-0) vendor/cbindgen/tests/expectations/namespaces_constant_tag.pyx (+16/-0) vendor/cbindgen/tests/expectations/nested_import.compat.c (+4/-0) vendor/cbindgen/tests/expectations/nested_import.cpp (+5/-0) vendor/cbindgen/tests/expectations/nested_import.pyx (+8/-0) vendor/cbindgen/tests/expectations/no_includes.c (+1/-0) vendor/cbindgen/tests/expectations/no_includes.compat.c (+9/-0) vendor/cbindgen/tests/expectations/no_includes.cpp (+6/-0) vendor/cbindgen/tests/expectations/no_includes.pyx (+4/-0) vendor/cbindgen/tests/expectations/non_pub_extern.c (+12/-0) vendor/cbindgen/tests/expectations/non_pub_extern.compat.c (+20/-0) vendor/cbindgen/tests/expectations/non_pub_extern.cpp (+17/-0) vendor/cbindgen/tests/expectations/non_pub_extern.pyx (+15/-0) vendor/cbindgen/tests/expectations/nonnull.c (+20/-0) vendor/cbindgen/tests/expectations/nonnull.compat.c (+28/-0) vendor/cbindgen/tests/expectations/nonnull.cpp (+26/-0) vendor/cbindgen/tests/expectations/nonnull.pyx (+23/-0) vendor/cbindgen/tests/expectations/nonnull_attribute.c (+52/-0) vendor/cbindgen/tests/expectations/nonnull_attribute.compat.c (+60/-0) vendor/cbindgen/tests/expectations/nonnull_attribute.cpp (+58/-0) vendor/cbindgen/tests/expectations/nonnull_attribute.pyx (+52/-0) vendor/cbindgen/tests/expectations/nonnull_attribute_both.c (+52/-0) vendor/cbindgen/tests/expectations/nonnull_attribute_both.compat.c (+60/-0) vendor/cbindgen/tests/expectations/nonnull_attribute_tag.c (+52/-0) vendor/cbindgen/tests/expectations/nonnull_attribute_tag.compat.c (+60/-0) vendor/cbindgen/tests/expectations/nonnull_attribute_tag.pyx (+52/-0) vendor/cbindgen/tests/expectations/nonnull_both.c (+20/-0) vendor/cbindgen/tests/expectations/nonnull_both.compat.c (+28/-0) vendor/cbindgen/tests/expectations/nonnull_tag.c (+20/-0) vendor/cbindgen/tests/expectations/nonnull_tag.compat.c (+28/-0) vendor/cbindgen/tests/expectations/nonnull_tag.pyx (+23/-0) vendor/cbindgen/tests/expectations/nonzero.c (+69/-0) vendor/cbindgen/tests/expectations/nonzero.compat.c (+77/-0) vendor/cbindgen/tests/expectations/nonzero.cpp (+75/-0) vendor/cbindgen/tests/expectations/nonzero.pyx (+71/-0) vendor/cbindgen/tests/expectations/nonzero_both.c (+69/-0) vendor/cbindgen/tests/expectations/nonzero_both.compat.c (+77/-0) vendor/cbindgen/tests/expectations/nonzero_tag.c (+69/-0) vendor/cbindgen/tests/expectations/nonzero_tag.compat.c (+77/-0) vendor/cbindgen/tests/expectations/nonzero_tag.pyx (+71/-0) vendor/cbindgen/tests/expectations/opaque.c (+36/-0) vendor/cbindgen/tests/expectations/opaque.compat.c (+44/-0) vendor/cbindgen/tests/expectations/opaque.cpp (+42/-0) vendor/cbindgen/tests/expectations/opaque.pyx (+39/-0) vendor/cbindgen/tests/expectations/opaque_both.c (+36/-0) vendor/cbindgen/tests/expectations/opaque_both.compat.c (+44/-0) vendor/cbindgen/tests/expectations/opaque_tag.c (+36/-0) vendor/cbindgen/tests/expectations/opaque_tag.compat.c (+44/-0) vendor/cbindgen/tests/expectations/opaque_tag.pyx (+39/-0) vendor/cbindgen/tests/expectations/package_version.c (+12/-0) vendor/cbindgen/tests/expectations/package_version.compat.c (+20/-0) vendor/cbindgen/tests/expectations/package_version.cpp (+17/-0) vendor/cbindgen/tests/expectations/package_version.pyx (+14/-0) vendor/cbindgen/tests/expectations/package_version_both.c (+12/-0) vendor/cbindgen/tests/expectations/package_version_both.compat.c (+20/-0) vendor/cbindgen/tests/expectations/package_version_tag.c (+12/-0) vendor/cbindgen/tests/expectations/package_version_tag.compat.c (+20/-0) vendor/cbindgen/tests/expectations/package_version_tag.pyx (+14/-0) vendor/cbindgen/tests/expectations/pin.c (+27/-0) vendor/cbindgen/tests/expectations/pin.compat.c (+35/-0) vendor/cbindgen/tests/expectations/pin.cpp (+32/-0) vendor/cbindgen/tests/expectations/pin.pyx (+29/-0) vendor/cbindgen/tests/expectations/pin_both.c (+27/-0) vendor/cbindgen/tests/expectations/pin_both.compat.c (+35/-0) vendor/cbindgen/tests/expectations/pin_tag.c (+27/-0) vendor/cbindgen/tests/expectations/pin_tag.compat.c (+35/-0) vendor/cbindgen/tests/expectations/pin_tag.pyx (+29/-0) vendor/cbindgen/tests/expectations/pragma_once.c (+8/-0) vendor/cbindgen/tests/expectations/pragma_once.compat.c (+16/-0) vendor/cbindgen/tests/expectations/pragma_once.cpp (+13/-0) vendor/cbindgen/tests/expectations/pragma_once.pyx (+9/-0) vendor/cbindgen/tests/expectations/prefix.c (+31/-0) vendor/cbindgen/tests/expectations/prefix.compat.c (+45/-0) vendor/cbindgen/tests/expectations/prefix.cpp (+39/-0) vendor/cbindgen/tests/expectations/prefix.pyx (+29/-0) vendor/cbindgen/tests/expectations/prefix_both.c (+31/-0) vendor/cbindgen/tests/expectations/prefix_both.compat.c (+45/-0) vendor/cbindgen/tests/expectations/prefix_tag.c (+31/-0) vendor/cbindgen/tests/expectations/prefix_tag.compat.c (+45/-0) vendor/cbindgen/tests/expectations/prefix_tag.pyx (+29/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal.c (+14/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal.compat.c (+22/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal.cpp (+19/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal.pyx (+16/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal_both.c (+14/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal_both.compat.c (+22/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal_deep.c (+18/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal_deep.compat.c (+26/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal_deep.cpp (+23/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal_deep.pyx (+19/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal_deep_both.c (+18/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal_deep_both.compat.c (+26/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal_deep_tag.c (+18/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal_deep_tag.compat.c (+26/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal_deep_tag.pyx (+19/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal_tag.c (+14/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal_tag.compat.c (+22/-0) vendor/cbindgen/tests/expectations/prefixed_struct_literal_tag.pyx (+16/-0) vendor/cbindgen/tests/expectations/ptrs_as_arrays.c (+14/-0) vendor/cbindgen/tests/expectations/ptrs_as_arrays.compat.c (+22/-0) vendor/cbindgen/tests/expectations/ptrs_as_arrays.cpp (+19/-0) vendor/cbindgen/tests/expectations/ptrs_as_arrays.pyx (+17/-0) vendor/cbindgen/tests/expectations/raw_ident.c (+18/-0) vendor/cbindgen/tests/expectations/raw_ident.compat.c (+32/-0) vendor/cbindgen/tests/expectations/raw_ident.cpp (+22/-0) vendor/cbindgen/tests/expectations/raw_ident.pyx (+19/-0) vendor/cbindgen/tests/expectations/raw_ident_both.c (+18/-0) vendor/cbindgen/tests/expectations/raw_ident_both.compat.c (+32/-0) vendor/cbindgen/tests/expectations/raw_ident_tag.c (+18/-0) vendor/cbindgen/tests/expectations/raw_ident_tag.compat.c (+32/-0) vendor/cbindgen/tests/expectations/raw_ident_tag.pyx (+19/-0) vendor/cbindgen/tests/expectations/raw_lines.c (+12/-0) vendor/cbindgen/tests/expectations/raw_lines.compat.c (+20/-0) vendor/cbindgen/tests/expectations/raw_lines.cpp (+17/-0) vendor/cbindgen/tests/expectations/raw_lines.pyx (+10/-0) vendor/cbindgen/tests/expectations/rename.c (+34/-0) vendor/cbindgen/tests/expectations/rename.compat.c (+48/-0) vendor/cbindgen/tests/expectations/rename.cpp (+38/-0) vendor/cbindgen/tests/expectations/rename.pyx (+36/-0) vendor/cbindgen/tests/expectations/rename_both.c (+34/-0) vendor/cbindgen/tests/expectations/rename_both.compat.c (+48/-0) vendor/cbindgen/tests/expectations/rename_case.c (+14/-0) vendor/cbindgen/tests/expectations/rename_case.compat.c (+22/-0) vendor/cbindgen/tests/expectations/rename_case.cpp (+19/-0) vendor/cbindgen/tests/expectations/rename_case.pyx (+17/-0) vendor/cbindgen/tests/expectations/rename_crate.c (+41/-0) vendor/cbindgen/tests/expectations/rename_crate.compat.c (+49/-0) vendor/cbindgen/tests/expectations/rename_crate.cpp (+46/-0) vendor/cbindgen/tests/expectations/rename_crate.pyx (+36/-0) vendor/cbindgen/tests/expectations/rename_crate_both.c (+41/-0) vendor/cbindgen/tests/expectations/rename_crate_both.compat.c (+49/-0) vendor/cbindgen/tests/expectations/rename_crate_tag.c (+41/-0) vendor/cbindgen/tests/expectations/rename_crate_tag.compat.c (+49/-0) vendor/cbindgen/tests/expectations/rename_crate_tag.pyx (+36/-0) vendor/cbindgen/tests/expectations/rename_tag.c (+34/-0) vendor/cbindgen/tests/expectations/rename_tag.compat.c (+48/-0) vendor/cbindgen/tests/expectations/rename_tag.pyx (+36/-0) vendor/cbindgen/tests/expectations/renaming_overrides_prefixing.c (+13/-0) vendor/cbindgen/tests/expectations/renaming_overrides_prefixing.compat.c (+21/-0) vendor/cbindgen/tests/expectations/renaming_overrides_prefixing.cpp (+18/-0) vendor/cbindgen/tests/expectations/renaming_overrides_prefixing.pyx (+16/-0) vendor/cbindgen/tests/expectations/renaming_overrides_prefixing_both.c (+13/-0) vendor/cbindgen/tests/expectations/renaming_overrides_prefixing_both.compat.c (+21/-0) vendor/cbindgen/tests/expectations/renaming_overrides_prefixing_tag.c (+13/-0) vendor/cbindgen/tests/expectations/renaming_overrides_prefixing_tag.compat.c (+21/-0) vendor/cbindgen/tests/expectations/renaming_overrides_prefixing_tag.pyx (+16/-0) vendor/cbindgen/tests/expectations/reserved.c (+69/-0) vendor/cbindgen/tests/expectations/reserved.compat.c (+95/-0) vendor/cbindgen/tests/expectations/reserved.cpp (+79/-0) vendor/cbindgen/tests/expectations/reserved.pyx (+49/-0) vendor/cbindgen/tests/expectations/reserved_both.c (+75/-0) vendor/cbindgen/tests/expectations/reserved_both.compat.c (+101/-0) vendor/cbindgen/tests/expectations/reserved_tag.c (+75/-0) vendor/cbindgen/tests/expectations/reserved_tag.compat.c (+101/-0) vendor/cbindgen/tests/expectations/reserved_tag.pyx (+49/-0) vendor/cbindgen/tests/expectations/sentinel.c (+55/-0) vendor/cbindgen/tests/expectations/sentinel.compat.c (+81/-0) vendor/cbindgen/tests/expectations/sentinel.cpp (+53/-0) vendor/cbindgen/tests/expectations/sentinel.pyx (+46/-0) vendor/cbindgen/tests/expectations/sentinel_both.c (+55/-0) vendor/cbindgen/tests/expectations/sentinel_both.compat.c (+81/-0) vendor/cbindgen/tests/expectations/sentinel_tag.c (+55/-0) vendor/cbindgen/tests/expectations/sentinel_tag.compat.c (+81/-0) vendor/cbindgen/tests/expectations/sentinel_tag.pyx (+46/-0) vendor/cbindgen/tests/expectations/simplify_option_ptr.c (+24/-0) vendor/cbindgen/tests/expectations/simplify_option_ptr.compat.c (+32/-0) vendor/cbindgen/tests/expectations/simplify_option_ptr.cpp (+30/-0) vendor/cbindgen/tests/expectations/simplify_option_ptr.pyx (+32/-0) vendor/cbindgen/tests/expectations/simplify_option_ptr_both.c (+29/-0) vendor/cbindgen/tests/expectations/simplify_option_ptr_both.compat.c (+37/-0) vendor/cbindgen/tests/expectations/simplify_option_ptr_tag.c (+29/-0) vendor/cbindgen/tests/expectations/simplify_option_ptr_tag.compat.c (+37/-0) vendor/cbindgen/tests/expectations/simplify_option_ptr_tag.pyx (+32/-0) vendor/cbindgen/tests/expectations/size_types.c (+21/-0) vendor/cbindgen/tests/expectations/size_types.compat.c (+41/-0) vendor/cbindgen/tests/expectations/size_types.cpp (+24/-0) vendor/cbindgen/tests/expectations/size_types.pyx (+21/-0) vendor/cbindgen/tests/expectations/static.c (+18/-0) vendor/cbindgen/tests/expectations/static.compat.c (+26/-0) vendor/cbindgen/tests/expectations/static.cpp (+23/-0) vendor/cbindgen/tests/expectations/static.pyx (+21/-0) vendor/cbindgen/tests/expectations/static_both.c (+18/-0) vendor/cbindgen/tests/expectations/static_both.compat.c (+26/-0) vendor/cbindgen/tests/expectations/static_tag.c (+18/-0) vendor/cbindgen/tests/expectations/static_tag.compat.c (+26/-0) vendor/cbindgen/tests/expectations/static_tag.pyx (+21/-0) vendor/cbindgen/tests/expectations/std_lib.c (+12/-0) vendor/cbindgen/tests/expectations/std_lib.compat.c (+20/-0) vendor/cbindgen/tests/expectations/std_lib.cpp (+22/-0) vendor/cbindgen/tests/expectations/std_lib.pyx (+18/-0) vendor/cbindgen/tests/expectations/std_lib_both.c (+14/-0) vendor/cbindgen/tests/expectations/std_lib_both.compat.c (+22/-0) vendor/cbindgen/tests/expectations/std_lib_tag.c (+14/-0) vendor/cbindgen/tests/expectations/std_lib_tag.compat.c (+22/-0) vendor/cbindgen/tests/expectations/std_lib_tag.pyx (+18/-0) vendor/cbindgen/tests/expectations/struct.c (+28/-0) vendor/cbindgen/tests/expectations/struct.compat.c (+36/-0) vendor/cbindgen/tests/expectations/struct.cpp (+33/-0) vendor/cbindgen/tests/expectations/struct.pyx (+28/-0) vendor/cbindgen/tests/expectations/struct_both.c (+32/-0) vendor/cbindgen/tests/expectations/struct_both.compat.c (+40/-0) vendor/cbindgen/tests/expectations/struct_literal.c (+21/-0) vendor/cbindgen/tests/expectations/struct_literal.compat.c (+29/-0) vendor/cbindgen/tests/expectations/struct_literal.cpp (+26/-0) vendor/cbindgen/tests/expectations/struct_literal.pyx (+24/-0) vendor/cbindgen/tests/expectations/struct_literal_both.c (+21/-0) vendor/cbindgen/tests/expectations/struct_literal_both.compat.c (+29/-0) vendor/cbindgen/tests/expectations/struct_literal_order.c (+24/-0) vendor/cbindgen/tests/expectations/struct_literal_order.compat.c (+32/-0) vendor/cbindgen/tests/expectations/struct_literal_order.cpp (+29/-0) vendor/cbindgen/tests/expectations/struct_literal_order.pyx (+25/-0) vendor/cbindgen/tests/expectations/struct_literal_order_both.c (+24/-0) vendor/cbindgen/tests/expectations/struct_literal_order_both.compat.c (+32/-0) vendor/cbindgen/tests/expectations/struct_literal_order_tag.c (+24/-0) vendor/cbindgen/tests/expectations/struct_literal_order_tag.compat.c (+32/-0) vendor/cbindgen/tests/expectations/struct_literal_order_tag.pyx (+25/-0) vendor/cbindgen/tests/expectations/struct_literal_tag.c (+21/-0) vendor/cbindgen/tests/expectations/struct_literal_tag.compat.c (+29/-0) vendor/cbindgen/tests/expectations/struct_literal_tag.pyx (+24/-0) vendor/cbindgen/tests/expectations/struct_self.c (+15/-0) vendor/cbindgen/tests/expectations/struct_self.compat.c (+23/-0) vendor/cbindgen/tests/expectations/struct_self.cpp (+21/-0) vendor/cbindgen/tests/expectations/struct_self.pyx (+16/-0) vendor/cbindgen/tests/expectations/struct_self_both.c (+15/-0) vendor/cbindgen/tests/expectations/struct_self_both.compat.c (+23/-0) vendor/cbindgen/tests/expectations/struct_self_tag.c (+15/-0) vendor/cbindgen/tests/expectations/struct_self_tag.compat.c (+23/-0) vendor/cbindgen/tests/expectations/struct_self_tag.pyx (+16/-0) vendor/cbindgen/tests/expectations/struct_tag.c (+32/-0) vendor/cbindgen/tests/expectations/struct_tag.compat.c (+40/-0) vendor/cbindgen/tests/expectations/struct_tag.pyx (+28/-0) vendor/cbindgen/tests/expectations/style_crash.compat.c (+4/-0) vendor/cbindgen/tests/expectations/style_crash.cpp (+5/-0) vendor/cbindgen/tests/expectations/style_crash.pyx (+8/-0) vendor/cbindgen/tests/expectations/swift_name.c (+54/-0) vendor/cbindgen/tests/expectations/swift_name.compat.c (+62/-0) vendor/cbindgen/tests/expectations/swift_name.cpp (+62/-0) vendor/cbindgen/tests/expectations/swift_name.pyx (+56/-0) vendor/cbindgen/tests/expectations/swift_name_both.c (+54/-0) vendor/cbindgen/tests/expectations/swift_name_both.compat.c (+62/-0) vendor/cbindgen/tests/expectations/swift_name_tag.c (+54/-0) vendor/cbindgen/tests/expectations/swift_name_tag.compat.c (+62/-0) vendor/cbindgen/tests/expectations/swift_name_tag.pyx (+56/-0) vendor/cbindgen/tests/expectations/transform_op.c (+144/-0) vendor/cbindgen/tests/expectations/transform_op.compat.c (+170/-0) vendor/cbindgen/tests/expectations/transform_op.cpp (+393/-0) vendor/cbindgen/tests/expectations/transform_op.pyx (+101/-0) vendor/cbindgen/tests/expectations/transform_op_both.c (+144/-0) vendor/cbindgen/tests/expectations/transform_op_both.compat.c (+170/-0) vendor/cbindgen/tests/expectations/transform_op_tag.c (+144/-0) vendor/cbindgen/tests/expectations/transform_op_tag.compat.c (+170/-0) vendor/cbindgen/tests/expectations/transform_op_tag.pyx (+101/-0) vendor/cbindgen/tests/expectations/transparent.c (+35/-0) vendor/cbindgen/tests/expectations/transparent.compat.c (+43/-0) vendor/cbindgen/tests/expectations/transparent.cpp (+42/-0) vendor/cbindgen/tests/expectations/transparent.pyx (+40/-0) vendor/cbindgen/tests/expectations/transparent_both.c (+35/-0) vendor/cbindgen/tests/expectations/transparent_both.compat.c (+43/-0) vendor/cbindgen/tests/expectations/transparent_tag.c (+35/-0) vendor/cbindgen/tests/expectations/transparent_tag.compat.c (+43/-0) vendor/cbindgen/tests/expectations/transparent_tag.pyx (+40/-0) vendor/cbindgen/tests/expectations/typedef.c (+13/-0) vendor/cbindgen/tests/expectations/typedef.compat.c (+21/-0) vendor/cbindgen/tests/expectations/typedef.cpp (+20/-0) vendor/cbindgen/tests/expectations/typedef.pyx (+15/-0) vendor/cbindgen/tests/expectations/typedef_both.c (+13/-0) vendor/cbindgen/tests/expectations/typedef_both.compat.c (+21/-0) vendor/cbindgen/tests/expectations/typedef_tag.c (+13/-0) vendor/cbindgen/tests/expectations/typedef_tag.compat.c (+21/-0) vendor/cbindgen/tests/expectations/typedef_tag.pyx (+15/-0) vendor/cbindgen/tests/expectations/union.c (+18/-0) vendor/cbindgen/tests/expectations/union.compat.c (+26/-0) vendor/cbindgen/tests/expectations/union.cpp (+23/-0) vendor/cbindgen/tests/expectations/union.pyx (+20/-0) vendor/cbindgen/tests/expectations/union_both.c (+18/-0) vendor/cbindgen/tests/expectations/union_both.compat.c (+26/-0) vendor/cbindgen/tests/expectations/union_self.c (+15/-0) vendor/cbindgen/tests/expectations/union_self.compat.c (+23/-0) vendor/cbindgen/tests/expectations/union_self.cpp (+21/-0) vendor/cbindgen/tests/expectations/union_self.pyx (+16/-0) vendor/cbindgen/tests/expectations/union_self_both.c (+15/-0) vendor/cbindgen/tests/expectations/union_self_both.compat.c (+23/-0) vendor/cbindgen/tests/expectations/union_self_tag.c (+15/-0) vendor/cbindgen/tests/expectations/union_self_tag.compat.c (+23/-0) vendor/cbindgen/tests/expectations/union_self_tag.pyx (+16/-0) vendor/cbindgen/tests/expectations/union_tag.c (+18/-0) vendor/cbindgen/tests/expectations/union_tag.compat.c (+26/-0) vendor/cbindgen/tests/expectations/union_tag.pyx (+20/-0) vendor/cbindgen/tests/expectations/using_namespaces.c (+6/-0) vendor/cbindgen/tests/expectations/using_namespaces.compat.c (+22/-0) vendor/cbindgen/tests/expectations/using_namespaces.cpp (+17/-0) vendor/cbindgen/tests/expectations/using_namespaces.pyx (+9/-0) vendor/cbindgen/tests/expectations/va_list.c (+23/-0) vendor/cbindgen/tests/expectations/va_list.compat.c (+31/-0) vendor/cbindgen/tests/expectations/va_list.cpp (+29/-0) vendor/cbindgen/tests/expectations/va_list.pyx (+25/-0) vendor/cbindgen/tests/expectations/va_list_both.c (+23/-0) vendor/cbindgen/tests/expectations/va_list_both.compat.c (+31/-0) vendor/cbindgen/tests/expectations/va_list_tag.c (+23/-0) vendor/cbindgen/tests/expectations/va_list_tag.compat.c (+31/-0) vendor/cbindgen/tests/expectations/va_list_tag.pyx (+25/-0) vendor/cbindgen/tests/expectations/workspace.c (+12/-0) vendor/cbindgen/tests/expectations/workspace.compat.c (+20/-0) vendor/cbindgen/tests/expectations/workspace.cpp (+17/-0) vendor/cbindgen/tests/expectations/workspace.pyx (+14/-0) vendor/cbindgen/tests/expectations/workspace_both.c (+12/-0) vendor/cbindgen/tests/expectations/workspace_both.compat.c (+20/-0) vendor/cbindgen/tests/expectations/workspace_tag.c (+12/-0) vendor/cbindgen/tests/expectations/workspace_tag.compat.c (+20/-0) vendor/cbindgen/tests/expectations/workspace_tag.pyx (+14/-0) vendor/cbindgen/tests/expectations/zst.c (+11/-0) vendor/cbindgen/tests/expectations/zst.compat.c (+19/-0) vendor/cbindgen/tests/expectations/zst.cpp (+16/-0) vendor/cbindgen/tests/expectations/zst.pyx (+13/-0) vendor/cbindgen/tests/expectations/zst_both.c (+11/-0) vendor/cbindgen/tests/expectations/zst_both.compat.c (+19/-0) vendor/cbindgen/tests/expectations/zst_tag.c (+11/-0) vendor/cbindgen/tests/expectations/zst_tag.compat.c (+19/-0) vendor/cbindgen/tests/expectations/zst_tag.pyx (+13/-0) vendor/cbindgen/tests/rust/abi_string.rs (+5/-0) vendor/cbindgen/tests/rust/alias.rs (+32/-0) vendor/cbindgen/tests/rust/annotation.rs (+43/-0) vendor/cbindgen/tests/rust/array.rs (+7/-0) vendor/cbindgen/tests/rust/array.toml (+2/-0) vendor/cbindgen/tests/rust/asserted_cast.rs (+44/-0) vendor/cbindgen/tests/rust/asserted_cast.toml (+10/-0) vendor/cbindgen/tests/rust/assoc_const_conflict.rs (+9/-0) vendor/cbindgen/tests/rust/assoc_constant.rs (+14/-0) vendor/cbindgen/tests/rust/associated_constant_panic.rs (+7/-0) vendor/cbindgen/tests/rust/associated_in_body.rs (+54/-0) vendor/cbindgen/tests/rust/associated_in_body.toml (+11/-0) vendor/cbindgen/tests/rust/bitflags.rs (+61/-0) vendor/cbindgen/tests/rust/bitflags.toml (+5/-0) vendor/cbindgen/tests/rust/body.rs (+55/-0) vendor/cbindgen/tests/rust/body.toml (+41/-0) vendor/cbindgen/tests/rust/box.rs (+19/-0) vendor/cbindgen/tests/rust/box.toml (+18/-0) vendor/cbindgen/tests/rust/cdecl.rs (+41/-0) vendor/cbindgen/tests/rust/cell.rs (+11/-0) vendor/cbindgen/tests/rust/cfg.rs (+85/-0) vendor/cbindgen/tests/rust/cfg.toml (+25/-0) vendor/cbindgen/tests/rust/cfg_2.rs (+32/-0) vendor/cbindgen/tests/rust/cfg_2.toml (+11/-0) vendor/cbindgen/tests/rust/cfg_field.rs (+11/-0) vendor/cbindgen/tests/rust/char.rs (+7/-0) vendor/cbindgen/tests/rust/const_conflict.rs (+9/-0) vendor/cbindgen/tests/rust/const_generics.rs (+15/-0) vendor/cbindgen/tests/rust/const_generics_arrayvec.rs (+17/-0) vendor/cbindgen/tests/rust/const_generics_bool.rs (+57/-0) vendor/cbindgen/tests/rust/const_generics_byte.rs (+29/-0) vendor/cbindgen/tests/rust/const_generics_char.rs (+20/-0) vendor/cbindgen/tests/rust/const_generics_constant.rs (+18/-0) vendor/cbindgen/tests/rust/const_generics_thru.rs (+22/-0) vendor/cbindgen/tests/rust/const_transparent.rs (+32/-0) vendor/cbindgen/tests/rust/constant.rs (+38/-0) vendor/cbindgen/tests/rust/constant_big.rs (+8/-0) vendor/cbindgen/tests/rust/constant_constexpr.rs (+14/-0) vendor/cbindgen/tests/rust/constant_constexpr.toml (+5/-0) vendor/cbindgen/tests/rust/constant_sort_name.rs (+7/-0) vendor/cbindgen/tests/rust/constant_sort_name.toml (+2/-0) vendor/cbindgen/tests/rust/constant_sort_none.rs (+7/-0) vendor/cbindgen/tests/rust/constant_user_defined_type.rs (+17/-0) vendor/cbindgen/tests/rust/custom_header.rs (+3/-0) vendor/cbindgen/tests/rust/custom_header.toml (+11/-0) vendor/cbindgen/tests/rust/cython_options.rs (+0/-0) vendor/cbindgen/tests/rust/cython_options.toml (+6/-0) vendor/cbindgen/tests/rust/decl_name_conflicting.rs (+14/-0) vendor/cbindgen/tests/rust/deprecated.rs (+74/-0) vendor/cbindgen/tests/rust/deprecated.toml (+24/-0) vendor/cbindgen/tests/rust/derive_ostream.rs (+59/-0) vendor/cbindgen/tests/rust/destructor_and_copy_ctor.rs (+97/-0) vendor/cbindgen/tests/rust/destructor_and_copy_ctor.toml (+16/-0) vendor/cbindgen/tests/rust/display_list.rs (+18/-0) vendor/cbindgen/tests/rust/doclength_short.rs (+16/-0) vendor/cbindgen/tests/rust/doclength_short.toml (+1/-0) vendor/cbindgen/tests/rust/docstyle_auto.rs (+4/-0) vendor/cbindgen/tests/rust/docstyle_auto.toml (+1/-0) vendor/cbindgen/tests/rust/docstyle_c99.rs (+4/-0) vendor/cbindgen/tests/rust/docstyle_c99.toml (+1/-0) vendor/cbindgen/tests/rust/docstyle_doxy.rs (+4/-0) vendor/cbindgen/tests/rust/docstyle_doxy.toml (+1/-0) vendor/cbindgen/tests/rust/documentation.rs (+24/-0) vendor/cbindgen/tests/rust/documentation_attr.rs (+12/-0) vendor/cbindgen/tests/rust/enum.rs (+166/-0) vendor/cbindgen/tests/rust/enum.toml (+39/-0) vendor/cbindgen/tests/rust/enum_discriminant.rs (+15/-0) vendor/cbindgen/tests/rust/enum_discriminant.toml (+2/-0) vendor/cbindgen/tests/rust/enum_self.rs (+15/-0) vendor/cbindgen/tests/rust/euclid.rs (+81/-0) vendor/cbindgen/tests/rust/exclude_generic_monomorph.rs (+10/-0) vendor/cbindgen/tests/rust/exclude_generic_monomorph.toml (+24/-0) vendor/cbindgen/tests/rust/export_name.rs (+4/-0) vendor/cbindgen/tests/rust/extern.rs (+15/-0) vendor/cbindgen/tests/rust/extern_2.rs (+11/-0) vendor/cbindgen/tests/rust/fns.rs (+16/-0) vendor/cbindgen/tests/rust/forward_declaration.rs (+21/-0) vendor/cbindgen/tests/rust/forward_declaration.toml (+23/-0) vendor/cbindgen/tests/rust/function_args.rs (+25/-0) vendor/cbindgen/tests/rust/function_noreturn.rs (+14/-0) vendor/cbindgen/tests/rust/function_noreturn.toml (+12/-0) vendor/cbindgen/tests/rust/function_ptr.rs (+6/-0) vendor/cbindgen/tests/rust/function_sort_name.rs (+15/-0) vendor/cbindgen/tests/rust/function_sort_name.toml (+2/-0) vendor/cbindgen/tests/rust/function_sort_none.rs (+15/-0) vendor/cbindgen/tests/rust/generic_defaults.rs (+16/-0) vendor/cbindgen/tests/rust/generic_pointer.rs (+11/-0) vendor/cbindgen/tests/rust/global_attr.rs (+1/-0) vendor/cbindgen/tests/rust/global_variable.rs (+5/-0) vendor/cbindgen/tests/rust/ignore.rs (+52/-0) vendor/cbindgen/tests/rust/include.rs (+0/-0) vendor/cbindgen/tests/rust/include.toml (+1/-0) vendor/cbindgen/tests/rust/include_guard.rs (+3/-0) vendor/cbindgen/tests/rust/include_guard.toml (+2/-0) vendor/cbindgen/tests/rust/include_item.rs (+10/-0) vendor/cbindgen/tests/rust/include_item.toml (+2/-0) vendor/cbindgen/tests/rust/include_specific.rs (+0/-0) vendor/cbindgen/tests/rust/include_specific.toml (+2/-0) vendor/cbindgen/tests/rust/infinite_recursion_typedef_monomorph.rs (+2/-0) vendor/cbindgen/tests/rust/inner_mod.rs (+10/-0) vendor/cbindgen/tests/rust/item_types.rs (+12/-0) vendor/cbindgen/tests/rust/item_types.toml (+3/-0) vendor/cbindgen/tests/rust/item_types_renamed.rs (+12/-0) vendor/cbindgen/tests/rust/item_types_renamed.toml (+4/-0) vendor/cbindgen/tests/rust/layout.rs (+108/-0) vendor/cbindgen/tests/rust/layout.toml (+29/-0) vendor/cbindgen/tests/rust/layout_aligned_opaque.rs (+67/-0) vendor/cbindgen/tests/rust/layout_aligned_opaque.toml (+22/-0) vendor/cbindgen/tests/rust/layout_packed_opaque.rs (+61/-0) vendor/cbindgen/tests/rust/layout_packed_opaque.toml (+22/-0) vendor/cbindgen/tests/rust/lifetime_arg.rs (+14/-0) vendor/cbindgen/tests/rust/linestyle_cr.rs (+8/-0) vendor/cbindgen/tests/rust/linestyle_cr.toml (+1/-0) vendor/cbindgen/tests/rust/linestyle_crlf.rs (+8/-0) vendor/cbindgen/tests/rust/linestyle_crlf.toml (+1/-0) vendor/cbindgen/tests/rust/linestyle_lf.rs (+8/-0) vendor/cbindgen/tests/rust/linestyle_lf.toml (+1/-0) vendor/cbindgen/tests/rust/mangle.rs (+19/-0) vendor/cbindgen/tests/rust/mangle.toml (+3/-0) vendor/cbindgen/tests/rust/manuallydrop.rs (+22/-0) vendor/cbindgen/tests/rust/manuallydrop.toml (+18/-0) vendor/cbindgen/tests/rust/maybeuninit.rs (+13/-0) vendor/cbindgen/tests/rust/maybeuninit.toml (+18/-0) vendor/cbindgen/tests/rust/monomorph_1.rs (+28/-0) vendor/cbindgen/tests/rust/monomorph_2.rs (+15/-0) vendor/cbindgen/tests/rust/monomorph_3.rs (+28/-0) vendor/cbindgen/tests/rust/must_use.rs (+18/-0) vendor/cbindgen/tests/rust/must_use.toml (+14/-0) vendor/cbindgen/tests/rust/namespace_constant.rs (+11/-0) vendor/cbindgen/tests/rust/namespace_constant.toml (+1/-0) vendor/cbindgen/tests/rust/namespaces_constant.rs (+11/-0) vendor/cbindgen/tests/rust/namespaces_constant.toml (+1/-0) vendor/cbindgen/tests/rust/nested_import.rs (+1/-0) vendor/cbindgen/tests/rust/no_includes.rs (+3/-0) vendor/cbindgen/tests/rust/no_includes.toml (+1/-0) vendor/cbindgen/tests/rust/non_pub_extern.rs (+13/-0) vendor/cbindgen/tests/rust/nonnull.rs (+19/-0) vendor/cbindgen/tests/rust/nonnull_attribute.rs (+55/-0) vendor/cbindgen/tests/rust/nonnull_attribute.toml (+10/-0) vendor/cbindgen/tests/rust/nonzero.rs (+59/-0) vendor/cbindgen/tests/rust/nonzero.toml (+13/-0) vendor/cbindgen/tests/rust/opaque.rs (+10/-0) vendor/cbindgen/tests/rust/opaque.toml (+17/-0) vendor/cbindgen/tests/rust/pin.rs (+8/-0) vendor/cbindgen/tests/rust/pin.toml (+21/-0) vendor/cbindgen/tests/rust/pragma_once.skip_warning_as_error.rs (+3/-0) vendor/cbindgen/tests/rust/pragma_once.skip_warning_as_error.toml (+1/-0) vendor/cbindgen/tests/rust/prefix.rs (+20/-0) vendor/cbindgen/tests/rust/prefix.toml (+2/-0) vendor/cbindgen/tests/rust/prefixed_struct_literal.rs (+14/-0) vendor/cbindgen/tests/rust/prefixed_struct_literal.toml (+2/-0) vendor/cbindgen/tests/rust/prefixed_struct_literal_deep.rs (+20/-0) vendor/cbindgen/tests/rust/prefixed_struct_literal_deep.toml (+2/-0) vendor/cbindgen/tests/rust/ptrs_as_arrays.rs (+19/-0) vendor/cbindgen/tests/rust/raw_ident.rs (+20/-0) vendor/cbindgen/tests/rust/raw_lines.rs (+3/-0) vendor/cbindgen/tests/rust/raw_lines.toml (+3/-0) vendor/cbindgen/tests/rust/rename.rs (+47/-0) vendor/cbindgen/tests/rust/rename.toml (+5/-0) vendor/cbindgen/tests/rust/rename_case.rs (+19/-0) vendor/cbindgen/tests/rust/renaming_overrides_prefixing.rs (+13/-0) vendor/cbindgen/tests/rust/renaming_overrides_prefixing.toml (+6/-0) vendor/cbindgen/tests/rust/reserved.rs (+37/-0) vendor/cbindgen/tests/rust/sentinel.rs (+23/-0) vendor/cbindgen/tests/rust/sentinel.toml (+3/-0) vendor/cbindgen/tests/rust/simplify_option_ptr.rs (+28/-0) vendor/cbindgen/tests/rust/size_types.rs (+15/-0) vendor/cbindgen/tests/rust/size_types.toml (+1/-0) vendor/cbindgen/tests/rust/static.rs (+17/-0) vendor/cbindgen/tests/rust/std_lib.rs (+6/-0) vendor/cbindgen/tests/rust/struct.rs (+38/-0) vendor/cbindgen/tests/rust/struct_literal.rs (+23/-0) vendor/cbindgen/tests/rust/struct_literal_order.rs (+28/-0) vendor/cbindgen/tests/rust/struct_self.rs (+14/-0) vendor/cbindgen/tests/rust/style_crash.rs (+7/-0) vendor/cbindgen/tests/rust/swift_name.rs (+133/-0) vendor/cbindgen/tests/rust/swift_name.toml (+4/-0) vendor/cbindgen/tests/rust/transform_op.rs (+43/-0) vendor/cbindgen/tests/rust/transform_op.toml (+7/-0) vendor/cbindgen/tests/rust/transparent.rs (+67/-0) vendor/cbindgen/tests/rust/typedef.rs (+11/-0) vendor/cbindgen/tests/rust/union.rs (+27/-0) vendor/cbindgen/tests/rust/union_self.rs (+14/-0) vendor/cbindgen/tests/rust/using_namespaces.rs (+3/-0) vendor/cbindgen/tests/rust/using_namespaces.toml (+2/-0) vendor/cbindgen/tests/rust/va_list.rs (+30/-0) vendor/cbindgen/tests/rust/zst.rs (+10/-0) vendor/cbindgen/tests/testing-helpers.h (+20/-0) vendor/cbindgen/tests/tests.rs (+386/-0) vendor/cc/.cargo-checksum.json (+1/-0) vendor/cc/CHANGELOG.md (+238/-0) vendor/cc/Cargo.toml (+66/-0) vendor/cc/LICENSE-APACHE (+201/-0) vendor/cc/LICENSE-MIT (+25/-0) vendor/cc/README.md (+27/-0) vendor/cc/clippy.toml (+5/-0) vendor/cc/src/command_helpers.rs (+491/-0) vendor/cc/src/detect_compiler_family.c (+15/-0) vendor/cc/src/lib.rs (+4346/-0) vendor/cc/src/parallel/async_executor.rs (+118/-0) vendor/cc/src/parallel/job_token.rs (+273/-0) vendor/cc/src/parallel/mod.rs (+4/-0) vendor/cc/src/parallel/once_lock.rs (+47/-0) vendor/cc/src/parallel/stderr.rs (+91/-0) vendor/cc/src/target_info.rs (+29/-0) vendor/cc/src/tempfile.rs (+86/-0) vendor/cc/src/tool.rs (+476/-0) vendor/cc/src/utilities.rs (+45/-0) vendor/cc/src/windows/com.rs (+110/-0) vendor/cc/src/windows/find_tools.rs (+1191/-0) vendor/cc/src/windows/mod.rs (+22/-0) vendor/cc/src/windows/registry.rs (+191/-0) vendor/cc/src/windows/setup_config.rs (+283/-0) vendor/cc/src/windows/vs_instances.rs (+199/-0) vendor/cc/src/windows/winapi.rs (+146/-0) vendor/cc/src/windows/windows_sys.rs (+121/-0) vendor/cc/src/windows/windows_targets.rs (+19/-0) vendor/cfg-if/.cargo-checksum.json (+1/-0) vendor/cfg-if/Cargo.toml (+36/-0) vendor/cfg-if/LICENSE-APACHE (+201/-0) vendor/cfg-if/LICENSE-MIT (+25/-0) vendor/cfg-if/README.md (+47/-0) vendor/cfg-if/src/lib.rs (+176/-0) vendor/cfg-if/tests/xcrate.rs (+14/-0) vendor/clap/.cargo-checksum.json (+1/-0) vendor/clap/Cargo.lock (+753/-0) vendor/clap/Cargo.toml (+616/-0) vendor/clap/LICENSE-APACHE (+202/-0) vendor/clap/LICENSE-MIT (+19/-0) vendor/clap/README.md (+43/-0) vendor/clap/examples/README.md (+16/-0) vendor/clap/examples/cargo-example-derive.md (+38/-0) vendor/clap/examples/cargo-example-derive.rs (+31/-0) vendor/clap/examples/cargo-example.md (+38/-0) vendor/clap/examples/cargo-example.rs (+29/-0) vendor/clap/examples/demo.md (+17/-0) vendor/clap/examples/demo.rs (+22/-0) vendor/clap/examples/derive_ref/augment_args.rs (+27/-0) vendor/clap/examples/derive_ref/augment_subcommands.rs (+21/-0) vendor/clap/examples/derive_ref/flatten_hand_args.rs (+91/-0) vendor/clap/examples/derive_ref/hand_subcommand.rs (+80/-0) vendor/clap/examples/derive_ref/interop_tests.md (+248/-0) vendor/clap/examples/escaped-positional-derive.md (+60/-0) vendor/clap/examples/escaped-positional-derive.rs (+25/-0) vendor/clap/examples/escaped-positional.md (+60/-0) vendor/clap/examples/escaped-positional.rs (+32/-0) vendor/clap/examples/find.md (+79/-0) vendor/clap/examples/find.rs (+126/-0) vendor/clap/examples/git-derive.md (+172/-0) vendor/clap/examples/git-derive.rs (+165/-0) vendor/clap/examples/git.md (+170/-0) vendor/clap/examples/git.rs (+138/-0) vendor/clap/examples/multicall-busybox.md (+39/-0) vendor/clap/examples/multicall-busybox.rs (+47/-0) vendor/clap/examples/multicall-hostname.md (+10/-0) vendor/clap/examples/multicall-hostname.rs (+17/-0) vendor/clap/examples/pacman.md (+79/-0) vendor/clap/examples/pacman.rs (+110/-0) vendor/clap/examples/repl-derive.rs (+67/-0) vendor/clap/examples/repl.rs (+92/-0) vendor/clap/examples/tutorial_builder/01_quick.md (+35/-0) vendor/clap/examples/tutorial_builder/01_quick.rs (+60/-0) vendor/clap/examples/tutorial_builder/02_app_settings.md (+17/-0) vendor/clap/examples/tutorial_builder/02_app_settings.rs (+18/-0) vendor/clap/examples/tutorial_builder/02_apps.md (+16/-0) vendor/clap/examples/tutorial_builder/02_apps.rs (+19/-0) vendor/clap/examples/tutorial_builder/02_crate.md (+16/-0) vendor/clap/examples/tutorial_builder/02_crate.rs (+18/-0) vendor/clap/examples/tutorial_builder/03_01_flag_bool.md (+26/-0) vendor/clap/examples/tutorial_builder/03_01_flag_bool.rs (+14/-0) vendor/clap/examples/tutorial_builder/03_01_flag_count.md (+21/-0) vendor/clap/examples/tutorial_builder/03_01_flag_count.rs (+14/-0) vendor/clap/examples/tutorial_builder/03_02_option.md (+30/-0) vendor/clap/examples/tutorial_builder/03_02_option.rs (+9/-0) vendor/clap/examples/tutorial_builder/03_02_option_mult.md (+24/-0) vendor/clap/examples/tutorial_builder/03_02_option_mult.rs (+20/-0) vendor/clap/examples/tutorial_builder/03_03_positional.md (+20/-0) vendor/clap/examples/tutorial_builder/03_03_positional.rs (+9/-0) vendor/clap/examples/tutorial_builder/03_03_positional_mult.md (+23/-0) vendor/clap/examples/tutorial_builder/03_03_positional_mult.rs (+15/-0) vendor/clap/examples/tutorial_builder/03_04_subcommands.md (+59/-0) vendor/clap/examples/tutorial_builder/03_04_subcommands.rs (+22/-0) vendor/clap/examples/tutorial_builder/03_05_default_values.md (+20/-0) vendor/clap/examples/tutorial_builder/03_05_default_values.rs (+18/-0) vendor/clap/examples/tutorial_builder/04_01_enum.md (+47/-0) vendor/clap/examples/tutorial_builder/04_01_enum.rs (+66/-0) vendor/clap/examples/tutorial_builder/04_01_possible.md (+27/-0) vendor/clap/examples/tutorial_builder/04_01_possible.rs (+26/-0) vendor/clap/examples/tutorial_builder/04_02_parse.md (+29/-0) vendor/clap/examples/tutorial_builder/04_02_parse.rs (+17/-0) vendor/clap/examples/tutorial_builder/04_02_validate.md (+29/-0) vendor/clap/examples/tutorial_builder/04_02_validate.rs (+36/-0) vendor/clap/examples/tutorial_builder/04_03_relations.md (+53/-0) vendor/clap/examples/tutorial_builder/04_03_relations.rs (+78/-0) vendor/clap/examples/tutorial_builder/04_04_custom.md (+52/-0) vendor/clap/examples/tutorial_builder/04_04_custom.rs (+84/-0) vendor/clap/examples/tutorial_builder/05_01_assert.rs (+25/-0) vendor/clap/examples/tutorial_derive/01_quick.md (+35/-0) vendor/clap/examples/tutorial_derive/01_quick.rs (+68/-0) vendor/clap/examples/tutorial_derive/02_app_settings.md (+17/-0) vendor/clap/examples/tutorial_derive/02_app_settings.rs (+18/-0) vendor/clap/examples/tutorial_derive/02_apps.md (+16/-0) vendor/clap/examples/tutorial_derive/02_apps.rs (+19/-0) vendor/clap/examples/tutorial_derive/02_crate.md (+16/-0) vendor/clap/examples/tutorial_derive/02_crate.rs (+17/-0) vendor/clap/examples/tutorial_derive/03_01_flag_bool.md (+26/-0) vendor/clap/examples/tutorial_derive/03_01_flag_bool.rs (+14/-0) vendor/clap/examples/tutorial_derive/03_01_flag_count.md (+21/-0) vendor/clap/examples/tutorial_derive/03_01_flag_count.rs (+14/-0) vendor/clap/examples/tutorial_derive/03_02_option.md (+30/-0) vendor/clap/examples/tutorial_derive/03_02_option.rs (+14/-0) vendor/clap/examples/tutorial_derive/03_02_option_mult.md (+24/-0) vendor/clap/examples/tutorial_derive/03_02_option_mult.rs (+14/-0) vendor/clap/examples/tutorial_derive/03_03_positional.md (+20/-0) vendor/clap/examples/tutorial_derive/03_03_positional.rs (+13/-0) vendor/clap/examples/tutorial_derive/03_03_positional_mult.md (+23/-0) vendor/clap/examples/tutorial_derive/03_03_positional_mult.rs (+13/-0) vendor/clap/examples/tutorial_derive/03_04_subcommands.md (+60/-0) vendor/clap/examples/tutorial_derive/03_04_subcommands.rs (+27/-0) vendor/clap/examples/tutorial_derive/03_04_subcommands_alt.rs (+32/-0) vendor/clap/examples/tutorial_derive/03_05_default_values.md (+20/-0) vendor/clap/examples/tutorial_derive/03_05_default_values.rs (+14/-0) vendor/clap/examples/tutorial_derive/04_01_enum.md (+47/-0) vendor/clap/examples/tutorial_derive/04_01_enum.rs (+32/-0) vendor/clap/examples/tutorial_derive/04_02_parse.md (+29/-0) vendor/clap/examples/tutorial_derive/04_02_parse.rs (+15/-0) vendor/clap/examples/tutorial_derive/04_02_validate.md (+29/-0) vendor/clap/examples/tutorial_derive/04_02_validate.rs (+34/-0) vendor/clap/examples/tutorial_derive/04_03_relations.md (+53/-0) vendor/clap/examples/tutorial_derive/04_03_relations.rs (+75/-0) vendor/clap/examples/tutorial_derive/04_04_custom.md (+52/-0) vendor/clap/examples/tutorial_derive/04_04_custom.rs (+91/-0) vendor/clap/examples/tutorial_derive/05_01_assert.rs (+20/-0) vendor/clap/examples/typed-derive.md (+131/-0) vendor/clap/examples/typed-derive.rs (+102/-0) vendor/clap/src/_cookbook/cargo_example.rs (+7/-0) vendor/clap/src/_cookbook/cargo_example_derive.rs (+7/-0) vendor/clap/src/_cookbook/escaped_positional.rs (+7/-0) vendor/clap/src/_cookbook/escaped_positional_derive.rs (+7/-0) vendor/clap/src/_cookbook/find.rs (+7/-0) vendor/clap/src/_cookbook/git.rs (+7/-0) vendor/clap/src/_cookbook/git_derive.rs (+7/-0) vendor/clap/src/_cookbook/mod.rs (+63/-0) vendor/clap/src/_cookbook/multicall_busybox.rs (+7/-0) vendor/clap/src/_cookbook/multicall_hostname.rs (+7/-0) vendor/clap/src/_cookbook/pacman.rs (+7/-0) vendor/clap/src/_cookbook/repl.rs (+5/-0) vendor/clap/src/_cookbook/repl_derive.rs (+4/-0) vendor/clap/src/_cookbook/typed_derive.rs (+7/-0) vendor/clap/src/_derive/_tutorial/chapter_0.rs (+25/-0) vendor/clap/src/_derive/_tutorial/chapter_1.rs (+29/-0) vendor/clap/src/_derive/_tutorial/chapter_2.rs (+103/-0) vendor/clap/src/_derive/_tutorial/chapter_3.rs (+78/-0) vendor/clap/src/_derive/_tutorial/chapter_4.rs (+15/-0) vendor/clap/src/_derive/_tutorial/chapter_5.rs (+14/-0) vendor/clap/src/_derive/_tutorial/mod.rs (+36/-0) vendor/clap/src/_derive/mod.rs (+522/-0) vendor/clap/src/_faq.rs (+95/-0) vendor/clap/src/_features.rs (+29/-0) vendor/clap/src/_tutorial/chapter_0.rs (+24/-0) vendor/clap/src/_tutorial/chapter_1.rs (+31/-0) vendor/clap/src/_tutorial/chapter_2.rs (+87/-0) vendor/clap/src/_tutorial/chapter_3.rs (+84/-0) vendor/clap/src/_tutorial/chapter_4.rs (+15/-0) vendor/clap/src/_tutorial/chapter_5.rs (+12/-0) vendor/clap/src/_tutorial/mod.rs (+36/-0) vendor/clap/src/bin/stdio-fixture.rs (+26/-0) vendor/clap/src/lib.rs (+102/-0) vendor/clap_builder/.cargo-checksum.json (+1/-0) vendor/clap_builder/Cargo.toml (+218/-0) vendor/clap_builder/LICENSE-APACHE (+201/-0) vendor/clap_builder/LICENSE-MIT (+21/-0) vendor/clap_builder/README.md (+24/-0) vendor/clap_builder/src/builder/action.rs (+418/-0) vendor/clap_builder/src/builder/app_settings.rs (+84/-0) vendor/clap_builder/src/builder/arg.rs (+4831/-0) vendor/clap_builder/src/builder/arg_group.rs (+611/-0) vendor/clap_builder/src/builder/arg_predicate.rs (+19/-0) vendor/clap_builder/src/builder/arg_settings.rs (+91/-0) vendor/clap_builder/src/builder/command.rs (+4971/-0) vendor/clap_builder/src/builder/debug_asserts.rs (+814/-0) vendor/clap_builder/src/builder/ext.rs (+46/-0) vendor/clap_builder/src/builder/mod.rs (+71/-0) vendor/clap_builder/src/builder/os_str.rs (+326/-0) vendor/clap_builder/src/builder/possible_value.rs (+229/-0) vendor/clap_builder/src/builder/range.rs (+286/-0) vendor/clap_builder/src/builder/resettable.rs (+212/-0) vendor/clap_builder/src/builder/str.rs (+310/-0) vendor/clap_builder/src/builder/styled_str.rs (+210/-0) vendor/clap_builder/src/builder/styling.rs (+177/-0) vendor/clap_builder/src/builder/tests.rs (+56/-0) vendor/clap_builder/src/builder/value_hint.rs (+93/-0) vendor/clap_builder/src/builder/value_parser.rs (+2683/-0) vendor/clap_builder/src/derive.rs (+373/-0) vendor/clap_builder/src/error/context.rs (+114/-0) vendor/clap_builder/src/error/format.rs (+501/-0) vendor/clap_builder/src/error/kind.rs (+366/-0) vendor/clap_builder/src/error/mod.rs (+934/-0) vendor/clap_builder/src/lib.rs (+49/-0) vendor/clap_builder/src/macros.rs (+574/-0) vendor/clap_builder/src/mkeymap.rs (+188/-0) vendor/clap_builder/src/output/fmt.rs (+83/-0) vendor/clap_builder/src/output/help.rs (+39/-0) vendor/clap_builder/src/output/help_template.rs (+1148/-0) vendor/clap_builder/src/output/mod.rs (+23/-0) vendor/clap_builder/src/output/textwrap/core.rs (+158/-0) vendor/clap_builder/src/output/textwrap/mod.rs (+122/-0) vendor/clap_builder/src/output/textwrap/word_separators.rs (+92/-0) vendor/clap_builder/src/output/textwrap/wrap_algorithms.rs (+63/-0) vendor/clap_builder/src/output/usage.rs (+494/-0) vendor/clap_builder/src/parser/arg_matcher.rs (+238/-0) vendor/clap_builder/src/parser/error.rs (+63/-0) vendor/clap_builder/src/parser/features/mod.rs (+1/-0) vendor/clap_builder/src/parser/features/suggestions.rs (+167/-0) vendor/clap_builder/src/parser/matches/arg_matches.rs (+2030/-0) vendor/clap_builder/src/parser/matches/matched_arg.rs (+225/-0) vendor/clap_builder/src/parser/matches/mod.rs (+13/-0) vendor/clap_builder/src/parser/matches/value_source.rs (+17/-0) vendor/clap_builder/src/parser/mod.rs (+25/-0) vendor/clap_builder/src/parser/parser.rs (+1655/-0) vendor/clap_builder/src/parser/validator.rs (+562/-0) vendor/clap_builder/src/util/any_value.rs (+127/-0) vendor/clap_builder/src/util/color.rs (+104/-0) vendor/clap_builder/src/util/flat_map.rs (+254/-0) vendor/clap_builder/src/util/flat_set.rs (+107/-0) vendor/clap_builder/src/util/graph.rs (+49/-0) vendor/clap_builder/src/util/id.rs (+164/-0) vendor/clap_builder/src/util/mod.rs (+38/-0) vendor/clap_builder/src/util/str_to_bool.rs (+21/-0) vendor/clap_derive/.cargo-checksum.json (+1/-0) vendor/clap_derive/Cargo.toml (+148/-0) vendor/clap_derive/LICENSE-APACHE (+201/-0) vendor/clap_derive/LICENSE-MIT (+21/-0) vendor/clap_derive/README.md (+24/-0) vendor/clap_derive/src/attr.rs (+215/-0) vendor/clap_derive/src/derives/args.rs (+789/-0) vendor/clap_derive/src/derives/into_app.rs (+117/-0) vendor/clap_derive/src/derives/mod.rs (+23/-0) vendor/clap_derive/src/derives/parser.rs (+119/-0) vendor/clap_derive/src/derives/subcommand.rs (+674/-0) vendor/clap_derive/src/derives/value_enum.rs (+130/-0) vendor/clap_derive/src/dummies.rs (+99/-0) vendor/clap_derive/src/item.rs (+1472/-0) vendor/clap_derive/src/lib.rs (+118/-0) vendor/clap_derive/src/macros.rs (+21/-0) vendor/clap_derive/src/utils/doc_comments.rs (+126/-0) vendor/clap_derive/src/utils/error.rs (+22/-0) vendor/clap_derive/src/utils/mod.rs (+13/-0) vendor/clap_derive/src/utils/spanned.rs (+89/-0) vendor/clap_derive/src/utils/ty.rs (+165/-0) vendor/clap_lex/.cargo-checksum.json (+1/-0) vendor/clap_lex/Cargo.toml (+159/-0) vendor/clap_lex/LICENSE-APACHE (+201/-0) vendor/clap_lex/LICENSE-MIT (+21/-0) vendor/clap_lex/README.md (+19/-0) vendor/clap_lex/src/ext.rs (+284/-0) vendor/clap_lex/src/lib.rs (+510/-0) vendor/clru/.cargo-checksum.json (+1/-0) vendor/clru/Cargo.toml (+27/-0) vendor/clru/LICENSE (+19/-0) vendor/clru/README.md (+122/-0) vendor/clru/src/config.rs (+72/-0) vendor/clru/src/lib.rs (+2159/-0) vendor/clru/src/list.rs (+629/-0) vendor/clru/src/weight.rs (+16/-0) vendor/color-print-proc-macro/.cargo-checksum.json (+1/-0) vendor/color-print-proc-macro/Cargo.toml (+38/-0) vendor/color-print-proc-macro/LICENSE-APACHE (+176/-0) vendor/color-print-proc-macro/LICENSE-MIT (+23/-0) vendor/color-print-proc-macro/README.md (+3/-0) vendor/color-print-proc-macro/src/ansi.rs (+71/-0) vendor/color-print-proc-macro/src/ansi_constants.rs (+54/-0) vendor/color-print-proc-macro/src/color_context.rs (+783/-0) vendor/color-print-proc-macro/src/error.rs (+88/-0) vendor/color-print-proc-macro/src/format_args/format_arg.rs (+39/-0) vendor/color-print-proc-macro/src/format_args/mod.rs (+198/-0) vendor/color-print-proc-macro/src/lib.rs (+146/-0) vendor/color-print-proc-macro/src/parse/color_tag.rs (+450/-0) vendor/color-print-proc-macro/src/parse/mod.rs (+7/-0) vendor/color-print-proc-macro/src/parse/types.rs (+69/-0) vendor/color-print-proc-macro/src/parse/util.rs (+142/-0) vendor/color-print-proc-macro/src/terminfo.rs (+73/-0) vendor/color-print-proc-macro/src/untagged.rs (+48/-0) vendor/color-print-proc-macro/src/util.rs (+53/-0) vendor/color-print/.cargo-checksum.json (+1/-0) vendor/color-print/Cargo.toml (+45/-0) vendor/color-print/LICENSE-APACHE (+176/-0) vendor/color-print/LICENSE-MIT (+23/-0) vendor/color-print/README.md (+251/-0) vendor/color-print/src/lib.rs (+439/-0) vendor/color-print/src/terminfo/color.rs (+82/-0) vendor/color-print/src/terminfo/mod.rs (+13/-0) vendor/color-print/src/terminfo/style.rs (+40/-0) vendor/colorchoice/.cargo-checksum.json (+1/-0) vendor/colorchoice/Cargo.toml (+159/-0) vendor/colorchoice/LICENSE-APACHE (+202/-0) vendor/colorchoice/LICENSE-MIT (+19/-0) vendor/colorchoice/README.md (+24/-0) vendor/colorchoice/src/lib.rs (+116/-0) vendor/const-oid/.cargo-checksum.json (+1/-0) vendor/const-oid/CHANGELOG.md (+197/-0) vendor/const-oid/Cargo.toml (+58/-0) vendor/const-oid/LICENSE-APACHE (+201/-0) vendor/const-oid/LICENSE-MIT (+25/-0) vendor/const-oid/README.md (+96/-0) vendor/const-oid/src/arcs.rs (+170/-0) vendor/const-oid/src/checked.rs (+11/-0) vendor/const-oid/src/db.rs (+164/-0) vendor/const-oid/src/db/gen.rs (+4248/-0) vendor/const-oid/src/encoder.rs (+165/-0) vendor/const-oid/src/error.rs (+83/-0) vendor/const-oid/src/lib.rs (+280/-0) vendor/const-oid/src/parser.rs (+112/-0) vendor/const-oid/tests/lib.rs (+209/-0) vendor/core-foundation-sys/.cargo-checksum.json (+1/-0) vendor/core-foundation-sys/Cargo.toml (+30/-0) vendor/core-foundation-sys/src/lib.rs (+0/-0) vendor/core-foundation/.cargo-checksum.json (+1/-0) vendor/core-foundation/Cargo.toml (+38/-0) vendor/core-foundation/src/lib.rs (+0/-0) vendor/cpufeatures/.cargo-checksum.json (+1/-0) vendor/cpufeatures/CHANGELOG.md (+150/-0) vendor/cpufeatures/Cargo.toml (+66/-0) vendor/cpufeatures/LICENSE-APACHE (+201/-0) vendor/cpufeatures/LICENSE-MIT (+25/-0) vendor/cpufeatures/README.md (+126/-0) vendor/cpufeatures/src/aarch64.rs (+167/-0) vendor/cpufeatures/src/lib.rs (+220/-0) vendor/cpufeatures/src/loongarch64.rs (+106/-0) vendor/cpufeatures/src/miri.rs (+20/-0) vendor/cpufeatures/src/x86.rs (+152/-0) vendor/cpufeatures/tests/aarch64.rs (+17/-0) vendor/cpufeatures/tests/loongarch64.rs (+20/-0) vendor/cpufeatures/tests/x86.rs (+17/-0) vendor/crates-io/.cargo-checksum.json (+1/-0) vendor/crates-io/Cargo.toml (+68/-0) vendor/crates-io/LICENSE-APACHE (+201/-0) vendor/crates-io/LICENSE-MIT (+23/-0) vendor/crates-io/lib.rs (+549/-0) vendor/crc32fast/.cargo-checksum.json (+1/-0) vendor/crc32fast/Cargo.toml (+51/-0) vendor/crc32fast/LICENSE-APACHE (+202/-0) vendor/crc32fast/LICENSE-MIT (+21/-0) vendor/crc32fast/README.md (+93/-0) vendor/crc32fast/benches/bench.rs (+53/-0) vendor/crc32fast/src/baseline.rs (+94/-0) vendor/crc32fast/src/combine.rs (+77/-0) vendor/crc32fast/src/lib.rs (+231/-0) vendor/crc32fast/src/specialized/aarch64.rs (+100/-0) vendor/crc32fast/src/specialized/mod.rs (+36/-0) vendor/crc32fast/src/specialized/pclmulqdq.rs (+223/-0) vendor/crc32fast/src/table.rs (+629/-0) vendor/crossbeam-channel/.cargo-checksum.json (+1/-0) vendor/crossbeam-channel/CHANGELOG.md (+245/-0) vendor/crossbeam-channel/Cargo.lock (+119/-0) vendor/crossbeam-channel/Cargo.toml (+54/-0) vendor/crossbeam-channel/LICENSE-APACHE (+201/-0) vendor/crossbeam-channel/LICENSE-MIT (+27/-0) vendor/crossbeam-channel/LICENSE-THIRD-PARTY (+593/-0) vendor/crossbeam-channel/README.md (+84/-0) vendor/crossbeam-channel/benches/crossbeam.rs (+712/-0) vendor/crossbeam-channel/examples/fibonacci.rs (+25/-0) vendor/crossbeam-channel/examples/matching.rs (+72/-0) vendor/crossbeam-channel/examples/stopwatch.rs (+56/-0) vendor/crossbeam-channel/src/channel.rs (+1525/-0) vendor/crossbeam-channel/src/context.rs (+193/-0) vendor/crossbeam-channel/src/counter.rs (+145/-0) vendor/crossbeam-channel/src/err.rs (+378/-0) vendor/crossbeam-channel/src/flavors/array.rs (+637/-0) vendor/crossbeam-channel/src/flavors/at.rs (+197/-0) vendor/crossbeam-channel/src/flavors/list.rs (+758/-0) vendor/crossbeam-channel/src/flavors/mod.rs (+17/-0) vendor/crossbeam-channel/src/flavors/never.rs (+110/-0) vendor/crossbeam-channel/src/flavors/tick.rs (+167/-0) vendor/crossbeam-channel/src/flavors/zero.rs (+496/-0) vendor/crossbeam-channel/src/lib.rs (+378/-0) vendor/crossbeam-channel/src/select.rs (+1273/-0) vendor/crossbeam-channel/src/select_macro.rs (+1142/-0) vendor/crossbeam-channel/src/utils.rs (+58/-0) vendor/crossbeam-channel/src/waker.rs (+287/-0) vendor/crossbeam-channel/tests/after.rs (+336/-0) vendor/crossbeam-channel/tests/array.rs (+744/-0) vendor/crossbeam-channel/tests/golang.rs (+2141/-0) vendor/crossbeam-channel/tests/iter.rs (+110/-0) vendor/crossbeam-channel/tests/list.rs (+582/-0) vendor/crossbeam-channel/tests/mpsc.rs (+2126/-0) vendor/crossbeam-channel/tests/never.rs (+95/-0) vendor/crossbeam-channel/tests/ready.rs (+851/-0) vendor/crossbeam-channel/tests/same_channel.rs (+112/-0) vendor/crossbeam-channel/tests/select.rs (+1326/-0) vendor/crossbeam-channel/tests/select_macro.rs (+1595/-0) vendor/crossbeam-channel/tests/thread_locals.rs (+53/-0) vendor/crossbeam-channel/tests/tick.rs (+352/-0) vendor/crossbeam-channel/tests/zero.rs (+587/-0) vendor/crossbeam-deque/.cargo-checksum.json (+1/-0) vendor/crossbeam-deque/CHANGELOG.md (+137/-0) vendor/crossbeam-deque/Cargo.toml (+50/-0) vendor/crossbeam-deque/LICENSE-APACHE (+201/-0) vendor/crossbeam-deque/LICENSE-MIT (+27/-0) vendor/crossbeam-deque/README.md (+46/-0) vendor/crossbeam-deque/src/deque.rs (+2201/-0) vendor/crossbeam-deque/src/lib.rs (+103/-0) vendor/crossbeam-deque/tests/fifo.rs (+357/-0) vendor/crossbeam-deque/tests/injector.rs (+375/-0) vendor/crossbeam-deque/tests/lifo.rs (+359/-0) vendor/crossbeam-deque/tests/steal.rs (+212/-0) vendor/crossbeam-epoch/.cargo-checksum.json (+1/-0) vendor/crossbeam-epoch/CHANGELOG.md (+204/-0) vendor/crossbeam-epoch/Cargo.lock (+457/-0) vendor/crossbeam-epoch/Cargo.toml (+57/-0) vendor/crossbeam-epoch/LICENSE-APACHE (+201/-0) vendor/crossbeam-epoch/LICENSE-MIT (+27/-0) vendor/crossbeam-epoch/README.md (+53/-0) vendor/crossbeam-epoch/benches/defer.rs (+69/-0) vendor/crossbeam-epoch/benches/flush.rs (+52/-0) vendor/crossbeam-epoch/benches/pin.rs (+31/-0) vendor/crossbeam-epoch/examples/sanitize.rs (+66/-0) vendor/crossbeam-epoch/src/atomic.rs (+1702/-0) vendor/crossbeam-epoch/src/collector.rs (+464/-0) vendor/crossbeam-epoch/src/default.rs (+93/-0) vendor/crossbeam-epoch/src/deferred.rs (+146/-0) vendor/crossbeam-epoch/src/epoch.rs (+132/-0) vendor/crossbeam-epoch/src/guard.rs (+523/-0) vendor/crossbeam-epoch/src/internal.rs (+600/-0) vendor/crossbeam-epoch/src/lib.rs (+166/-0) vendor/crossbeam-epoch/src/sync/list.rs (+487/-0) vendor/crossbeam-epoch/src/sync/mod.rs (+7/-0) vendor/crossbeam-epoch/src/sync/once_lock.rs (+88/-0) vendor/crossbeam-epoch/src/sync/queue.rs (+468/-0) vendor/crossbeam-epoch/tests/loom.rs (+157/-0) vendor/crossbeam-utils/.cargo-checksum.json (+1/-0) vendor/crossbeam-utils/CHANGELOG.md (+239/-0) vendor/crossbeam-utils/Cargo.toml (+51/-0) vendor/crossbeam-utils/LICENSE-APACHE (+201/-0) vendor/crossbeam-utils/LICENSE-MIT (+27/-0) vendor/crossbeam-utils/README.md (+73/-0) vendor/crossbeam-utils/benches/atomic_cell.rs (+156/-0) vendor/crossbeam-utils/build-common.rs (+13/-0) vendor/crossbeam-utils/build.rs (+48/-0) vendor/crossbeam-utils/no_atomic.rs (+9/-0) vendor/crossbeam-utils/src/atomic/atomic_cell.rs (+1182/-0) vendor/crossbeam-utils/src/atomic/consume.rs (+111/-0) vendor/crossbeam-utils/src/atomic/mod.rs (+32/-0) vendor/crossbeam-utils/src/atomic/seq_lock.rs (+112/-0) vendor/crossbeam-utils/src/atomic/seq_lock_wide.rs (+155/-0) vendor/crossbeam-utils/src/backoff.rs (+287/-0) vendor/crossbeam-utils/src/cache_padded.rs (+215/-0) vendor/crossbeam-utils/src/lib.rs (+110/-0) vendor/crossbeam-utils/src/sync/mod.rs (+17/-0) vendor/crossbeam-utils/src/sync/once_lock.rs (+88/-0) vendor/crossbeam-utils/src/sync/parker.rs (+415/-0) vendor/crossbeam-utils/src/sync/sharded_lock.rs (+638/-0) vendor/crossbeam-utils/src/sync/wait_group.rs (+145/-0) vendor/crossbeam-utils/src/thread.rs (+611/-0) vendor/crossbeam-utils/tests/atomic_cell.rs (+374/-0) vendor/crossbeam-utils/tests/cache_padded.rs (+113/-0) vendor/crossbeam-utils/tests/parker.rs (+41/-0) vendor/crossbeam-utils/tests/sharded_lock.rs (+252/-0) vendor/crossbeam-utils/tests/thread.rs (+215/-0) vendor/crossbeam-utils/tests/wait_group.rs (+67/-0) vendor/crypto-bigint/.cargo-checksum.json (+1/-0) vendor/crypto-bigint/CHANGELOG.md (+422/-0) vendor/crypto-bigint/Cargo.toml (+119/-0) vendor/crypto-bigint/LICENSE-APACHE (+201/-0) vendor/crypto-bigint/LICENSE-MIT (+25/-0) vendor/crypto-bigint/README.md (+79/-0) vendor/crypto-bigint/SECURITY.md (+17/-0) vendor/crypto-bigint/benches/bench.rs (+264/-0) vendor/crypto-bigint/src/array.rs (+38/-0) vendor/crypto-bigint/src/boxed.rs (+3/-0) vendor/crypto-bigint/src/boxed/uint.rs (+231/-0) vendor/crypto-bigint/src/boxed/uint/add.rs (+62/-0) vendor/crypto-bigint/src/boxed/uint/cmp.rs (+47/-0) vendor/crypto-bigint/src/checked.rs (+131/-0) vendor/crypto-bigint/src/ct_choice.rs (+104/-0) vendor/crypto-bigint/src/lib.rs (+217/-0) vendor/crypto-bigint/src/limb.rs (+176/-0) vendor/crypto-bigint/src/limb/add.rs (+180/-0) vendor/crypto-bigint/src/limb/bit_and.rs (+21/-0) vendor/crypto-bigint/src/limb/bit_not.rs (+19/-0) vendor/crypto-bigint/src/limb/bit_or.rs (+19/-0) vendor/crypto-bigint/src/limb/bit_xor.rs (+19/-0) vendor/crypto-bigint/src/limb/bits.rs (+23/-0) vendor/crypto-bigint/src/limb/cmp.rs (+200/-0) vendor/crypto-bigint/src/limb/encoding.rs (+64/-0) vendor/crypto-bigint/src/limb/from.rs (+74/-0) vendor/crypto-bigint/src/limb/mul.rs (+195/-0) vendor/crypto-bigint/src/limb/neg.rs (+20/-0) vendor/crypto-bigint/src/limb/rand.rs (+38/-0) vendor/crypto-bigint/src/limb/shl.rs (+74/-0) vendor/crypto-bigint/src/limb/shr.rs (+74/-0) vendor/crypto-bigint/src/limb/sub.rs (+182/-0) vendor/crypto-bigint/src/macros.rs (+79/-0) vendor/crypto-bigint/src/non_zero.rs (+393/-0) vendor/crypto-bigint/src/traits.rs (+341/-0) vendor/crypto-bigint/src/uint.rs (+491/-0) vendor/crypto-bigint/src/uint/add.rs (+206/-0) vendor/crypto-bigint/src/uint/add_mod.rs (+128/-0) vendor/crypto-bigint/src/uint/array.rs (+194/-0) vendor/crypto-bigint/src/uint/bit_and.rs (+146/-0) vendor/crypto-bigint/src/uint/bit_not.rs (+49/-0) vendor/crypto-bigint/src/uint/bit_or.rs (+142/-0) vendor/crypto-bigint/src/uint/bit_xor.rs (+142/-0) vendor/crypto-bigint/src/uint/bits.rs (+360/-0) vendor/crypto-bigint/src/uint/cmp.rs (+275/-0) vendor/crypto-bigint/src/uint/concat.rs (+70/-0) vendor/crypto-bigint/src/uint/div.rs (+745/-0) vendor/crypto-bigint/src/uint/div_limb.rs (+287/-0) vendor/crypto-bigint/src/uint/encoding.rs (+292/-0) vendor/crypto-bigint/src/uint/encoding/der.rs (+64/-0) vendor/crypto-bigint/src/uint/encoding/rlp.rs (+78/-0) vendor/crypto-bigint/src/uint/extra_sizes.rs (+160/-0) vendor/crypto-bigint/src/uint/from.rs (+271/-0) vendor/crypto-bigint/src/uint/inv_mod.rs (+306/-0) vendor/crypto-bigint/src/uint/macros.rs (+115/-0) vendor/crypto-bigint/src/uint/modular.rs (+164/-0) vendor/crypto-bigint/src/uint/modular/add.rs (+9/-0) vendor/crypto-bigint/src/uint/modular/constant_mod.rs (+254/-0) vendor/crypto-bigint/src/uint/modular/constant_mod/const_add.rs (+98/-0) vendor/crypto-bigint/src/uint/modular/constant_mod/const_inv.rs (+69/-0) vendor/crypto-bigint/src/uint/modular/constant_mod/const_mul.rs (+94/-0) vendor/crypto-bigint/src/uint/modular/constant_mod/const_neg.rs (+48/-0) vendor/crypto-bigint/src/uint/modular/constant_mod/const_pow.rs (+233/-0) vendor/crypto-bigint/src/uint/modular/constant_mod/const_sub.rs (+98/-0) vendor/crypto-bigint/src/uint/modular/constant_mod/macros.rs (+57/-0) vendor/crypto-bigint/src/uint/modular/div_by_2.rs (+30/-0) vendor/crypto-bigint/src/uint/modular/inv.rs (+14/-0) vendor/crypto-bigint/src/uint/modular/mul.rs (+22/-0) vendor/crypto-bigint/src/uint/modular/pow.rs (+178/-0) vendor/crypto-bigint/src/uint/modular/reduction.rs (+55/-0) vendor/crypto-bigint/src/uint/modular/runtime_mod.rs (+300/-0) vendor/crypto-bigint/src/uint/modular/runtime_mod/runtime_add.rs (+92/-0) vendor/crypto-bigint/src/uint/modular/runtime_mod/runtime_inv.rs (+35/-0) vendor/crypto-bigint/src/uint/modular/runtime_mod/runtime_mul.rs (+84/-0) vendor/crypto-bigint/src/uint/modular/runtime_mod/runtime_neg.rs (+24/-0) vendor/crypto-bigint/src/uint/modular/runtime_mod/runtime_pow.rs (+113/-0) vendor/crypto-bigint/src/uint/modular/runtime_mod/runtime_sub.rs (+92/-0) vendor/crypto-bigint/src/uint/modular/sub.rs (+9/-0) vendor/crypto-bigint/src/uint/mul.rs (+414/-0) vendor/crypto-bigint/src/uint/mul_mod.rs (+133/-0) vendor/crypto-bigint/src/uint/neg.rs (+51/-0) vendor/crypto-bigint/src/uint/neg_mod.rs (+68/-0) vendor/crypto-bigint/src/uint/rand.rs (+90/-0) vendor/crypto-bigint/src/uint/resize.rs (+37/-0) vendor/crypto-bigint/src/uint/shl.rs (+216/-0) vendor/crypto-bigint/src/uint/shr.rs (+186/-0) vendor/crypto-bigint/src/uint/split.rs (+37/-0) vendor/crypto-bigint/src/uint/sqrt.rs (+177/-0) vendor/crypto-bigint/src/uint/sub.rs (+215/-0) vendor/crypto-bigint/src/uint/sub_mod.rs (+191/-0) vendor/crypto-bigint/src/wrapping.rs (+117/-0) vendor/crypto-bigint/tests/const_residue.rs (+10/-0) vendor/crypto-bigint/tests/impl_modulus.rs (+5/-0) vendor/crypto-bigint/tests/proptests.rs (+370/-0) vendor/crypto-common/.cargo-checksum.json (+1/-0) vendor/crypto-common/CHANGELOG.md (+47/-0) vendor/crypto-common/Cargo.toml (+51/-0) vendor/crypto-common/LICENSE-APACHE (+201/-0) vendor/crypto-common/LICENSE-MIT (+25/-0) vendor/crypto-common/README.md (+53/-0) vendor/crypto-common/src/lib.rs (+311/-0) vendor/ct-codecs/.cargo-checksum.json (+1/-0) vendor/ct-codecs/Cargo.toml (+49/-0) vendor/ct-codecs/LICENSE (+21/-0) vendor/ct-codecs/README.md (+24/-0) vendor/ct-codecs/src/base64.rs (+378/-0) vendor/ct-codecs/src/error.rs (+21/-0) vendor/ct-codecs/src/hex.rs (+94/-0) vendor/ct-codecs/src/lib.rs (+63/-0) vendor/curl-sys/.cargo-checksum.json (+1/-0) vendor/curl-sys/Cargo.toml (+90/-0) vendor/curl-sys/LICENSE (+19/-0) vendor/curl-sys/build.rs (+623/-0) vendor/curl-sys/lib.rs (+1177/-0) vendor/curl/.cargo-checksum.json (+1/-0) vendor/curl/Cargo.lock (+1097/-0) vendor/curl/Cargo.toml (+157/-0) vendor/curl/LICENSE (+19/-0) vendor/curl/README.md (+184/-0) vendor/curl/build.rs (+29/-0) vendor/curl/ci/Dockerfile-alma8 (+7/-0) vendor/curl/ci/Dockerfile-linux32 (+14/-0) vendor/curl/ci/Dockerfile-linux64 (+7/-0) vendor/curl/ci/Dockerfile-linux64-curl (+6/-0) vendor/curl/ci/Dockerfile-mingw (+6/-0) vendor/curl/ci/Dockerfile-musl (+6/-0) vendor/curl/ci/run.sh (+42/-0) vendor/curl/examples/aws_sigv4.rs (+14/-0) vendor/curl/examples/doh.rs (+17/-0) vendor/curl/examples/https.rs (+23/-0) vendor/curl/examples/multi-dl.rs (+88/-0) vendor/curl/examples/ssl_cert_blob.rs (+63/-0) vendor/curl/examples/ssl_client_auth.rs (+46/-0) vendor/curl/examples/ssl_proxy.rs (+27/-0) vendor/curl/src/easy/form.rs (+375/-0) vendor/curl/src/easy/handle.rs (+1706/-0) vendor/curl/src/easy/handler.rs (+3990/-0) vendor/curl/src/easy/list.rs (+102/-0) vendor/curl/src/easy/mod.rs (+22/-0) vendor/curl/src/easy/windows.rs (+127/-0) vendor/curl/src/error.rs (+617/-0) vendor/curl/src/lib.rs (+184/-0) vendor/curl/src/multi.rs (+1331/-0) vendor/curl/src/panic.rs (+34/-0) vendor/curl/src/version.rs (+507/-0) vendor/curl/tests/atexit.rs (+17/-0) vendor/curl/tests/easy.rs (+1039/-0) vendor/curl/tests/formdata (+1/-0) vendor/curl/tests/multi.rs (+296/-0) vendor/curl/tests/post.rs (+134/-0) vendor/curl/tests/protocols.rs (+19/-0) vendor/curl/tests/server/mod.rs (+223/-0) vendor/dbus/.cargo-checksum.json (+1/-0) vendor/dbus/Cargo.lock (+200/-0) vendor/dbus/Cargo.toml (+71/-0) vendor/dbus/LICENSE-APACHE (+202/-0) vendor/dbus/LICENSE-MIT (+19/-0) vendor/dbus/README.md (+172/-0) vendor/dbus/changes-in-0.7.md (+45/-0) vendor/dbus/examples/argument_guide.md (+297/-0) vendor/dbus/examples/client.rs (+22/-0) vendor/dbus/examples/match_signal.rs (+61/-0) vendor/dbus/examples/monitor.rs (+43/-0) vendor/dbus/examples/properties.rs (+56/-0) vendor/dbus/examples/properties_msgitem.rs (+9/-0) vendor/dbus/examples/rtkit.rs (+48/-0) vendor/dbus/examples/unity_focused_window.rs (+28/-0) vendor/dbus/src/arg/array_impl.rs (+621/-0) vendor/dbus/src/arg/basic_impl.rs (+416/-0) vendor/dbus/src/arg/messageitem.rs (+1023/-0) vendor/dbus/src/arg/mod.rs (+474/-0) vendor/dbus/src/arg/msgarg.rs (+598/-0) vendor/dbus/src/arg/variantstruct_impl.rs (+214/-0) vendor/dbus/src/blocking.rs (+515/-0) vendor/dbus/src/blocking/generated_org_freedesktop_dbus.rs (+209/-0) vendor/dbus/src/blocking/generated_org_freedesktop_standard_interfaces.rs (+153/-0) vendor/dbus/src/channel.rs (+195/-0) vendor/dbus/src/channel/ffichannel.rs (+364/-0) vendor/dbus/src/channel/nativechannel.rs (+253/-0) vendor/dbus/src/error.rs (+182/-0) vendor/dbus/src/ffidisp.rs (+307/-0) vendor/dbus/src/ffidisp/connection.rs (+632/-0) vendor/dbus/src/ffidisp/stdintf.rs (+233/-0) vendor/dbus/src/ffidisp/watch.rs (+283/-0) vendor/dbus/src/filters.rs (+57/-0) vendor/dbus/src/lib.rs (+68/-0) vendor/dbus/src/message.rs (+553/-0) vendor/dbus/src/message/matchrule.rs (+177/-0) vendor/dbus/src/message/parser.rs (+261/-0) vendor/dbus/src/message/signalargs.rs (+103/-0) vendor/dbus/src/methoddisp.rs (+1058/-0) vendor/dbus/src/nonblock.rs (+604/-0) vendor/dbus/src/nonblock/generated_org_freedesktop_dbus.rs (+209/-0) vendor/dbus/src/nonblock/generated_org_freedesktop_standard_interfaces.rs (+153/-0) vendor/dbus/src/prop.rs (+136/-0) vendor/dbus/src/strings.rs (+250/-0) vendor/der/.cargo-checksum.json (+1/-0) vendor/der/CHANGELOG.md (+465/-0) vendor/der/Cargo.toml (+109/-0) vendor/der/LICENSE-APACHE (+201/-0) vendor/der/LICENSE-MIT (+25/-0) vendor/der/README.md (+96/-0) vendor/der/src/arrayvec.rs (+145/-0) vendor/der/src/asn1.rs (+67/-0) vendor/der/src/asn1/any.rs (+315/-0) vendor/der/src/asn1/bit_string.rs (+552/-0) vendor/der/src/asn1/bmp_string.rs (+164/-0) vendor/der/src/asn1/boolean.rs (+82/-0) vendor/der/src/asn1/choice.rs (+26/-0) vendor/der/src/asn1/context_specific.rs (+354/-0) vendor/der/src/asn1/generalized_time.rs (+327/-0) vendor/der/src/asn1/ia5_string.rs (+195/-0) vendor/der/src/asn1/integer.rs (+161/-0) vendor/der/src/asn1/integer/int.rs (+442/-0) vendor/der/src/asn1/integer/uint.rs (+428/-0) vendor/der/src/asn1/internal_macros.rs (+75/-0) vendor/der/src/asn1/null.rs (+102/-0) vendor/der/src/asn1/octet_string.rs (+257/-0) vendor/der/src/asn1/oid.rs (+100/-0) vendor/der/src/asn1/optional.rs (+66/-0) vendor/der/src/asn1/printable_string.rs (+252/-0) vendor/der/src/asn1/real.rs (+990/-0) vendor/der/src/asn1/sequence.rs (+53/-0) vendor/der/src/asn1/sequence_of.rs (+230/-0) vendor/der/src/asn1/set_of.rs (+539/-0) vendor/der/src/asn1/teletex_string.rs (+217/-0) vendor/der/src/asn1/utc_time.rs (+242/-0) vendor/der/src/asn1/utf8_string.rs (+164/-0) vendor/der/src/asn1/videotex_string.rs (+98/-0) vendor/der/src/bytes_owned.rs (+162/-0) vendor/der/src/bytes_ref.rs (+152/-0) vendor/der/src/datetime.rs (+447/-0) vendor/der/src/decode.rs (+99/-0) vendor/der/src/document.rs (+354/-0) vendor/der/src/encode.rs (+158/-0) vendor/der/src/encode_ref.rs (+71/-0) vendor/der/src/error.rs (+369/-0) vendor/der/src/header.rs (+60/-0) vendor/der/src/length.rs (+514/-0) vendor/der/src/lib.rs (+402/-0) vendor/der/src/ord.rs (+85/-0) vendor/der/src/reader.rs (+167/-0) vendor/der/src/reader/nested.rs (+96/-0) vendor/der/src/reader/pem.rs (+206/-0) vendor/der/src/reader/slice.rs (+214/-0) vendor/der/src/referenced.rs (+69/-0) vendor/der/src/str_owned.rs (+104/-0) vendor/der/src/str_ref.rs (+92/-0) vendor/der/src/tag.rs (+460/-0) vendor/der/src/tag/class.rs (+50/-0) vendor/der/src/tag/mode.rs (+40/-0) vendor/der/src/tag/number.rs (+201/-0) vendor/der/src/writer.rs (+29/-0) vendor/der/src/writer/pem.rs (+41/-0) vendor/der/src/writer/slice.rs (+149/-0) vendor/der/tests/datetime.proptest-regressions (+8/-0) vendor/der/tests/datetime.rs (+64/-0) vendor/der/tests/derive.rs (+461/-0) vendor/der/tests/examples/spki.pem (+3/-0) vendor/der/tests/pem.rs (+67/-0) vendor/der/tests/set_of.rs (+65/-0) vendor/deranged/.cargo-checksum.json (+1/-0) vendor/deranged/Cargo.toml (+83/-0) vendor/deranged/LICENSE-Apache (+202/-0) vendor/deranged/LICENSE-MIT (+19/-0) vendor/deranged/README.md (+3/-0) vendor/deranged/src/lib.rs (+1474/-0) vendor/deranged/src/tests.rs (+688/-0) vendor/deranged/src/traits.rs (+117/-0) vendor/deranged/src/unsafe_wrapper.rs (+26/-0) vendor/digest/.cargo-checksum.json (+1/-0) vendor/digest/CHANGELOG.md (+137/-0) vendor/digest/Cargo.toml (+70/-0) vendor/digest/LICENSE-APACHE (+201/-0) vendor/digest/LICENSE-MIT (+25/-0) vendor/digest/README.md (+164/-0) vendor/digest/src/core_api.rs (+119/-0) vendor/digest/src/core_api/ct_variable.rs (+204/-0) vendor/digest/src/core_api/rt_variable.rs (+166/-0) vendor/digest/src/core_api/wrapper.rs (+290/-0) vendor/digest/src/core_api/xof_reader.rs (+63/-0) vendor/digest/src/dev.rs (+78/-0) vendor/digest/src/dev/fixed.rs (+65/-0) vendor/digest/src/dev/mac.rs (+159/-0) vendor/digest/src/dev/rng.rs (+38/-0) vendor/digest/src/dev/variable.rs (+82/-0) vendor/digest/src/dev/xof.rs (+51/-0) vendor/digest/src/digest.rs (+236/-0) vendor/digest/src/lib.rs (+301/-0) vendor/digest/src/mac.rs (+305/-0) vendor/dunce/.cargo-checksum.json (+1/-0) vendor/dunce/Cargo.toml (+34/-0) vendor/dunce/src/lib.rs (+0/-0) vendor/ecdsa/.cargo-checksum.json (+1/-0) vendor/ecdsa/CHANGELOG.md (+588/-0) vendor/ecdsa/Cargo.toml (+148/-0) vendor/ecdsa/LICENSE-APACHE (+201/-0) vendor/ecdsa/LICENSE-MIT (+25/-0) vendor/ecdsa/README.md (+93/-0) vendor/ecdsa/src/der.rs (+464/-0) vendor/ecdsa/src/dev.rs (+230/-0) vendor/ecdsa/src/hazmat.rs (+332/-0) vendor/ecdsa/src/lib.rs (+709/-0) vendor/ecdsa/src/normalized.rs (+11/-0) vendor/ecdsa/src/recovery.rs (+357/-0) vendor/ecdsa/src/signing.rs (+598/-0) vendor/ecdsa/src/verifying.rs (+482/-0) vendor/ecdsa/tests/lib.rs (+14/-0) vendor/ed25519-compact/.cargo-checksum.json (+1/-0) vendor/ed25519-compact/Cargo.toml (+78/-0) vendor/ed25519-compact/LICENSE (+21/-0) vendor/ed25519-compact/README.md (+91/-0) vendor/ed25519-compact/src/common.rs (+90/-0) vendor/ed25519-compact/src/ed25519.rs (+957/-0) vendor/ed25519-compact/src/edwards25519.rs (+1546/-0) vendor/ed25519-compact/src/error.rs (+45/-0) vendor/ed25519-compact/src/ex25519.rs (+3/-0) vendor/ed25519-compact/src/field25519.rs (+696/-0) vendor/ed25519-compact/src/lib.rs (+127/-0) vendor/ed25519-compact/src/pem.rs (+153/-0) vendor/ed25519-compact/src/sha512.rs (+378/-0) vendor/ed25519-compact/src/x25519.rs (+360/-0) vendor/either/.cargo-checksum.json (+1/-0) vendor/either/Cargo.toml (+54/-0) vendor/either/LICENSE-APACHE (+201/-0) vendor/either/LICENSE-MIT (+25/-0) vendor/either/README-crates.io.md (+10/-0) vendor/either/README.rst (+189/-0) vendor/either/src/into_either.rs (+64/-0) vendor/either/src/iterator.rs (+315/-0) vendor/either/src/lib.rs (+1575/-0) vendor/either/src/serde_untagged.rs (+69/-0) vendor/either/src/serde_untagged_optional.rs (+74/-0) vendor/elliptic-curve/.cargo-checksum.json (+1/-0) vendor/elliptic-curve/CHANGELOG.md (+811/-0) vendor/elliptic-curve/Cargo.toml (+220/-0) vendor/elliptic-curve/LICENSE-APACHE (+201/-0) vendor/elliptic-curve/LICENSE-MIT (+25/-0) vendor/elliptic-curve/README.md (+54/-0) vendor/elliptic-curve/src/arithmetic.rs (+86/-0) vendor/elliptic-curve/src/dev.rs (+843/-0) vendor/elliptic-curve/src/ecdh.rs (+236/-0) vendor/elliptic-curve/src/error.rs (+42/-0) vendor/elliptic-curve/src/field.rs (+51/-0) vendor/elliptic-curve/src/hash2curve.rs (+15/-0) vendor/elliptic-curve/src/hash2curve/group_digest.rs (+123/-0) vendor/elliptic-curve/src/hash2curve/hash2field.rs (+48/-0) vendor/elliptic-curve/src/hash2curve/hash2field/expand_msg.rs (+145/-0) vendor/elliptic-curve/src/hash2curve/hash2field/expand_msg/xmd.rs (+451/-0) vendor/elliptic-curve/src/hash2curve/hash2field/expand_msg/xof.rs (+348/-0) vendor/elliptic-curve/src/hash2curve/isogeny.rs (+57/-0) vendor/elliptic-curve/src/hash2curve/map2curve.rs (+12/-0) vendor/elliptic-curve/src/hash2curve/osswu.rs (+130/-0) vendor/elliptic-curve/src/jwk.rs (+675/-0) vendor/elliptic-curve/src/lib.rs (+196/-0) vendor/elliptic-curve/src/ops.rs (+229/-0) vendor/elliptic-curve/src/point.rs (+81/-0) vendor/elliptic-curve/src/point/non_identity.rs (+237/-0) vendor/elliptic-curve/src/public_key.rs (+567/-0) vendor/elliptic-curve/src/scalar.rs (+53/-0) vendor/elliptic-curve/src/scalar/blinded.rs (+74/-0) vendor/elliptic-curve/src/scalar/nonzero.rs (+405/-0) vendor/elliptic-curve/src/scalar/primitive.rs (+434/-0) vendor/elliptic-curve/src/sec1.rs (+114/-0) vendor/elliptic-curve/src/secret_key.rs (+386/-0) vendor/elliptic-curve/src/secret_key/pkcs8.rs (+90/-0) vendor/elliptic-curve/src/voprf.rs (+20/-0) vendor/elliptic-curve/src/weierstrass.rs (+128/-0) vendor/elliptic-curve/tests/examples/pkcs8-private-key.pem (+5/-0) vendor/elliptic-curve/tests/examples/pkcs8-public-key.pem (+4/-0) vendor/elliptic-curve/tests/pkcs8.rs (+57/-0) vendor/elliptic-curve/tests/secret_key.rs (+28/-0) vendor/encoding_rs/.cargo-checksum.json (+1/-0) vendor/encoding_rs/CONTRIBUTING.md (+48/-0) vendor/encoding_rs/COPYRIGHT (+17/-0) vendor/encoding_rs/Cargo.toml (+78/-0) vendor/encoding_rs/Ideas.md (+106/-0) vendor/encoding_rs/LICENSE-APACHE (+202/-0) vendor/encoding_rs/LICENSE-MIT (+25/-0) vendor/encoding_rs/LICENSE-WHATWG (+26/-0) vendor/encoding_rs/README.md (+825/-0) vendor/encoding_rs/ci/miri.sh (+14/-0) vendor/encoding_rs/doc/Big5.txt (+16/-0) vendor/encoding_rs/doc/EUC-JP.txt (+12/-0) vendor/encoding_rs/doc/EUC-KR.txt (+10/-0) vendor/encoding_rs/doc/GBK.txt (+16/-0) vendor/encoding_rs/doc/IBM866.txt (+8/-0) vendor/encoding_rs/doc/ISO-2022-JP.txt (+10/-0) vendor/encoding_rs/doc/ISO-8859-10.txt (+8/-0) vendor/encoding_rs/doc/ISO-8859-13.txt (+8/-0) vendor/encoding_rs/doc/ISO-8859-14.txt (+8/-0) vendor/encoding_rs/doc/ISO-8859-15.txt (+7/-0) vendor/encoding_rs/doc/ISO-8859-16.txt (+8/-0) vendor/encoding_rs/doc/ISO-8859-2.txt (+6/-0) vendor/encoding_rs/doc/ISO-8859-3.txt (+6/-0) vendor/encoding_rs/doc/ISO-8859-4.txt (+6/-0) vendor/encoding_rs/doc/ISO-8859-5.txt (+6/-0) vendor/encoding_rs/doc/ISO-8859-6.txt (+7/-0) vendor/encoding_rs/doc/ISO-8859-7.txt (+11/-0) vendor/encoding_rs/doc/ISO-8859-8-I.txt (+9/-0) vendor/encoding_rs/doc/ISO-8859-8.txt (+9/-0) vendor/encoding_rs/doc/KOI8-R.txt (+6/-0) vendor/encoding_rs/doc/KOI8-U.txt (+6/-0) vendor/encoding_rs/doc/Shift_JIS.txt (+8/-0) vendor/encoding_rs/doc/UTF-16BE.txt (+8/-0) vendor/encoding_rs/doc/UTF-16LE.txt (+8/-0) vendor/encoding_rs/doc/UTF-8.txt (+5/-0) vendor/encoding_rs/doc/gb18030.txt (+9/-0) vendor/encoding_rs/doc/macintosh.txt (+7/-0) vendor/encoding_rs/doc/replacement.txt (+10/-0) vendor/encoding_rs/doc/windows-1250.txt (+6/-0) vendor/encoding_rs/doc/windows-1251.txt (+6/-0) vendor/encoding_rs/doc/windows-1252.txt (+7/-0) vendor/encoding_rs/doc/windows-1253.txt (+8/-0) vendor/encoding_rs/doc/windows-1254.txt (+7/-0) vendor/encoding_rs/doc/windows-1255.txt (+8/-0) vendor/encoding_rs/doc/windows-1256.txt (+6/-0) vendor/encoding_rs/doc/windows-1257.txt (+7/-0) vendor/encoding_rs/doc/windows-1258.txt (+11/-0) vendor/encoding_rs/doc/windows-874.txt (+7/-0) vendor/encoding_rs/doc/x-mac-cyrillic.txt (+6/-0) vendor/encoding_rs/doc/x-user-defined.txt (+6/-0) vendor/encoding_rs/generate-encoding-data.py (+2008/-0) vendor/encoding_rs/rustfmt.toml (+1/-0) vendor/encoding_rs/src/ascii.rs (+1922/-0) vendor/encoding_rs/src/big5.rs (+427/-0) vendor/encoding_rs/src/data.rs (+114378/-0) vendor/encoding_rs/src/euc_jp.rs (+469/-0) vendor/encoding_rs/src/euc_kr.rs (+442/-0) vendor/encoding_rs/src/gb18030.rs (+767/-0) vendor/encoding_rs/src/handles.rs (+2001/-0) vendor/encoding_rs/src/iso_2022_jp.rs (+1068/-0) vendor/encoding_rs/src/lib.rs (+6122/-0) vendor/encoding_rs/src/macros.rs (+1622/-0) vendor/encoding_rs/src/mem.rs (+3368/-0) vendor/encoding_rs/src/replacement.rs (+104/-0) vendor/encoding_rs/src/shift_jis.rs (+426/-0) vendor/encoding_rs/src/simd_funcs.rs (+479/-0) vendor/encoding_rs/src/single_byte.rs (+776/-0) vendor/encoding_rs/src/test_data/big5_in.txt (+19787/-0) vendor/encoding_rs/src/test_data/big5_in_ref.txt (+19787/-0) vendor/encoding_rs/src/test_data/big5_out.txt (+14601/-0) vendor/encoding_rs/src/test_data/big5_out_ref.txt (+14601/-0) vendor/encoding_rs/src/test_data/euc_kr_in.txt (+23945/-0) vendor/encoding_rs/src/test_data/euc_kr_in_ref.txt (+23945/-0) vendor/encoding_rs/src/test_data/euc_kr_out.txt (+17053/-0) vendor/encoding_rs/src/test_data/euc_kr_out_ref.txt (+17053/-0) vendor/encoding_rs/src/test_data/gb18030_in.txt (+23945/-0) vendor/encoding_rs/src/test_data/gb18030_in_ref.txt (+23945/-0) vendor/encoding_rs/src/test_data/gb18030_out.txt (+23944/-0) vendor/encoding_rs/src/test_data/gb18030_out_ref.txt (+23944/-0) vendor/encoding_rs/src/test_data/iso_2022_jp_in.txt (+8841/-0) vendor/encoding_rs/src/test_data/iso_2022_jp_in_ref.txt (+8841/-0) vendor/encoding_rs/src/test_data/iso_2022_jp_out.txt (+7404/-0) vendor/encoding_rs/src/test_data/iso_2022_jp_out_ref.txt (+7404/-0) vendor/encoding_rs/src/test_data/jis0208_in.txt (+8841/-0) vendor/encoding_rs/src/test_data/jis0208_in_ref.txt (+8841/-0) vendor/encoding_rs/src/test_data/jis0208_out.txt (+7341/-0) vendor/encoding_rs/src/test_data/jis0208_out_ref.txt (+7341/-0) vendor/encoding_rs/src/test_data/jis0212_in.txt (+8841/-0) vendor/encoding_rs/src/test_data/jis0212_in_ref.txt (+8841/-0) vendor/encoding_rs/src/test_data/shift_jis_in.txt (+11285/-0) vendor/encoding_rs/src/test_data/shift_jis_in_ref.txt (+11285/-0) vendor/encoding_rs/src/test_data/shift_jis_out.txt (+7355/-0) vendor/encoding_rs/src/test_data/shift_jis_out_ref.txt (+7355/-0) vendor/encoding_rs/src/test_labels_names.rs (+242/-0) vendor/encoding_rs/src/testing.rs (+262/-0) vendor/encoding_rs/src/utf_16.rs (+472/-0) vendor/encoding_rs/src/utf_8.rs (+1629/-0) vendor/encoding_rs/src/variant.rs (+400/-0) vendor/encoding_rs/src/x_user_defined.rs (+255/-0) vendor/equivalent/.cargo-checksum.json (+1/-0) vendor/equivalent/Cargo.toml (+27/-0) vendor/equivalent/LICENSE-APACHE (+201/-0) vendor/equivalent/LICENSE-MIT (+25/-0) vendor/equivalent/README.md (+25/-0) vendor/equivalent/src/lib.rs (+113/-0) vendor/erased-serde/.cargo-checksum.json (+1/-0) vendor/erased-serde/Cargo.toml (+90/-0) vendor/erased-serde/LICENSE-APACHE (+176/-0) vendor/erased-serde/LICENSE-MIT (+23/-0) vendor/erased-serde/README.md (+149/-0) vendor/erased-serde/src/any.rs (+107/-0) vendor/erased-serde/src/de.rs (+1660/-0) vendor/erased-serde/src/error.rs (+226/-0) vendor/erased-serde/src/features_check/error.rs (+1/-0) vendor/erased-serde/src/features_check/mod.rs (+13/-0) vendor/erased-serde/src/lib.rs (+141/-0) vendor/erased-serde/src/macros.rs (+165/-0) vendor/erased-serde/src/map.rs (+25/-0) vendor/erased-serde/src/private.rs (+16/-0) vendor/erased-serde/src/sealed.rs (+11/-0) vendor/erased-serde/src/ser.rs (+1605/-0) vendor/erased-serde/tests/compiletest.rs (+7/-0) vendor/erased-serde/tests/readme.rs (+57/-0) vendor/erased-serde/tests/traitobject.rs (+9/-0) vendor/erased-serde/tests/ui/missing-supertrait.rs (+7/-0) vendor/erased-serde/tests/ui/missing-supertrait.stderr (+20/-0) vendor/errno/.cargo-checksum.json (+1/-0) vendor/errno/CHANGELOG.md (+102/-0) vendor/errno/Cargo.toml (+49/-0) vendor/errno/LICENSE-APACHE (+201/-0) vendor/errno/LICENSE-MIT (+25/-0) vendor/errno/README.md (+62/-0) vendor/errno/clippy.toml (+1/-0) vendor/errno/src/hermit.rs (+32/-0) vendor/errno/src/lib.rs (+156/-0) vendor/errno/src/unix.rs (+102/-0) vendor/errno/src/wasi.rs (+60/-0) vendor/errno/src/windows.rs (+81/-0) vendor/fallible-iterator/.cargo-checksum.json (+1/-0) vendor/fallible-iterator/CHANGELOG.md (+39/-0) vendor/fallible-iterator/Cargo.toml (+29/-0) vendor/fallible-iterator/LICENSE-APACHE (+202/-0) vendor/fallible-iterator/LICENSE-MIT (+19/-0) vendor/fallible-iterator/README.md (+16/-0) vendor/fallible-iterator/src/lib.rs (+2808/-0) vendor/fallible-iterator/src/test.rs (+477/-0) vendor/fallible-streaming-iterator/.cargo-checksum.json (+1/-0) vendor/fallible-streaming-iterator/Cargo.toml (+25/-0) vendor/fallible-streaming-iterator/LICENSE-APACHE (+202/-0) vendor/fallible-streaming-iterator/LICENSE-MIT (+19/-0) vendor/fallible-streaming-iterator/README.md (+22/-0) vendor/fallible-streaming-iterator/src/lib.rs (+899/-0) vendor/faster-hex/.cargo-checksum.json (+1/-0) vendor/faster-hex/Cargo.toml (+67/-0) vendor/faster-hex/LICENSE (+21/-0) vendor/faster-hex/LICENSE-THIRD-PARTY/Rust Project Developers (+25/-0) vendor/faster-hex/LICENSE-THIRD-PARTY/fast-hex (+21/-0) vendor/faster-hex/README.md (+114/-0) vendor/faster-hex/src/decode.rs (+571/-0) vendor/faster-hex/src/encode.rs (+254/-0) vendor/faster-hex/src/error.rs (+33/-0) vendor/faster-hex/src/lib.rs (+233/-0) vendor/faster-hex/src/serde.rs (+372/-0) vendor/fastrand/.cargo-checksum.json (+1/-0) vendor/fastrand/CHANGELOG.md (+116/-0) vendor/fastrand/Cargo.toml (+88/-0) vendor/fastrand/LICENSE-APACHE (+201/-0) vendor/fastrand/LICENSE-MIT (+23/-0) vendor/fastrand/README.md (+110/-0) vendor/fastrand/benches/bench.rs (+98/-0) vendor/fastrand/src/global_rng.rs (+218/-0) vendor/fastrand/src/lib.rs (+688/-0) vendor/fastrand/tests/char.rs (+44/-0) vendor/fastrand/tests/smoke.rs (+143/-0) vendor/ff/.cargo-checksum.json (+1/-0) vendor/ff/CHANGELOG.md (+143/-0) vendor/ff/Cargo.toml (+67/-0) vendor/ff/LICENSE-APACHE (+202/-0) vendor/ff/LICENSE-MIT (+21/-0) vendor/ff/README.md (+75/-0) vendor/ff/rust-toolchain (+1/-0) vendor/ff/src/batch.rs (+131/-0) vendor/ff/src/helpers.rs (+128/-0) vendor/ff/src/lib.rs (+498/-0) vendor/ff/tests/derive.rs (+137/-0) vendor/fiat-crypto/.cargo-checksum.json (+1/-0) vendor/fiat-crypto/AUTHORS (+17/-0) vendor/fiat-crypto/CONTRIBUTORS (+29/-0) vendor/fiat-crypto/COPYRIGHT (+7/-0) vendor/fiat-crypto/Cargo.toml (+27/-0) vendor/fiat-crypto/LICENSE-APACHE (+15/-0) vendor/fiat-crypto/LICENSE-BSD-1 (+23/-0) vendor/fiat-crypto/LICENSE-MIT (+21/-0) vendor/fiat-crypto/README.md (+10/-0) vendor/fiat-crypto/src/curve25519_32.rs (+1026/-0) vendor/fiat-crypto/src/curve25519_64.rs (+664/-0) vendor/fiat-crypto/src/curve25519_scalar_32.rs (+4832/-0) vendor/fiat-crypto/src/curve25519_scalar_64.rs (+1866/-0) vendor/fiat-crypto/src/curve25519_solinas_64.rs (+486/-0) vendor/fiat-crypto/src/lib.rs (+30/-0) vendor/fiat-crypto/src/p224_32.rs (+3788/-0) vendor/fiat-crypto/src/p224_64.rs (+1906/-0) vendor/fiat-crypto/src/p256_32.rs (+4548/-0) vendor/fiat-crypto/src/p256_64.rs (+1829/-0) vendor/fiat-crypto/src/p256_scalar_32.rs (+5346/-0) vendor/fiat-crypto/src/p256_scalar_64.rs (+2033/-0) vendor/fiat-crypto/src/p384_32.rs (+9829/-0) vendor/fiat-crypto/src/p384_64.rs (+3607/-0) vendor/fiat-crypto/src/p384_scalar_32.rs (+11413/-0) vendor/fiat-crypto/src/p384_scalar_64.rs (+3661/-0) vendor/fiat-crypto/src/p434_64.rs (+4516/-0) vendor/fiat-crypto/src/p448_solinas_32.rs (+1714/-0) vendor/fiat-crypto/src/p448_solinas_64.rs (+944/-0) vendor/fiat-crypto/src/p521_32.rs (+1850/-0) vendor/fiat-crypto/src/p521_64.rs (+1055/-0) vendor/fiat-crypto/src/poly1305_32.rs (+541/-0) vendor/fiat-crypto/src/poly1305_64.rs (+493/-0) vendor/fiat-crypto/src/secp256k1_dettman_32.rs (+206/-0) vendor/fiat-crypto/src/secp256k1_dettman_64.rs (+125/-0) vendor/fiat-crypto/src/secp256k1_montgomery_32.rs (+5373/-0) vendor/fiat-crypto/src/secp256k1_montgomery_64.rs (+1993/-0) vendor/fiat-crypto/src/secp256k1_montgomery_scalar_32.rs (+5637/-0) vendor/fiat-crypto/src/secp256k1_montgomery_scalar_64.rs (+2053/-0) vendor/filetime/.cargo-checksum.json (+1/-0) vendor/filetime/Cargo.toml (+56/-0) vendor/filetime/LICENSE-APACHE (+201/-0) vendor/filetime/LICENSE-MIT (+25/-0) vendor/filetime/README.md (+37/-0) vendor/filetime/src/lib.rs (+715/-0) vendor/filetime/src/redox.rs (+113/-0) vendor/filetime/src/unix/android.rs (+63/-0) vendor/filetime/src/unix/linux.rs (+117/-0) vendor/filetime/src/unix/macos.rs (+108/-0) vendor/filetime/src/unix/mod.rs (+101/-0) vendor/filetime/src/unix/utimensat.rs (+64/-0) vendor/filetime/src/unix/utimes.rs (+130/-0) vendor/filetime/src/wasm.rs (+40/-0) vendor/filetime/src/windows.rs (+99/-0) vendor/flate2/.cargo-checksum.json (+1/-0) vendor/flate2/CHANGELOG.md (+1920/-0) vendor/flate2/Cargo.lock (+198/-0) vendor/flate2/Cargo.toml (+243/-0) vendor/flate2/LICENSE-APACHE (+201/-0) vendor/flate2/LICENSE-MIT (+25/-0) vendor/flate2/MAINTENANCE.md (+28/-0) vendor/flate2/README.md (+129/-0) vendor/flate2/examples/compress_file.rs (+26/-0) vendor/flate2/examples/decompress_file.rs (+23/-0) vendor/flate2/examples/deflatedecoder-bufread.rs (+22/-0) vendor/flate2/examples/deflatedecoder-read.rs (+22/-0) vendor/flate2/examples/deflatedecoder-write.rs (+24/-0) vendor/flate2/examples/deflateencoder-bufread.rs (+22/-0) vendor/flate2/examples/deflateencoder-read.rs (+18/-0) vendor/flate2/examples/deflateencoder-write.rs (+10/-0) vendor/flate2/examples/gzbuilder.rs (+22/-0) vendor/flate2/examples/gzdecoder-bufread.rs (+21/-0) vendor/flate2/examples/gzdecoder-read.rs (+21/-0) vendor/flate2/examples/gzdecoder-write.rs (+24/-0) vendor/flate2/examples/gzencoder-bufread.rs (+22/-0) vendor/flate2/examples/gzencoder-read.rs (+18/-0) vendor/flate2/examples/gzencoder-write.rs (+10/-0) vendor/flate2/examples/gzmultidecoder-bufread.rs (+22/-0) vendor/flate2/examples/gzmultidecoder-read.rs (+22/-0) vendor/flate2/examples/hello_world.txt (+1/-0) vendor/flate2/examples/zlibdecoder-bufread.rs (+22/-0) vendor/flate2/examples/zlibdecoder-read.rs (+22/-0) vendor/flate2/examples/zlibdecoder-write.rs (+24/-0) vendor/flate2/examples/zlibencoder-bufread.rs (+22/-0) vendor/flate2/examples/zlibencoder-read.rs (+19/-0) vendor/flate2/examples/zlibencoder-write.rs (+10/-0) vendor/flate2/src/bufreader.rs (+104/-0) vendor/flate2/src/crc.rs (+184/-0) vendor/flate2/src/deflate/bufread.rs (+297/-0) vendor/flate2/src/deflate/mod.rs (+193/-0) vendor/flate2/src/deflate/read.rs (+247/-0) vendor/flate2/src/deflate/write.rs (+366/-0) vendor/flate2/src/ffi/c.rs (+481/-0) vendor/flate2/src/ffi/mod.rs (+52/-0) vendor/flate2/src/ffi/rust.rs (+183/-0) vendor/flate2/src/gz/bufread.rs (+483/-0) vendor/flate2/src/gz/mod.rs (+644/-0) vendor/flate2/src/gz/read.rs (+378/-0) vendor/flate2/src/gz/write.rs (+641/-0) vendor/flate2/src/lib.rs (+246/-0) vendor/flate2/src/mem.rs (+782/-0) vendor/flate2/src/zio.rs (+286/-0) vendor/flate2/src/zlib/bufread.rs (+305/-0) vendor/flate2/src/zlib/mod.rs (+159/-0) vendor/flate2/src/zlib/read.rs (+281/-0) vendor/flate2/src/zlib/write.rs (+384/-0) vendor/flate2/tests/early-flush.rs (+18/-0) vendor/flate2/tests/empty-read.rs (+80/-0) vendor/flate2/tests/good-file.txt (+733/-0) vendor/flate2/tests/gunzip.rs (+75/-0) vendor/flate2/tests/multi.txt (+2/-0) vendor/flate2/tests/zero-write.rs (+6/-0) vendor/fnv/.cargo-checksum.json (+1/-0) vendor/fnv/Cargo.toml (+29/-0) vendor/fnv/LICENSE-APACHE (+201/-0) vendor/fnv/LICENSE-MIT (+25/-0) vendor/fnv/README.md (+81/-0) vendor/fnv/lib.rs (+367/-0) vendor/foldhash/.cargo-checksum.json (+1/-0) vendor/foldhash/Cargo.toml (+74/-0) vendor/foldhash/LICENSE (+19/-0) vendor/foldhash/README.md (+277/-0) vendor/foldhash/src/convenience.rs (+65/-0) vendor/foldhash/src/lib.rs (+397/-0) vendor/foldhash/src/seed.rs (+326/-0) vendor/form_urlencoded/.cargo-checksum.json (+1/-0) vendor/form_urlencoded/Cargo.toml (+39/-0) vendor/form_urlencoded/LICENSE-APACHE (+201/-0) vendor/form_urlencoded/LICENSE-MIT (+25/-0) vendor/form_urlencoded/src/lib.rs (+427/-0) vendor/generic-array/.cargo-checksum.json (+1/-0) vendor/generic-array/CHANGELOG.md (+101/-0) vendor/generic-array/Cargo.toml (+75/-0) vendor/generic-array/LICENSE (+21/-0) vendor/generic-array/README.md (+62/-0) vendor/generic-array/build.rs (+5/-0) vendor/generic-array/src/arr.rs (+125/-0) vendor/generic-array/src/functional.rs (+95/-0) vendor/generic-array/src/hex.rs (+105/-0) vendor/generic-array/src/impl_serde.rs (+108/-0) vendor/generic-array/src/impl_zeroize.rs (+24/-0) vendor/generic-array/src/impls.rs (+269/-0) vendor/generic-array/src/iter.rs (+251/-0) vendor/generic-array/src/lib.rs (+690/-0) vendor/generic-array/src/sequence.rs (+380/-0) vendor/getrandom/.cargo-checksum.json (+1/-0) vendor/getrandom/CHANGELOG.md (+490/-0) vendor/getrandom/Cargo.toml (+120/-0) vendor/getrandom/LICENSE-APACHE (+201/-0) vendor/getrandom/LICENSE-MIT (+26/-0) vendor/getrandom/README.md (+81/-0) vendor/getrandom/SECURITY.md (+13/-0) vendor/getrandom/benches/buffer.rs (+71/-0) vendor/getrandom/src/apple-other.rs (+24/-0) vendor/getrandom/src/custom.rs (+105/-0) vendor/getrandom/src/error.rs (+189/-0) vendor/getrandom/src/error_impls.rs (+15/-0) vendor/getrandom/src/espidf.rs (+18/-0) vendor/getrandom/src/fuchsia.rs (+13/-0) vendor/getrandom/src/getentropy.rs (+21/-0) vendor/getrandom/src/getrandom.rs (+25/-0) vendor/getrandom/src/hermit.rs (+29/-0) vendor/getrandom/src/js.rs (+155/-0) vendor/getrandom/src/lazy.rs (+56/-0) vendor/getrandom/src/lib.rs (+403/-0) vendor/getrandom/src/linux_android.rs (+7/-0) vendor/getrandom/src/linux_android_with_fallback.rs (+33/-0) vendor/getrandom/src/netbsd.rs (+46/-0) vendor/getrandom/src/rdrand.rs (+121/-0) vendor/getrandom/src/solaris.rs (+34/-0) vendor/getrandom/src/solid.rs (+18/-0) vendor/getrandom/src/use_file.rs (+120/-0) vendor/getrandom/src/util.rs (+35/-0) vendor/getrandom/src/util_libc.rs (+162/-0) vendor/getrandom/src/vxworks.rs (+29/-0) vendor/getrandom/src/wasi.rs (+17/-0) vendor/getrandom/src/windows.rs (+59/-0) vendor/getrandom/tests/common/mod.rs (+100/-0) vendor/getrandom/tests/custom.rs (+54/-0) vendor/getrandom/tests/normal.rs (+11/-0) vendor/getrandom/tests/rdrand.rs (+22/-0) vendor/git2-curl/.cargo-checksum.json (+1/-0) vendor/git2-curl/CHANGELOG.md (+31/-0) vendor/git2-curl/Cargo.toml (+62/-0) vendor/git2-curl/LICENSE-APACHE (+201/-0) vendor/git2-curl/LICENSE-MIT (+25/-0) vendor/git2-curl/src/lib.rs (+291/-0) vendor/git2-curl/tests/all.rs (+74/-0) vendor/git2/.cargo-checksum.json (+1/-0) vendor/git2/CHANGELOG.md (+251/-0) vendor/git2/CONTRIBUTING.md (+63/-0) vendor/git2/Cargo.lock (+789/-0) vendor/git2/Cargo.toml (+84/-0) vendor/git2/FUNDING.json (+7/-0) vendor/git2/LICENSE-APACHE (+201/-0) vendor/git2/LICENSE-MIT (+25/-0) vendor/git2/README.md (+71/-0) vendor/git2/ci/publish.sh (+46/-0) vendor/git2/examples/add.rs (+81/-0) vendor/git2/examples/blame.rs (+104/-0) vendor/git2/examples/cat-file.rs (+149/-0) vendor/git2/examples/clone.rs (+126/-0) vendor/git2/examples/diff.rs (+368/-0) vendor/git2/examples/fetch.rs (+132/-0) vendor/git2/examples/init.rs (+145/-0) vendor/git2/examples/log.rs (+310/-0) vendor/git2/examples/ls-remote.rs (+51/-0) vendor/git2/examples/pull.rs (+208/-0) vendor/git2/examples/rev-list.rs (+105/-0) vendor/git2/examples/rev-parse.rs (+60/-0) vendor/git2/examples/status.rs (+441/-0) vendor/git2/examples/tag.rs (+127/-0) vendor/git2/src/apply.rs (+208/-0) vendor/git2/src/attr.rs (+175/-0) vendor/git2/src/blame.rs (+379/-0) vendor/git2/src/blob.rs (+208/-0) vendor/git2/src/branch.rs (+197/-0) vendor/git2/src/buf.rs (+71/-0) vendor/git2/src/build.rs (+861/-0) vendor/git2/src/call.rs (+244/-0) vendor/git2/src/cert.rs (+191/-0) vendor/git2/src/cherrypick.rs (+72/-0) vendor/git2/src/commit.rs (+472/-0) vendor/git2/src/config.rs (+776/-0) vendor/git2/src/cred.rs (+713/-0) vendor/git2/src/describe.rs (+201/-0) vendor/git2/src/diff.rs (+1863/-0) vendor/git2/src/email.rs (+183/-0) vendor/git2/src/error.rs (+413/-0) vendor/git2/src/index.rs (+929/-0) vendor/git2/src/indexer.rs (+255/-0) vendor/git2/src/lib.rs (+1684/-0) vendor/git2/src/mailmap.rs (+134/-0) vendor/git2/src/mempack.rs (+49/-0) vendor/git2/src/merge.rs (+194/-0) vendor/git2/src/message.rs (+349/-0) vendor/git2/src/note.rs (+147/-0) vendor/git2/src/object.rs (+248/-0) vendor/git2/src/odb.rs (+729/-0) vendor/git2/src/oid.rs (+258/-0) vendor/git2/src/oid_array.rs (+52/-0) vendor/git2/src/opts.rs (+465/-0) vendor/git2/src/packbuilder.rs (+413/-0) vendor/git2/src/panic.rs (+33/-0) vendor/git2/src/patch.rs (+235/-0) vendor/git2/src/pathspec.rs (+368/-0) vendor/git2/src/proxy_options.rs (+56/-0) vendor/git2/src/push_update.rs (+55/-0) vendor/git2/src/rebase.rs (+441/-0) vendor/git2/src/reference.rs (+592/-0) vendor/git2/src/reflog.rs (+196/-0) vendor/git2/src/refspec.rs (+122/-0) vendor/git2/src/remote.rs (+1168/-0) vendor/git2/src/remote_callbacks.rs (+526/-0) vendor/git2/src/repo.rs (+4307/-0) vendor/git2/src/revert.rs (+69/-0) vendor/git2/src/revspec.rs (+34/-0) vendor/git2/src/revwalk.rs (+316/-0) vendor/git2/src/signature.rs (+188/-0) vendor/git2/src/stash.rs (+348/-0) vendor/git2/src/status.rs (+435/-0) vendor/git2/src/string_array.rs (+136/-0) vendor/git2/src/submodule.rs (+471/-0) vendor/git2/src/tag.rs (+234/-0) vendor/git2/src/tagforeach.rs (+69/-0) vendor/git2/src/test.rs (+89/-0) vendor/git2/src/time.rs (+127/-0) vendor/git2/src/tracing.rs (+85/-0) vendor/git2/src/transaction.rs (+285/-0) vendor/git2/src/transport.rs (+421/-0) vendor/git2/src/tree.rs (+602/-0) vendor/git2/src/treebuilder.rs (+234/-0) vendor/git2/src/util.rs (+341/-0) vendor/git2/src/version.rs (+95/-0) vendor/git2/src/worktree.rs (+337/-0) vendor/git2/tests/add_extensions.rs (+23/-0) vendor/git2/tests/get_extensions.rs (+18/-0) vendor/git2/tests/global_state.rs (+47/-0) vendor/git2/tests/remove_extensions.rs (+26/-0) vendor/gix-actor/.cargo-checksum.json (+1/-0) vendor/gix-actor/Cargo.toml (+83/-0) vendor/gix-actor/LICENSE-APACHE (+189/-0) vendor/gix-actor/LICENSE-MIT (+17/-0) vendor/gix-actor/src/identity.rs (+83/-0) vendor/gix-actor/src/lib.rs (+76/-0) vendor/gix-actor/src/signature/decode.rs (+217/-0) vendor/gix-actor/src/signature/mod.rs (+134/-0) vendor/gix-attributes/.cargo-checksum.json (+1/-0) vendor/gix-attributes/Cargo.toml (+91/-0) vendor/gix-attributes/LICENSE-APACHE (+189/-0) vendor/gix-attributes/LICENSE-MIT (+17/-0) vendor/gix-attributes/src/assignment.rs (+53/-0) vendor/gix-attributes/src/lib.rs (+131/-0) vendor/gix-attributes/src/name.rs (+66/-0) vendor/gix-attributes/src/parse.rs (+168/-0) vendor/gix-attributes/src/search/attributes.rs (+248/-0) vendor/gix-attributes/src/search/mod.rs (+149/-0) vendor/gix-attributes/src/search/outcome.rs (+421/-0) vendor/gix-attributes/src/search/refmap.rs (+56/-0) vendor/gix-attributes/src/source.rs (+27/-0) vendor/gix-attributes/src/state.rs (+127/-0) vendor/gix-bitmap/.cargo-checksum.json (+1/-0) vendor/gix-bitmap/Cargo.toml (+30/-0) vendor/gix-bitmap/LICENSE-APACHE (+189/-0) vendor/gix-bitmap/LICENSE-MIT (+17/-0) vendor/gix-bitmap/src/ewah.rs (+128/-0) vendor/gix-bitmap/src/lib.rs (+22/-0) vendor/gix-chunk/.cargo-checksum.json (+1/-0) vendor/gix-chunk/Cargo.toml (+32/-0) vendor/gix-chunk/LICENSE-APACHE (+189/-0) vendor/gix-chunk/LICENSE-MIT (+17/-0) vendor/gix-chunk/src/file/decode.rs (+105/-0) vendor/gix-chunk/src/file/index.rs (+109/-0) vendor/gix-chunk/src/file/mod.rs (+23/-0) vendor/gix-chunk/src/file/write.rs (+136/-0) vendor/gix-chunk/src/lib.rs (+38/-0) vendor/gix-command/.cargo-checksum.json (+1/-0) vendor/gix-command/Cargo.toml (+54/-0) vendor/gix-command/LICENSE-APACHE (+189/-0) vendor/gix-command/LICENSE-MIT (+17/-0) vendor/gix-command/src/lib.rs (+468/-0) vendor/gix-commitgraph/.cargo-checksum.json (+1/-0) vendor/gix-commitgraph/Cargo.toml (+83/-0) vendor/gix-commitgraph/LICENSE-APACHE (+189/-0) vendor/gix-commitgraph/LICENSE-MIT (+17/-0) vendor/gix-commitgraph/src/access.rs (+97/-0) vendor/gix-commitgraph/src/file/access.rs (+140/-0) vendor/gix-commitgraph/src/file/commit.rs (+257/-0) vendor/gix-commitgraph/src/file/init.rs (+264/-0) vendor/gix-commitgraph/src/file/mod.rs (+46/-0) vendor/gix-commitgraph/src/file/verify.rs (+172/-0) vendor/gix-commitgraph/src/init.rs (+128/-0) vendor/gix-commitgraph/src/lib.rs (+78/-0) vendor/gix-commitgraph/src/verify.rs (+204/-0) vendor/gix-config-value/.cargo-checksum.json (+1/-0) vendor/gix-config-value/Cargo.toml (+72/-0) vendor/gix-config-value/LICENSE-APACHE (+189/-0) vendor/gix-config-value/LICENSE-MIT (+17/-0) vendor/gix-config-value/src/boolean.rs (+99/-0) vendor/gix-config-value/src/color.rs (+346/-0) vendor/gix-config-value/src/integer.rs (+161/-0) vendor/gix-config-value/src/lib.rs (+50/-0) vendor/gix-config-value/src/path.rs (+196/-0) vendor/gix-config-value/src/types.rs (+48/-0) vendor/gix-config/.cargo-checksum.json (+1/-0) vendor/gix-config/Cargo.toml (+114/-0) vendor/gix-config/LICENSE-APACHE (+189/-0) vendor/gix-config/LICENSE-MIT (+17/-0) vendor/gix-config/README.md (+54/-0) vendor/gix-config/src/file/access/comfort.rs (+267/-0) vendor/gix-config/src/file/access/mod.rs (+4/-0) vendor/gix-config/src/file/access/mutate.rs (+422/-0) vendor/gix-config/src/file/access/raw.rs (+926/-0) vendor/gix-config/src/file/access/read_only.rs (+450/-0) vendor/gix-config/src/file/impls.rs (+111/-0) vendor/gix-config/src/file/includes/mod.rs (+326/-0) vendor/gix-config/src/file/includes/types.rs (+135/-0) vendor/gix-config/src/file/init/comfort.rs (+164/-0) vendor/gix-config/src/file/init/from_env.rs (+88/-0) vendor/gix-config/src/file/init/from_paths.rs (+134/-0) vendor/gix-config/src/file/init/mod.rs (+89/-0) vendor/gix-config/src/file/init/types.rs (+51/-0) vendor/gix-config/src/file/meta.rs (+59/-0) vendor/gix-config/src/file/mod.rs (+141/-0) vendor/gix-config/src/file/mutable/mod.rs (+107/-0) vendor/gix-config/src/file/mutable/multi_value.rs (+268/-0) vendor/gix-config/src/file/mutable/section.rs (+317/-0) vendor/gix-config/src/file/mutable/value.rs (+63/-0) vendor/gix-config/src/file/section/body.rs (+214/-0) vendor/gix-config/src/file/section/mod.rs (+145/-0) vendor/gix-config/src/file/tests.rs (+216/-0) vendor/gix-config/src/file/util.rs (+189/-0) vendor/gix-config/src/file/write.rs (+103/-0) vendor/gix-config/src/key.rs (+128/-0) vendor/gix-config/src/lib.rs (+57/-0) vendor/gix-config/src/lookup.rs (+25/-0) vendor/gix-config/src/parse/comment.rs (+50/-0) vendor/gix-config/src/parse/error.rs (+64/-0) vendor/gix-config/src/parse/event.rs (+83/-0) vendor/gix-config/src/parse/events.rs (+334/-0) vendor/gix-config/src/parse/mod.rs (+113/-0) vendor/gix-config/src/parse/nom/mod.rs (+375/-0) vendor/gix-config/src/parse/nom/tests.rs (+872/-0) vendor/gix-config/src/parse/section/header.rs (+180/-0) vendor/gix-config/src/parse/section/mod.rs (+185/-0) vendor/gix-config/src/parse/section/unvalidated.rs (+25/-0) vendor/gix-config/src/parse/tests.rs (+179/-0) vendor/gix-config/src/source.rs (+114/-0) vendor/gix-config/src/types.rs (+124/-0) vendor/gix-config/src/value/mod.rs (+4/-0) vendor/gix-config/src/value/normalize.rs (+110/-0) vendor/gix-credentials/.cargo-checksum.json (+1/-0) vendor/gix-credentials/Cargo.toml (+88/-0) vendor/gix-credentials/LICENSE-APACHE (+189/-0) vendor/gix-credentials/LICENSE-MIT (+17/-0) vendor/gix-credentials/src/helper/cascade.rs (+161/-0) vendor/gix-credentials/src/helper/invoke.rs (+68/-0) vendor/gix-credentials/src/helper/mod.rs (+172/-0) vendor/gix-credentials/src/lib.rs (+46/-0) vendor/gix-credentials/src/program/main.rs (+110/-0) vendor/gix-credentials/src/program/mod.rs (+149/-0) vendor/gix-credentials/src/protocol/context/mod.rs (+80/-0) vendor/gix-credentials/src/protocol/context/serde.rs (+122/-0) vendor/gix-credentials/src/protocol/mod.rs (+87/-0) vendor/gix-date-0.8.7/.cargo-checksum.json (+1/-0) vendor/gix-date-0.8.7/Cargo.toml (+79/-0) vendor/gix-date-0.8.7/LICENSE-APACHE (+189/-0) vendor/gix-date-0.8.7/LICENSE-MIT (+17/-0) vendor/gix-date-0.8.7/src/lib.rs (+44/-0) vendor/gix-date-0.8.7/src/parse.rs (+143/-0) vendor/gix-date-0.8.7/src/time/format.rs (+92/-0) vendor/gix-date-0.8.7/src/time/init.rs (+58/-0) vendor/gix-date-0.8.7/src/time/mod.rs (+63/-0) vendor/gix-date-0.8.7/src/time/write.rs (+134/-0) vendor/gix-date/.cargo-checksum.json (+1/-0) vendor/gix-date/Cargo.toml (+72/-0) vendor/gix-date/LICENSE-APACHE (+189/-0) vendor/gix-date/LICENSE-MIT (+17/-0) vendor/gix-date/src/lib.rs (+44/-0) vendor/gix-date/src/parse.rs (+172/-0) vendor/gix-date/src/time/format.rs (+59/-0) vendor/gix-date/src/time/init.rs (+40/-0) vendor/gix-date/src/time/mod.rs (+74/-0) vendor/gix-date/src/time/write.rs (+134/-0) vendor/gix-diff/.cargo-checksum.json (+1/-0) vendor/gix-diff/Cargo.toml (+121/-0) vendor/gix-diff/LICENSE-APACHE (+189/-0) vendor/gix-diff/LICENSE-MIT (+17/-0) vendor/gix-diff/src/blob/mod.rs (+135/-0) vendor/gix-diff/src/blob/pipeline.rs (+545/-0) vendor/gix-diff/src/blob/platform.rs (+623/-0) vendor/gix-diff/src/lib.rs (+52/-0) vendor/gix-diff/src/rewrites/mod.rs (+71/-0) vendor/gix-diff/src/rewrites/tracker.rs (+628/-0) vendor/gix-diff/src/tree/changes.rs (+377/-0) vendor/gix-diff/src/tree/mod.rs (+57/-0) vendor/gix-diff/src/tree/recorder.rs (+157/-0) vendor/gix-diff/src/tree/visit.rs (+147/-0) vendor/gix-dir/.cargo-checksum.json (+1/-0) vendor/gix-dir/CHANGELOG.md (+279/-0) vendor/gix-dir/Cargo.toml (+81/-0) vendor/gix-dir/LICENSE-APACHE (+189/-0) vendor/gix-dir/LICENSE-MIT (+17/-0) vendor/gix-dir/src/entry.rs (+218/-0) vendor/gix-dir/src/lib.rs (+68/-0) vendor/gix-dir/src/walk/classify.rs (+424/-0) vendor/gix-dir/src/walk/function.rs (+205/-0) vendor/gix-dir/src/walk/mod.rs (+307/-0) vendor/gix-dir/src/walk/readdir.rs (+401/-0) vendor/gix-dir/tests/dir.rs (+4/-0) vendor/gix-dir/tests/dir_walk_cwd.rs (+36/-0) vendor/gix-dir/tests/fixtures/many-symlinks.sh (+45/-0) vendor/gix-dir/tests/fixtures/many.sh (+433/-0) vendor/gix-dir/tests/walk/mod.rs (+4436/-0) vendor/gix-dir/tests/walk_utils/mod.rs (+381/-0) vendor/gix-discover/.cargo-checksum.json (+1/-0) vendor/gix-discover/Cargo.toml (+77/-0) vendor/gix-discover/LICENSE-APACHE (+189/-0) vendor/gix-discover/LICENSE-MIT (+17/-0) vendor/gix-discover/src/is.rs (+263/-0) vendor/gix-discover/src/lib.rs (+61/-0) vendor/gix-discover/src/parse.rs (+34/-0) vendor/gix-discover/src/path.rs (+68/-0) vendor/gix-discover/src/repository.rs (+144/-0) vendor/gix-discover/src/upwards/mod.rs (+204/-0) vendor/gix-discover/src/upwards/types.rs (+197/-0) vendor/gix-discover/src/upwards/util.rs (+78/-0) vendor/gix-features/.cargo-checksum.json (+1/-0) vendor/gix-features/Cargo.toml (+172/-0) vendor/gix-features/LICENSE-APACHE (+189/-0) vendor/gix-features/LICENSE-MIT (+17/-0) vendor/gix-features/src/cache.rs (+76/-0) vendor/gix-features/src/decode.rs (+38/-0) vendor/gix-features/src/fs.rs (+372/-0) vendor/gix-features/src/hash.rs (+204/-0) vendor/gix-features/src/interrupt.rs (+161/-0) vendor/gix-features/src/io.rs (+94/-0) vendor/gix-features/src/lib.rs (+70/-0) vendor/gix-features/src/parallel/eager_iter.rs (+124/-0) vendor/gix-features/src/parallel/in_order.rs (+83/-0) vendor/gix-features/src/parallel/in_parallel.rs (+302/-0) vendor/gix-features/src/parallel/mod.rs (+179/-0) vendor/gix-features/src/parallel/reduce.rs (+279/-0) vendor/gix-features/src/parallel/serial.rs (+174/-0) vendor/gix-features/src/progress.rs (+150/-0) vendor/gix-features/src/threading.rs (+110/-0) vendor/gix-features/src/zlib/mod.rs (+53/-0) vendor/gix-features/src/zlib/stream/deflate/mod.rs (+113/-0) vendor/gix-features/src/zlib/stream/deflate/tests.rs (+101/-0) vendor/gix-features/src/zlib/stream/inflate.rs (+40/-0) vendor/gix-features/src/zlib/stream/mod.rs (+6/-0) vendor/gix-filter/.cargo-checksum.json (+1/-0) vendor/gix-filter/Cargo.toml (+81/-0) vendor/gix-filter/LICENSE-APACHE (+189/-0) vendor/gix-filter/LICENSE-MIT (+17/-0) vendor/gix-filter/src/driver/apply.rs (+243/-0) vendor/gix-filter/src/driver/delayed.rs (+158/-0) vendor/gix-filter/src/driver/init.rs (+112/-0) vendor/gix-filter/src/driver/mod.rs (+119/-0) vendor/gix-filter/src/driver/process/client.rs (+313/-0) vendor/gix-filter/src/driver/process/mod.rs (+115/-0) vendor/gix-filter/src/driver/process/server.rs (+285/-0) vendor/gix-filter/src/driver/shutdown.rs (+35/-0) vendor/gix-filter/src/eol/convert_to_git.rs (+163/-0) vendor/gix-filter/src/eol/convert_to_worktree.rs (+48/-0) vendor/gix-filter/src/eol/mod.rs (+96/-0) vendor/gix-filter/src/eol/utils.rs (+124/-0) vendor/gix-filter/src/ident.rs (+81/-0) vendor/gix-filter/src/lib.rs (+84/-0) vendor/gix-filter/src/pipeline/convert.rs (+354/-0) vendor/gix-filter/src/pipeline/mod.rs (+116/-0) vendor/gix-filter/src/pipeline/util.rs (+158/-0) vendor/gix-filter/src/worktree/encode_to_git.rs (+81/-0) vendor/gix-filter/src/worktree/encode_to_worktree.rs (+60/-0) vendor/gix-filter/src/worktree/encoding.rs (+32/-0) vendor/gix-filter/src/worktree/mod.rs (+19/-0) vendor/gix-fs/.cargo-checksum.json (+1/-0) vendor/gix-fs/Cargo.toml (+65/-0) vendor/gix-fs/LICENSE-APACHE (+189/-0) vendor/gix-fs/LICENSE-MIT (+17/-0) vendor/gix-fs/src/capabilities.rs (+116/-0) vendor/gix-fs/src/dir/create.rs (+202/-0) vendor/gix-fs/src/dir/mod.rs (+6/-0) vendor/gix-fs/src/dir/remove.rs (+107/-0) vendor/gix-fs/src/lib.rs (+97/-0) vendor/gix-fs/src/read_dir.rs (+15/-0) vendor/gix-fs/src/snapshot.rs (+153/-0) vendor/gix-fs/src/stack.rs (+131/-0) vendor/gix-fs/src/symlink.rs (+67/-0) vendor/gix-glob/.cargo-checksum.json (+1/-0) vendor/gix-glob/Cargo.toml (+72/-0) vendor/gix-glob/LICENSE-APACHE (+189/-0) vendor/gix-glob/LICENSE-MIT (+17/-0) vendor/gix-glob/src/lib.rs (+45/-0) vendor/gix-glob/src/parse.rs (+55/-0) vendor/gix-glob/src/pattern.rs (+181/-0) vendor/gix-glob/src/search/mod.rs (+35/-0) vendor/gix-glob/src/search/pattern.rs (+165/-0) vendor/gix-glob/src/wildmatch.rs (+372/-0) vendor/gix-hash/.cargo-checksum.json (+1/-0) vendor/gix-hash/Cargo.toml (+54/-0) vendor/gix-hash/LICENSE-APACHE (+189/-0) vendor/gix-hash/LICENSE-MIT (+17/-0) vendor/gix-hash/src/kind.rs (+116/-0) vendor/gix-hash/src/lib.rs (+46/-0) vendor/gix-hash/src/object_id.rs (+256/-0) vendor/gix-hash/src/oid.rs (+288/-0) vendor/gix-hash/src/prefix.rs (+155/-0) vendor/gix-hashtable/.cargo-checksum.json (+1/-0) vendor/gix-hashtable/Cargo.toml (+41/-0) vendor/gix-hashtable/LICENSE-APACHE (+189/-0) vendor/gix-hashtable/LICENSE-MIT (+17/-0) vendor/gix-hashtable/src/lib.rs (+97/-0) vendor/gix-ignore/.cargo-checksum.json (+1/-0) vendor/gix-ignore/Cargo.toml (+78/-0) vendor/gix-ignore/LICENSE-APACHE (+189/-0) vendor/gix-ignore/LICENSE-MIT (+17/-0) vendor/gix-ignore/src/lib.rs (+55/-0) vendor/gix-ignore/src/parse.rs (+89/-0) vendor/gix-ignore/src/search.rs (+181/-0) vendor/gix-index/.cargo-checksum.json (+1/-0) vendor/gix-index/Cargo.toml (+130/-0) vendor/gix-index/LICENSE-APACHE (+189/-0) vendor/gix-index/LICENSE-MIT (+17/-0) vendor/gix-index/README.md (+11/-0) vendor/gix-index/src/access/mod.rs (+604/-0) vendor/gix-index/src/access/sparse.rs (+59/-0) vendor/gix-index/src/decode/entries.rs (+183/-0) vendor/gix-index/src/decode/header.rs (+46/-0) vendor/gix-index/src/decode/mod.rs (+330/-0) vendor/gix-index/src/entry/flags.rs (+164/-0) vendor/gix-index/src/entry/mod.rs (+134/-0) vendor/gix-index/src/entry/mode.rs (+100/-0) vendor/gix-index/src/entry/stat.rs (+201/-0) vendor/gix-index/src/entry/write.rs (+37/-0) vendor/gix-index/src/extension/decode.rs (+84/-0) vendor/gix-index/src/extension/end_of_index_entry/decode.rs (+53/-0) vendor/gix-index/src/extension/end_of_index_entry/mod.rs (+14/-0) vendor/gix-index/src/extension/end_of_index_entry/write.rs (+29/-0) vendor/gix-index/src/extension/fs_monitor.rs (+39/-0) vendor/gix-index/src/extension/index_entry_offset_table.rs (+43/-0) vendor/gix-index/src/extension/iter.rs (+56/-0) vendor/gix-index/src/extension/link.rs (+180/-0) vendor/gix-index/src/extension/mod.rs (+102/-0) vendor/gix-index/src/extension/resolve_undo.rs (+64/-0) vendor/gix-index/src/extension/sparse.rs (+11/-0) vendor/gix-index/src/extension/tree/decode.rs (+61/-0) vendor/gix-index/src/extension/tree/mod.rs (+22/-0) vendor/gix-index/src/extension/tree/verify.rs (+128/-0) vendor/gix-index/src/extension/tree/write.rs (+43/-0) vendor/gix-index/src/extension/untracked_cache.rs (+154/-0) vendor/gix-index/src/file/init.rs (+117/-0) vendor/gix-index/src/file/mod.rs (+93/-0) vendor/gix-index/src/file/verify.rs (+43/-0) vendor/gix-index/src/file/write.rs (+58/-0) vendor/gix-index/src/fs.rs (+217/-0) vendor/gix-index/src/init.rs (+219/-0) vendor/gix-index/src/lib.rs (+255/-0) vendor/gix-index/src/verify.rs (+68/-0) vendor/gix-index/src/write.rs (+222/-0) vendor/gix-lock/.cargo-checksum.json (+1/-0) vendor/gix-lock/Cargo.toml (+51/-0) vendor/gix-lock/LICENSE-APACHE (+189/-0) vendor/gix-lock/LICENSE-MIT (+17/-0) vendor/gix-lock/README.md (+5/-0) vendor/gix-lock/src/acquire.rs (+242/-0) vendor/gix-lock/src/commit.rs (+79/-0) vendor/gix-lock/src/file.rs (+78/-0) vendor/gix-lock/src/lib.rs (+59/-0) vendor/gix-macros/.cargo-checksum.json (+1/-0) vendor/gix-macros/Cargo.toml (+55/-0) vendor/gix-macros/LICENSE-APACHE (+189/-0) vendor/gix-macros/LICENSE-MIT (+17/-0) vendor/gix-macros/src/lib.rs (+25/-0) vendor/gix-macros/src/momo.rs (+300/-0) vendor/gix-negotiate/.cargo-checksum.json (+1/-0) vendor/gix-negotiate/Cargo.toml (+62/-0) vendor/gix-negotiate/LICENSE-APACHE (+189/-0) vendor/gix-negotiate/LICENSE-MIT (+17/-0) vendor/gix-negotiate/src/consecutive.rs (+167/-0) vendor/gix-negotiate/src/lib.rs (+147/-0) vendor/gix-negotiate/src/noop.rs (+23/-0) vendor/gix-negotiate/src/skipping.rs (+182/-0) vendor/gix-object/.cargo-checksum.json (+1/-0) vendor/gix-object/Cargo.toml (+109/-0) vendor/gix-object/LICENSE-APACHE (+189/-0) vendor/gix-object/LICENSE-MIT (+17/-0) vendor/gix-object/src/blob.rs (+47/-0) vendor/gix-object/src/commit/decode.rs (+77/-0) vendor/gix-object/src/commit/message/body.rs (+153/-0) vendor/gix-object/src/commit/message/decode.rs (+49/-0) vendor/gix-object/src/commit/message/mod.rs (+101/-0) vendor/gix-object/src/commit/mod.rs (+161/-0) vendor/gix-object/src/commit/ref_iter.rs (+357/-0) vendor/gix-object/src/commit/write.rs (+97/-0) vendor/gix-object/src/data.rs (+94/-0) vendor/gix-object/src/encode.rs (+88/-0) vendor/gix-object/src/find.rs (+88/-0) vendor/gix-object/src/kind.rs (+64/-0) vendor/gix-object/src/lib.rs (+432/-0) vendor/gix-object/src/object/convert.rs (+226/-0) vendor/gix-object/src/object/mod.rs (+298/-0) vendor/gix-object/src/parse.rs (+74/-0) vendor/gix-object/src/tag/decode.rs (+75/-0) vendor/gix-object/src/tag/mod.rs (+28/-0) vendor/gix-object/src/tag/ref_iter.rs (+172/-0) vendor/gix-object/src/tag/write.rs (+106/-0) vendor/gix-object/src/tag/write/tests.rs (+29/-0) vendor/gix-object/src/traits.rs (+303/-0) vendor/gix-object/src/tree/mod.rs (+233/-0) vendor/gix-object/src/tree/ref_iter.rs (+170/-0) vendor/gix-object/src/tree/write.rs (+117/-0) vendor/gix-odb/.cargo-checksum.json (+1/-0) vendor/gix-odb/Cargo.toml (+102/-0) vendor/gix-odb/LICENSE-APACHE (+189/-0) vendor/gix-odb/LICENSE-MIT (+17/-0) vendor/gix-odb/src/alternate/mod.rs (+71/-0) vendor/gix-odb/src/alternate/parse.rs (+33/-0) vendor/gix-odb/src/cache.rs (+240/-0) vendor/gix-odb/src/find.rs (+62/-0) vendor/gix-odb/src/lib.rs (+166/-0) vendor/gix-odb/src/sink.rs (+58/-0) vendor/gix-odb/src/store_impls/dynamic/access.rs (+24/-0) vendor/gix-odb/src/store_impls/dynamic/find.rs (+545/-0) vendor/gix-odb/src/store_impls/dynamic/handle.rs (+401/-0) vendor/gix-odb/src/store_impls/dynamic/header.rs (+193/-0) vendor/gix-odb/src/store_impls/dynamic/init.rs (+132/-0) vendor/gix-odb/src/store_impls/dynamic/iter.rs (+231/-0) vendor/gix-odb/src/store_impls/dynamic/load_index.rs (+735/-0) vendor/gix-odb/src/store_impls/dynamic/load_one.rs (+154/-0) vendor/gix-odb/src/store_impls/dynamic/metrics.rs (+80/-0) vendor/gix-odb/src/store_impls/dynamic/mod.rs (+96/-0) vendor/gix-odb/src/store_impls/dynamic/prefix.rs (+198/-0) vendor/gix-odb/src/store_impls/dynamic/structure.rs (+118/-0) vendor/gix-odb/src/store_impls/dynamic/types.rs (+460/-0) vendor/gix-odb/src/store_impls/dynamic/verify.rs (+270/-0) vendor/gix-odb/src/store_impls/dynamic/write.rs (+46/-0) vendor/gix-odb/src/store_impls/loose/find.rs (+266/-0) vendor/gix-odb/src/store_impls/loose/iter.rs (+82/-0) vendor/gix-odb/src/store_impls/loose/mod.rs (+70/-0) vendor/gix-odb/src/store_impls/loose/verify.rs (+104/-0) vendor/gix-odb/src/store_impls/loose/write.rs (+161/-0) vendor/gix-odb/src/store_impls/mod.rs (+2/-0) vendor/gix-odb/src/traits.rs (+138/-0) vendor/gix-pack/.cargo-checksum.json (+1/-0) vendor/gix-pack/Cargo.toml (+144/-0) vendor/gix-pack/LICENSE-APACHE (+189/-0) vendor/gix-pack/LICENSE-MIT (+17/-0) vendor/gix-pack/src/bundle/find.rs (+70/-0) vendor/gix-pack/src/bundle/init.rs (+46/-0) vendor/gix-pack/src/bundle/mod.rs (+59/-0) vendor/gix-pack/src/bundle/write/error.rs (+17/-0) vendor/gix-pack/src/bundle/write/mod.rs (+386/-0) vendor/gix-pack/src/bundle/write/types.rs (+122/-0) vendor/gix-pack/src/cache/delta/from_offsets.rs (+162/-0) vendor/gix-pack/src/cache/delta/mod.rs (+52/-0) vendor/gix-pack/src/cache/delta/traverse/mod.rs (+190/-0) vendor/gix-pack/src/cache/delta/traverse/resolve.rs (+468/-0) vendor/gix-pack/src/cache/delta/traverse/util.rs (+64/-0) vendor/gix-pack/src/cache/delta/tree.rs (+250/-0) vendor/gix-pack/src/cache/lru.rs (+239/-0) vendor/gix-pack/src/cache/mod.rs (+72/-0) vendor/gix-pack/src/cache/object.rs (+109/-0) vendor/gix-pack/src/data/delta.rs (+70/-0) vendor/gix-pack/src/data/entry/decode.rs (+134/-0) vendor/gix-pack/src/data/entry/header.rs (+150/-0) vendor/gix-pack/src/data/entry/mod.rs (+55/-0) vendor/gix-pack/src/data/file/decode/entry.rs (+432/-0) vendor/gix-pack/src/data/file/decode/header.rs (+120/-0) vendor/gix-pack/src/data/file/decode/mod.rs (+31/-0) vendor/gix-pack/src/data/file/init.rs (+41/-0) vendor/gix-pack/src/data/file/mod.rs (+11/-0) vendor/gix-pack/src/data/file/verify.rs (+43/-0) vendor/gix-pack/src/data/header.rs (+56/-0) vendor/gix-pack/src/data/input/bytes_to_entries.rs (+324/-0) vendor/gix-pack/src/data/input/entries_to_bytes.rs (+154/-0) vendor/gix-pack/src/data/input/entry.rs (+65/-0) vendor/gix-pack/src/data/input/lookup_ref_delta_objects.rs (+203/-0) vendor/gix-pack/src/data/input/mod.rs (+41/-0) vendor/gix-pack/src/data/input/types.rs (+73/-0) vendor/gix-pack/src/data/mod.rs (+134/-0) vendor/gix-pack/src/data/output/bytes.rs (+156/-0) vendor/gix-pack/src/data/output/count/mod.rs (+50/-0) vendor/gix-pack/src/data/output/count/objects/mod.rs (+435/-0) vendor/gix-pack/src/data/output/count/objects/reduce.rs (+40/-0) vendor/gix-pack/src/data/output/count/objects/tree.rs (+120/-0) vendor/gix-pack/src/data/output/count/objects/types.rs (+96/-0) vendor/gix-pack/src/data/output/count/objects/util.rs (+24/-0) vendor/gix-pack/src/data/output/entry/iter_from_counts.rs (+432/-0) vendor/gix-pack/src/data/output/entry/mod.rs (+187/-0) vendor/gix-pack/src/data/output/mod.rs (+44/-0) vendor/gix-pack/src/find.rs (+12/-0) vendor/gix-pack/src/find_traits.rs (+288/-0) vendor/gix-pack/src/index/access.rs (+294/-0) vendor/gix-pack/src/index/encode.rs (+158/-0) vendor/gix-pack/src/index/init.rs (+93/-0) vendor/gix-pack/src/index/mod.rs (+155/-0) vendor/gix-pack/src/index/traverse/error.rs (+46/-0) vendor/gix-pack/src/index/traverse/mod.rs (+237/-0) vendor/gix-pack/src/index/traverse/reduce.rs (+129/-0) vendor/gix-pack/src/index/traverse/types.rs (+113/-0) vendor/gix-pack/src/index/traverse/with_index.rs (+231/-0) vendor/gix-pack/src/index/traverse/with_lookup.rs (+192/-0) vendor/gix-pack/src/index/util.rs (+21/-0) vendor/gix-pack/src/index/verify.rs (+271/-0) vendor/gix-pack/src/index/write/error.rs (+25/-0) vendor/gix-pack/src/index/write/mod.rs (+260/-0) vendor/gix-pack/src/lib.rs (+78/-0) vendor/gix-pack/src/multi_index/access.rs (+143/-0) vendor/gix-pack/src/multi_index/chunk.rs (+275/-0) vendor/gix-pack/src/multi_index/init.rs (+157/-0) vendor/gix-pack/src/multi_index/mod.rs (+57/-0) vendor/gix-pack/src/multi_index/verify.rs (+332/-0) vendor/gix-pack/src/multi_index/write.rs (+238/-0) vendor/gix-pack/src/verify.rs (+65/-0) vendor/gix-packetline-blocking/.cargo-checksum.json (+1/-0) vendor/gix-packetline-blocking/Cargo.toml (+79/-0) vendor/gix-packetline-blocking/LICENSE-APACHE (+189/-0) vendor/gix-packetline-blocking/LICENSE-MIT (+17/-0) vendor/gix-packetline-blocking/src/decode.rs (+148/-0) vendor/gix-packetline-blocking/src/encode/async_io.rs (+215/-0) vendor/gix-packetline-blocking/src/encode/blocking_io.rs (+78/-0) vendor/gix-packetline-blocking/src/encode/mod.rs (+29/-0) vendor/gix-packetline-blocking/src/lib.rs (+110/-0) vendor/gix-packetline-blocking/src/line/async_io.rs (+49/-0) vendor/gix-packetline-blocking/src/line/blocking_io.rs (+46/-0) vendor/gix-packetline-blocking/src/line/mod.rs (+90/-0) vendor/gix-packetline-blocking/src/read/async_io.rs (+201/-0) vendor/gix-packetline-blocking/src/read/blocking_io.rs (+192/-0) vendor/gix-packetline-blocking/src/read/mod.rs (+130/-0) vendor/gix-packetline-blocking/src/read/sidebands/async_io.rs (+383/-0) vendor/gix-packetline-blocking/src/read/sidebands/blocking_io.rs (+218/-0) vendor/gix-packetline-blocking/src/read/sidebands/mod.rs (+11/-0) vendor/gix-packetline-blocking/src/write/async_io.rs (+99/-0) vendor/gix-packetline-blocking/src/write/blocking_io.rs (+73/-0) vendor/gix-packetline-blocking/src/write/mod.rs (+23/-0) vendor/gix-packetline/.cargo-checksum.json (+1/-0) vendor/gix-packetline/Cargo.toml (+104/-0) vendor/gix-packetline/LICENSE-APACHE (+189/-0) vendor/gix-packetline/LICENSE-MIT (+17/-0) vendor/gix-packetline/src/decode.rs (+146/-0) vendor/gix-packetline/src/encode/async_io.rs (+213/-0) vendor/gix-packetline/src/encode/blocking_io.rs (+76/-0) vendor/gix-packetline/src/encode/mod.rs (+27/-0) vendor/gix-packetline/src/lib.rs (+108/-0) vendor/gix-packetline/src/line/async_io.rs (+47/-0) vendor/gix-packetline/src/line/blocking_io.rs (+44/-0) vendor/gix-packetline/src/line/mod.rs (+88/-0) vendor/gix-packetline/src/read/async_io.rs (+199/-0) vendor/gix-packetline/src/read/blocking_io.rs (+190/-0) vendor/gix-packetline/src/read/mod.rs (+128/-0) vendor/gix-packetline/src/read/sidebands/async_io.rs (+381/-0) vendor/gix-packetline/src/read/sidebands/blocking_io.rs (+216/-0) vendor/gix-packetline/src/read/sidebands/mod.rs (+9/-0) vendor/gix-packetline/src/write/async_io.rs (+97/-0) vendor/gix-packetline/src/write/blocking_io.rs (+71/-0) vendor/gix-packetline/src/write/mod.rs (+21/-0) vendor/gix-path/.cargo-checksum.json (+1/-0) vendor/gix-path/Cargo.toml (+140/-0) vendor/gix-path/LICENSE-APACHE (+189/-0) vendor/gix-path/LICENSE-MIT (+17/-0) vendor/gix-path/src/convert.rs (+336/-0) vendor/gix-path/src/env/git/mod.rs (+187/-0) vendor/gix-path/src/env/git/tests.rs (+606/-0) vendor/gix-path/src/env/mod.rs (+163/-0) vendor/gix-path/src/lib.rs (+64/-0) vendor/gix-path/src/realpath.rs (+101/-0) vendor/gix-path/src/util.rs (+8/-0) vendor/gix-pathspec/.cargo-checksum.json (+1/-0) vendor/gix-pathspec/Cargo.toml (+65/-0) vendor/gix-pathspec/LICENSE-APACHE (+189/-0) vendor/gix-pathspec/LICENSE-MIT (+17/-0) vendor/gix-pathspec/README.md (+16/-0) vendor/gix-pathspec/src/defaults.rs (+71/-0) vendor/gix-pathspec/src/lib.rs (+147/-0) vendor/gix-pathspec/src/parse.rs (+263/-0) vendor/gix-pathspec/src/pattern.rs (+201/-0) vendor/gix-pathspec/src/search/init.rs (+146/-0) vendor/gix-pathspec/src/search/matching.rs (+281/-0) vendor/gix-pathspec/src/search/mod.rs (+107/-0) vendor/gix-prompt/.cargo-checksum.json (+1/-0) vendor/gix-prompt/Cargo.toml (+59/-0) vendor/gix-prompt/LICENSE-APACHE (+189/-0) vendor/gix-prompt/LICENSE-MIT (+17/-0) vendor/gix-prompt/README.md (+4/-0) vendor/gix-prompt/src/lib.rs (+77/-0) vendor/gix-prompt/src/types.rs (+79/-0) vendor/gix-prompt/src/unix.rs (+123/-0) vendor/gix-protocol/.cargo-checksum.json (+1/-0) vendor/gix-protocol/Cargo.toml (+129/-0) vendor/gix-protocol/LICENSE-APACHE (+189/-0) vendor/gix-protocol/LICENSE-MIT (+17/-0) vendor/gix-protocol/src/command/mod.rs (+214/-0) vendor/gix-protocol/src/command/tests.rs (+156/-0) vendor/gix-protocol/src/fetch/arguments/async_io.rs (+59/-0) vendor/gix-protocol/src/fetch/arguments/blocking_io.rs (+58/-0) vendor/gix-protocol/src/fetch/arguments/mod.rs (+292/-0) vendor/gix-protocol/src/fetch/delegate.rs (+313/-0) vendor/gix-protocol/src/fetch/error.rs (+21/-0) vendor/gix-protocol/src/fetch/handshake.rs (+27/-0) vendor/gix-protocol/src/fetch/mod.rs (+22/-0) vendor/gix-protocol/src/fetch/response/async_io.rs (+160/-0) vendor/gix-protocol/src/fetch/response/blocking_io.rs (+156/-0) vendor/gix-protocol/src/fetch/response/mod.rs (+244/-0) vendor/gix-protocol/src/fetch/tests.rs (+416/-0) vendor/gix-protocol/src/fetch_fn.rs (+182/-0) vendor/gix-protocol/src/handshake/function.rs (+103/-0) vendor/gix-protocol/src/handshake/mod.rs (+102/-0) vendor/gix-protocol/src/handshake/refs/async_io.rs (+43/-0) vendor/gix-protocol/src/handshake/refs/blocking_io.rs (+31/-0) vendor/gix-protocol/src/handshake/refs/mod.rs (+80/-0) vendor/gix-protocol/src/handshake/refs/shared.rs (+278/-0) vendor/gix-protocol/src/handshake/refs/tests.rs (+259/-0) vendor/gix-protocol/src/lib.rs (+67/-0) vendor/gix-protocol/src/ls_refs.rs (+114/-0) vendor/gix-protocol/src/remote_progress.rs (+106/-0) vendor/gix-protocol/src/util.rs (+30/-0) vendor/gix-quote/.cargo-checksum.json (+1/-0) vendor/gix-quote/Cargo.toml (+38/-0) vendor/gix-quote/LICENSE-APACHE (+189/-0) vendor/gix-quote/LICENSE-MIT (+17/-0) vendor/gix-quote/src/ansi_c.rs (+118/-0) vendor/gix-quote/src/lib.rs (+10/-0) vendor/gix-quote/src/single.rs (+22/-0) vendor/gix-ref/.cargo-checksum.json (+1/-0) vendor/gix-ref/Cargo.toml (+105/-0) vendor/gix-ref/LICENSE-APACHE (+189/-0) vendor/gix-ref/LICENSE-MIT (+17/-0) vendor/gix-ref/src/fullname.rs (+239/-0) vendor/gix-ref/src/lib.rs (+217/-0) vendor/gix-ref/src/log.rs (+16/-0) vendor/gix-ref/src/name.rs (+268/-0) vendor/gix-ref/src/namespace.rs (+48/-0) vendor/gix-ref/src/parse.rs (+22/-0) vendor/gix-ref/src/peel.rs (+25/-0) vendor/gix-ref/src/raw.rs (+105/-0) vendor/gix-ref/src/store/file/find.rs (+400/-0) vendor/gix-ref/src/store/file/log/iter.rs (+247/-0) vendor/gix-ref/src/store/file/log/line.rs (+297/-0) vendor/gix-ref/src/store/file/log/mod.rs (+23/-0) vendor/gix-ref/src/store/file/loose/iter.rs (+99/-0) vendor/gix-ref/src/store/file/loose/mod.rs (+100/-0) vendor/gix-ref/src/store/file/loose/reference/decode.rs (+79/-0) vendor/gix-ref/src/store/file/loose/reference/logiter.rs (+47/-0) vendor/gix-ref/src/store/file/loose/reference/mod.rs (+5/-0) vendor/gix-ref/src/store/file/loose/reflog.rs (+245/-0) vendor/gix-ref/src/store/file/loose/reflog/create_or_update/tests.rs (+159/-0) vendor/gix-ref/src/store/file/mod.rs (+134/-0) vendor/gix-ref/src/store/file/overlay_iter.rs (+459/-0) vendor/gix-ref/src/store/file/packed.rs (+109/-0) vendor/gix-ref/src/store/file/raw_ext.rs (+179/-0) vendor/gix-ref/src/store/file/transaction/commit.rs (+204/-0) vendor/gix-ref/src/store/file/transaction/mod.rs (+103/-0) vendor/gix-ref/src/store/file/transaction/prepare.rs (+492/-0) vendor/gix-ref/src/store/general/handle/find.rs (+78/-0) vendor/gix-ref/src/store/general/handle/mod.rs (+44/-0) vendor/gix-ref/src/store/general/init.rs (+33/-0) vendor/gix-ref/src/store/general/mod.rs (+1/-0) vendor/gix-ref/src/store/mod.rs (+7/-0) vendor/gix-ref/src/store/packed/buffer.rs (+119/-0) vendor/gix-ref/src/store/packed/decode.rs (+81/-0) vendor/gix-ref/src/store/packed/decode/tests.rs (+135/-0) vendor/gix-ref/src/store/packed/find.rs (+158/-0) vendor/gix-ref/src/store/packed/iter.rs (+125/-0) vendor/gix-ref/src/store/packed/mod.rs (+100/-0) vendor/gix-ref/src/store/packed/transaction.rs (+305/-0) vendor/gix-ref/src/target.rs (+154/-0) vendor/gix-ref/src/transaction/ext.rs (+133/-0) vendor/gix-ref/src/transaction/mod.rs (+134/-0) vendor/gix-refspec/.cargo-checksum.json (+1/-0) vendor/gix-refspec/Cargo.toml (+59/-0) vendor/gix-refspec/LICENSE-APACHE (+189/-0) vendor/gix-refspec/LICENSE-MIT (+17/-0) vendor/gix-refspec/README.md (+11/-0) vendor/gix-refspec/src/instruction.rs (+68/-0) vendor/gix-refspec/src/lib.rs (+42/-0) vendor/gix-refspec/src/match_group/mod.rs (+121/-0) vendor/gix-refspec/src/match_group/types.rs (+104/-0) vendor/gix-refspec/src/match_group/util.rs (+160/-0) vendor/gix-refspec/src/match_group/validate.rs (+141/-0) vendor/gix-refspec/src/parse.rs (+247/-0) vendor/gix-refspec/src/spec.rs (+257/-0) vendor/gix-refspec/src/types.rs (+21/-0) vendor/gix-refspec/src/write.rs (+74/-0) vendor/gix-revision/.cargo-checksum.json (+1/-0) vendor/gix-revision/Cargo.toml (+92/-0) vendor/gix-revision/LICENSE-APACHE (+189/-0) vendor/gix-revision/LICENSE-MIT (+17/-0) vendor/gix-revision/README.md (+11/-0) vendor/gix-revision/src/describe.rs (+365/-0) vendor/gix-revision/src/lib.rs (+22/-0) vendor/gix-revision/src/spec/mod.rs (+110/-0) vendor/gix-revision/src/spec/parse/delegate.rs (+156/-0) vendor/gix-revision/src/spec/parse/function.rs (+643/-0) vendor/gix-revision/src/spec/parse/mod.rs (+65/-0) vendor/gix-revwalk/.cargo-checksum.json (+1/-0) vendor/gix-revwalk/Cargo.toml (+56/-0) vendor/gix-revwalk/LICENSE-APACHE (+189/-0) vendor/gix-revwalk/LICENSE-MIT (+17/-0) vendor/gix-revwalk/src/graph/commit.rs (+153/-0) vendor/gix-revwalk/src/graph/mod.rs (+357/-0) vendor/gix-revwalk/src/lib.rs (+51/-0) vendor/gix-revwalk/src/queue.rs (+124/-0) vendor/gix-sec/.cargo-checksum.json (+1/-0) vendor/gix-sec/Cargo.toml (+80/-0) vendor/gix-sec/LICENSE-APACHE (+189/-0) vendor/gix-sec/LICENSE-MIT (+17/-0) vendor/gix-sec/src/identity.rs (+209/-0) vendor/gix-sec/src/lib.rs (+63/-0) vendor/gix-sec/src/permission.rs (+54/-0) vendor/gix-sec/src/trust.rs (+56/-0) vendor/gix-submodule/.cargo-checksum.json (+1/-0) vendor/gix-submodule/Cargo.toml (+59/-0) vendor/gix-submodule/LICENSE-APACHE (+189/-0) vendor/gix-submodule/LICENSE-MIT (+17/-0) vendor/gix-submodule/src/access.rs (+248/-0) vendor/gix-submodule/src/config.rs (+218/-0) vendor/gix-submodule/src/is_active_platform.rs (+49/-0) vendor/gix-submodule/src/lib.rs (+147/-0) vendor/gix-tempfile/.cargo-checksum.json (+1/-0) vendor/gix-tempfile/Cargo.toml (+87/-0) vendor/gix-tempfile/LICENSE-APACHE (+189/-0) vendor/gix-tempfile/LICENSE-MIT (+17/-0) vendor/gix-tempfile/README.md (+12/-0) vendor/gix-tempfile/src/forksafe.rs (+111/-0) vendor/gix-tempfile/src/handle.rs (+365/-0) vendor/gix-tempfile/src/lib.rs (+238/-0) vendor/gix-tempfile/src/registry.rs (+68/-0) vendor/gix-tempfile/src/signal.rs (+102/-0) vendor/gix-trace/.cargo-checksum.json (+1/-0) vendor/gix-trace/Cargo.toml (+127/-0) vendor/gix-trace/LICENSE-APACHE (+189/-0) vendor/gix-trace/LICENSE-MIT (+17/-0) vendor/gix-trace/src/disabled.rs (+105/-0) vendor/gix-trace/src/enabled.rs (+438/-0) vendor/gix-trace/src/lib.rs (+632/-0) vendor/gix-transport/.cargo-checksum.json (+1/-0) vendor/gix-transport/Cargo.toml (+182/-0) vendor/gix-transport/LICENSE-APACHE (+189/-0) vendor/gix-transport/LICENSE-MIT (+17/-0) vendor/gix-transport/src/client/async_io/bufread_ext.rs (+143/-0) vendor/gix-transport/src/client/async_io/connect.rs (+46/-0) vendor/gix-transport/src/client/async_io/mod.rs (+14/-0) vendor/gix-transport/src/client/async_io/request.rs (+130/-0) vendor/gix-transport/src/client/async_io/traits.rs (+117/-0) vendor/gix-transport/src/client/blocking_io/bufread_ext.rs (+131/-0) vendor/gix-transport/src/client/blocking_io/connect.rs (+66/-0) vendor/gix-transport/src/client/blocking_io/file.rs (+333/-0) vendor/gix-transport/src/client/blocking_io/http/curl/mod.rs (+169/-0) vendor/gix-transport/src/client/blocking_io/http/curl/remote.rs (+396/-0) vendor/gix-transport/src/client/blocking_io/http/mod.rs (+558/-0) vendor/gix-transport/src/client/blocking_io/http/redirect.rs (+66/-0) vendor/gix-transport/src/client/blocking_io/http/reqwest/mod.rs (+29/-0) vendor/gix-transport/src/client/blocking_io/http/reqwest/remote.rs (+327/-0) vendor/gix-transport/src/client/blocking_io/http/traits.rs (+133/-0) vendor/gix-transport/src/client/blocking_io/mod.rs (+23/-0) vendor/gix-transport/src/client/blocking_io/request.rs (+111/-0) vendor/gix-transport/src/client/blocking_io/ssh/mod.rs (+150/-0) vendor/gix-transport/src/client/blocking_io/ssh/program_kind.rs (+136/-0) vendor/gix-transport/src/client/blocking_io/ssh/tests.rs (+349/-0) vendor/gix-transport/src/client/blocking_io/traits.rs (+105/-0) vendor/gix-transport/src/client/capabilities.rs (+336/-0) vendor/gix-transport/src/client/git/async_io.rs (+158/-0) vendor/gix-transport/src/client/git/blocking_io.rs (+209/-0) vendor/gix-transport/src/client/git/mod.rs (+192/-0) vendor/gix-transport/src/client/mod.rs (+37/-0) vendor/gix-transport/src/client/non_io_types.rs (+158/-0) vendor/gix-transport/src/client/traits.rs (+131/-0) vendor/gix-transport/src/lib.rs (+93/-0) vendor/gix-traverse/.cargo-checksum.json (+1/-0) vendor/gix-traverse/Cargo.toml (+62/-0) vendor/gix-traverse/LICENSE-APACHE (+189/-0) vendor/gix-traverse/LICENSE-MIT (+17/-0) vendor/gix-traverse/src/commit/mod.rs (+88/-0) vendor/gix-traverse/src/commit/simple.rs (+426/-0) vendor/gix-traverse/src/commit/topo/init.rs (+174/-0) vendor/gix-traverse/src/commit/topo/iter.rs (+312/-0) vendor/gix-traverse/src/commit/topo/mod.rs (+73/-0) vendor/gix-traverse/src/lib.rs (+8/-0) vendor/gix-traverse/src/tree/breadthfirst.rs (+100/-0) vendor/gix-traverse/src/tree/mod.rs (+72/-0) vendor/gix-traverse/src/tree/recorder.rs (+139/-0) vendor/gix-url/.cargo-checksum.json (+1/-0) vendor/gix-url/Cargo.toml (+82/-0) vendor/gix-url/LICENSE-APACHE (+189/-0) vendor/gix-url/LICENSE-MIT (+17/-0) vendor/gix-url/src/expand_path.rs (+114/-0) vendor/gix-url/src/impls.rs (+91/-0) vendor/gix-url/src/lib.rs (+409/-0) vendor/gix-url/src/parse.rs (+263/-0) vendor/gix-url/src/scheme.rs (+57/-0) vendor/gix-utils/.cargo-checksum.json (+1/-0) vendor/gix-utils/Cargo.toml (+43/-0) vendor/gix-utils/LICENSE-APACHE (+189/-0) vendor/gix-utils/LICENSE-MIT (+17/-0) vendor/gix-utils/src/backoff.rs (+82/-0) vendor/gix-utils/src/btoi.rs (+310/-0) vendor/gix-utils/src/buffers.rs (+54/-0) vendor/gix-utils/src/lib.rs (+35/-0) vendor/gix-utils/src/str.rs (+68/-0) vendor/gix-validate/.cargo-checksum.json (+1/-0) vendor/gix-validate/Cargo.toml (+46/-0) vendor/gix-validate/LICENSE-APACHE (+189/-0) vendor/gix-validate/LICENSE-MIT (+17/-0) vendor/gix-validate/src/lib.rs (+19/-0) vendor/gix-validate/src/path.rs (+336/-0) vendor/gix-validate/src/reference.rs (+76/-0) vendor/gix-validate/src/submodule.rs (+33/-0) vendor/gix-validate/src/tag.rs (+62/-0) vendor/gix-worktree/.cargo-checksum.json (+1/-0) vendor/gix-worktree/Cargo.toml (+103/-0) vendor/gix-worktree/LICENSE-APACHE (+189/-0) vendor/gix-worktree/LICENSE-MIT (+17/-0) vendor/gix-worktree/src/lib.rs (+66/-0) vendor/gix-worktree/src/stack/delegate.rs (+193/-0) vendor/gix-worktree/src/stack/mod.rs (+218/-0) vendor/gix-worktree/src/stack/platform.rs (+71/-0) vendor/gix-worktree/src/stack/state/attributes.rs (+250/-0) vendor/gix-worktree/src/stack/state/ignore.rs (+227/-0) vendor/gix-worktree/src/stack/state/mod.rs (+190/-0) vendor/gix/.cargo-checksum.json (+1/-0) vendor/gix/Cargo.toml (+467/-0) vendor/gix/LICENSE-APACHE (+189/-0) vendor/gix/LICENSE-MIT (+17/-0) vendor/gix/src/assets/init/HEAD (+1/-0) vendor/gix/src/assets/init/description (+1/-0) vendor/gix/src/assets/init/hooks/applypatch-msg.sample (+25/-0) vendor/gix/src/assets/init/hooks/commit-msg.sample (+25/-0) vendor/gix/src/assets/init/hooks/docs.url (+1/-0) vendor/gix/src/assets/init/hooks/fsmonitor-watchman.sample (+16/-0) vendor/gix/src/assets/init/hooks/post-update.sample (+12/-0) vendor/gix/src/assets/init/hooks/pre-applypatch.sample (+27/-0) vendor/gix/src/assets/init/hooks/pre-commit.sample (+19/-0) vendor/gix/src/assets/init/hooks/pre-merge-commit.sample (+16/-0) vendor/gix/src/assets/init/hooks/pre-push.sample (+46/-0) vendor/gix/src/assets/init/hooks/pre-rebase.sample (+40/-0) vendor/gix/src/assets/init/hooks/prepare-commit-msg.sample (+54/-0) vendor/gix/src/assets/init/info/exclude (+5/-0) vendor/gix/src/attribute_stack.rs (+61/-0) vendor/gix/src/clone/access.rs (+80/-0) vendor/gix/src/clone/checkout.rs (+186/-0) vendor/gix/src/clone/fetch/mod.rs (+242/-0) vendor/gix/src/clone/fetch/util.rs (+277/-0) vendor/gix/src/clone/mod.rs (+184/-0) vendor/gix/src/commit.rs (+250/-0) vendor/gix/src/config/cache/access.rs (+509/-0) vendor/gix/src/config/cache/incubate.rs (+159/-0) vendor/gix/src/config/cache/init.rs (+620/-0) vendor/gix/src/config/cache/mod.rs (+18/-0) vendor/gix/src/config/cache/util.rs (+174/-0) vendor/gix/src/config/mod.rs (+660/-0) vendor/gix/src/config/overrides.rs (+49/-0) vendor/gix/src/config/snapshot/_impls.rs (+76/-0) vendor/gix/src/config/snapshot/access.rs (+212/-0) vendor/gix/src/config/snapshot/credential_helpers.rs (+254/-0) vendor/gix/src/config/snapshot/mod.rs (+8/-0) vendor/gix/src/config/tree/keys.rs (+663/-0) vendor/gix/src/config/tree/mod.rs (+149/-0) vendor/gix/src/config/tree/sections/author.rs (+23/-0) vendor/gix/src/config/tree/sections/branch.rs (+66/-0) vendor/gix/src/config/tree/sections/checkout.rs (+59/-0) vendor/gix/src/config/tree/sections/clone.rs (+22/-0) vendor/gix/src/config/tree/sections/committer.rs (+23/-0) vendor/gix/src/config/tree/sections/core.rs (+531/-0) vendor/gix/src/config/tree/sections/credential.rs (+56/-0) vendor/gix/src/config/tree/sections/diff.rs (+198/-0) vendor/gix/src/config/tree/sections/extensions.rs (+59/-0) vendor/gix/src/config/tree/sections/fetch.rs (+102/-0) vendor/gix/src/config/tree/sections/gitoxide.rs (+559/-0) vendor/gix/src/config/tree/sections/http.rs (+321/-0) vendor/gix/src/config/tree/sections/index.rs (+67/-0) vendor/gix/src/config/tree/sections/init.rs (+20/-0) vendor/gix/src/config/tree/sections/mailmap.rs (+21/-0) vendor/gix/src/config/tree/sections/mod.rs (+124/-0) vendor/gix/src/config/tree/sections/pack.rs (+64/-0) vendor/gix/src/config/tree/sections/protocol.rs (+135/-0) vendor/gix/src/config/tree/sections/push.rs (+64/-0) vendor/gix/src/config/tree/sections/remote.rs (+101/-0) vendor/gix/src/config/tree/sections/safe.rs (+27/-0) vendor/gix/src/config/tree/sections/ssh.rs (+65/-0) vendor/gix/src/config/tree/sections/status.rs (+58/-0) vendor/gix/src/config/tree/sections/url.rs (+25/-0) vendor/gix/src/config/tree/sections/user.rs (+22/-0) vendor/gix/src/config/tree/traits.rs (+224/-0) vendor/gix/src/create.rs (+253/-0) vendor/gix/src/diff.rs (+137/-0) vendor/gix/src/dirwalk/iter.rs (+188/-0) vendor/gix/src/dirwalk/mod.rs (+91/-0) vendor/gix/src/dirwalk/options.rs (+186/-0) vendor/gix/src/discover.rs (+99/-0) vendor/gix/src/env.rs (+134/-0) vendor/gix/src/ext/mod.rs (+11/-0) vendor/gix/src/ext/object_id.rs (+31/-0) vendor/gix/src/ext/reference.rs (+11/-0) vendor/gix/src/ext/rev_spec.rs (+17/-0) vendor/gix/src/ext/tree.rs (+67/-0) vendor/gix/src/filter.rs (+231/-0) vendor/gix/src/head/log.rs (+33/-0) vendor/gix/src/head/mod.rs (+125/-0) vendor/gix/src/head/peel.rs (+162/-0) vendor/gix/src/id.rs (+208/-0) vendor/gix/src/init.rs (+105/-0) vendor/gix/src/interrupt.rs (+262/-0) vendor/gix/src/lib.rs (+357/-0) vendor/gix/src/mailmap.rs (+19/-0) vendor/gix/src/object/blob.rs (+269/-0) vendor/gix/src/object/commit.rs (+174/-0) vendor/gix/src/object/errors.rs (+42/-0) vendor/gix/src/object/impls.rs (+157/-0) vendor/gix/src/object/mod.rs (+249/-0) vendor/gix/src/object/peel.rs (+95/-0) vendor/gix/src/object/tag.rs (+50/-0) vendor/gix/src/object/tree/diff/change.rs (+98/-0) vendor/gix/src/object/tree/diff/for_each.rs (+351/-0) vendor/gix/src/object/tree/diff/mod.rs (+91/-0) vendor/gix/src/object/tree/iter.rs (+68/-0) vendor/gix/src/object/tree/mod.rs (+277/-0) vendor/gix/src/object/tree/traverse.rs (+55/-0) vendor/gix/src/open/mod.rs (+78/-0) vendor/gix/src/open/options.rs (+189/-0) vendor/gix/src/open/permissions.rs (+216/-0) vendor/gix/src/open/repository.rs (+415/-0) vendor/gix/src/path.rs (+11/-0) vendor/gix/src/pathspec.rs (+217/-0) vendor/gix/src/prelude.rs (+5/-0) vendor/gix/src/progress.rs (+3/-0) vendor/gix/src/push.rs (+21/-0) vendor/gix/src/reference/edits.rs (+79/-0) vendor/gix/src/reference/errors.rs (+107/-0) vendor/gix/src/reference/iter.rs (+125/-0) vendor/gix/src/reference/log.rs (+42/-0) vendor/gix/src/reference/mod.rs (+96/-0) vendor/gix/src/reference/remote.rs (+47/-0) vendor/gix/src/remote/access.rs (+105/-0) vendor/gix/src/remote/build.rs (+85/-0) vendor/gix/src/remote/connect.rs (+152/-0) vendor/gix/src/remote/connection/access.rs (+85/-0) vendor/gix/src/remote/connection/fetch/config.rs (+26/-0) vendor/gix/src/remote/connection/fetch/error.rs (+65/-0) vendor/gix/src/remote/connection/fetch/mod.rs (+296/-0) vendor/gix/src/remote/connection/fetch/negotiate.rs (+379/-0) vendor/gix/src/remote/connection/fetch/receive_pack.rs (+439/-0) vendor/gix/src/remote/connection/fetch/update_refs/mod.rs (+471/-0) vendor/gix/src/remote/connection/fetch/update_refs/tests.rs (+973/-0) vendor/gix/src/remote/connection/fetch/update_refs/update.rs (+153/-0) vendor/gix/src/remote/connection/mod.rs (+31/-0) vendor/gix/src/remote/connection/ref_map.rs (+276/-0) vendor/gix/src/remote/errors.rs (+67/-0) vendor/gix/src/remote/fetch.rs (+241/-0) vendor/gix/src/remote/init.rs (+125/-0) vendor/gix/src/remote/mod.rs (+67/-0) vendor/gix/src/remote/name.rs (+84/-0) vendor/gix/src/remote/save.rs (+128/-0) vendor/gix/src/remote/url/mod.rs (+7/-0) vendor/gix/src/remote/url/rewrite.rs (+100/-0) vendor/gix/src/remote/url/scheme_permission.rs (+120/-0) vendor/gix/src/repository/attributes.rs (+139/-0) vendor/gix/src/repository/cache.rs (+30/-0) vendor/gix/src/repository/config/branch.rs (+214/-0) vendor/gix/src/repository/config/mod.rs (+149/-0) vendor/gix/src/repository/config/remote.rs (+52/-0) vendor/gix/src/repository/config/transport.rs (+447/-0) vendor/gix/src/repository/diff.rs (+52/-0) vendor/gix/src/repository/dirwalk.rs (+106/-0) vendor/gix/src/repository/filter.rs (+65/-0) vendor/gix/src/repository/graph.rs (+34/-0) vendor/gix/src/repository/identity.rs (+173/-0) vendor/gix/src/repository/impls.rs (+89/-0) vendor/gix/src/repository/index.rs (+150/-0) vendor/gix/src/repository/init.rs (+62/-0) vendor/gix/src/repository/kind.rs (+23/-0) vendor/gix/src/repository/location.rs (+92/-0) vendor/gix/src/repository/mailmap.rs (+86/-0) vendor/gix/src/repository/mod.rs (+193/-0) vendor/gix/src/repository/object.rs (+354/-0) vendor/gix/src/repository/pathspec.rs (+58/-0) vendor/gix/src/repository/permissions.rs (+215/-0) vendor/gix/src/repository/reference.rs (+263/-0) vendor/gix/src/repository/remote.rs (+227/-0) vendor/gix/src/repository/revision.rs (+48/-0) vendor/gix/src/repository/shallow.rs (+65/-0) vendor/gix/src/repository/state.rs (+44/-0) vendor/gix/src/repository/submodule.rs (+96/-0) vendor/gix/src/repository/thread_safe.rs (+54/-0) vendor/gix/src/repository/worktree.rs (+141/-0) vendor/gix/src/revision/mod.rs (+34/-0) vendor/gix/src/revision/spec/mod.rs (+100/-0) vendor/gix/src/revision/spec/parse/delegate/mod.rs (+254/-0) vendor/gix/src/revision/spec/parse/delegate/navigate.rs (+353/-0) vendor/gix/src/revision/spec/parse/delegate/revision.rs (+267/-0) vendor/gix/src/revision/spec/parse/error.rs (+130/-0) vendor/gix/src/revision/spec/parse/mod.rs (+69/-0) vendor/gix/src/revision/spec/parse/types.rs (+192/-0) vendor/gix/src/revision/walk.rs (+237/-0) vendor/gix/src/shallow.rs (+93/-0) vendor/gix/src/state.rs (+25/-0) vendor/gix/src/status/index_worktree.rs (+834/-0) vendor/gix/src/status/mod.rs (+180/-0) vendor/gix/src/status/platform.rs (+110/-0) vendor/gix/src/submodule/errors.rs (+113/-0) vendor/gix/src/submodule/mod.rs (+469/-0) vendor/gix/src/tag.rs (+17/-0) vendor/gix/src/types.rs (+266/-0) vendor/gix/src/util.rs (+81/-0) vendor/gix/src/worktree/mod.rs (+283/-0) vendor/gix/src/worktree/proxy.rs (+101/-0) vendor/glob/.cargo-checksum.json (+1/-0) vendor/glob/Cargo.toml (+30/-0) vendor/glob/LICENSE-APACHE (+201/-0) vendor/glob/LICENSE-MIT (+25/-0) vendor/glob/README.md (+38/-0) vendor/glob/src/lib.rs (+1434/-0) vendor/glob/tests/glob-std.rs (+377/-0) vendor/glob/triagebot.toml (+1/-0) vendor/globset/.cargo-checksum.json (+1/-0) vendor/globset/COPYING (+3/-0) vendor/globset/Cargo.toml (+91/-0) vendor/globset/LICENSE-MIT (+21/-0) vendor/globset/README.md (+119/-0) vendor/globset/UNLICENSE (+24/-0) vendor/globset/benches/bench.rs (+113/-0) vendor/globset/src/fnv.rs (+30/-0) vendor/globset/src/glob.rs (+1558/-0) vendor/globset/src/lib.rs (+1022/-0) vendor/globset/src/pathutil.rs (+129/-0) vendor/globset/src/serde_impl.rs (+128/-0) vendor/group/.cargo-checksum.json (+1/-0) vendor/group/CHANGELOG.md (+77/-0) vendor/group/COPYRIGHT (+14/-0) vendor/group/Cargo.toml (+55/-0) vendor/group/LICENSE-APACHE (+201/-0) vendor/group/LICENSE-MIT (+23/-0) vendor/group/README.md (+20/-0) vendor/group/rust-toolchain (+1/-0) vendor/group/src/cofactor.rs (+100/-0) vendor/group/src/lib.rs (+174/-0) vendor/group/src/prime.rs (+50/-0) vendor/group/src/tests/mod.rs (+448/-0) vendor/group/src/wnaf.rs (+506/-0) vendor/hashbrown-0.14.5/.cargo-checksum.json (+1/-0) vendor/hashbrown-0.14.5/CHANGELOG.md (+532/-0) vendor/hashbrown-0.14.5/Cargo.toml (+137/-0) vendor/hashbrown-0.14.5/LICENSE-APACHE (+201/-0) vendor/hashbrown-0.14.5/LICENSE-MIT (+25/-0) vendor/hashbrown-0.14.5/README.md (+125/-0) vendor/hashbrown-0.14.5/benches/bench.rs (+331/-0) vendor/hashbrown-0.14.5/benches/insert_unique_unchecked.rs (+32/-0) vendor/hashbrown-0.14.5/clippy.toml (+1/-0) vendor/hashbrown-0.14.5/src/external_trait_impls/mod.rs (+6/-0) vendor/hashbrown-0.14.5/src/external_trait_impls/rayon/helpers.rs (+27/-0) vendor/hashbrown-0.14.5/src/external_trait_impls/rayon/map.rs (+721/-0) vendor/hashbrown-0.14.5/src/external_trait_impls/rayon/mod.rs (+5/-0) vendor/hashbrown-0.14.5/src/external_trait_impls/rayon/raw.rs (+230/-0) vendor/hashbrown-0.14.5/src/external_trait_impls/rayon/set.rs (+659/-0) vendor/hashbrown-0.14.5/src/external_trait_impls/rayon/table.rs (+252/-0) vendor/hashbrown-0.14.5/src/external_trait_impls/rkyv/hash_map.rs (+125/-0) vendor/hashbrown-0.14.5/src/external_trait_impls/rkyv/hash_set.rs (+123/-0) vendor/hashbrown-0.14.5/src/external_trait_impls/rkyv/mod.rs (+2/-0) vendor/hashbrown-0.14.5/src/external_trait_impls/serde.rs (+220/-0) vendor/hashbrown-0.14.5/src/lib.rs (+188/-0) vendor/hashbrown-0.14.5/src/macros.rs (+70/-0) vendor/hashbrown-0.14.5/src/map.rs (+8960/-0) vendor/hashbrown-0.14.5/src/raw/alloc.rs (+86/-0) vendor/hashbrown-0.14.5/src/raw/bitmask.rs (+133/-0) vendor/hashbrown-0.14.5/src/raw/generic.rs (+157/-0) vendor/hashbrown-0.14.5/src/raw/mod.rs (+4817/-0) vendor/hashbrown-0.14.5/src/raw/neon.rs (+124/-0) vendor/hashbrown-0.14.5/src/raw/sse2.rs (+149/-0) vendor/hashbrown-0.14.5/src/rustc_entry.rs (+630/-0) vendor/hashbrown-0.14.5/src/scopeguard.rs (+72/-0) vendor/hashbrown-0.14.5/src/set.rs (+2970/-0) vendor/hashbrown-0.14.5/src/table.rs (+2070/-0) vendor/hashbrown-0.14.5/tests/equivalent_trait.rs (+53/-0) vendor/hashbrown-0.14.5/tests/hasher.rs (+65/-0) vendor/hashbrown-0.14.5/tests/raw.rs (+11/-0) vendor/hashbrown-0.14.5/tests/rayon.rs (+535/-0) vendor/hashbrown-0.14.5/tests/serde.rs (+65/-0) vendor/hashbrown-0.14.5/tests/set.rs (+34/-0) vendor/hashbrown/.cargo-checksum.json (+1/-0) vendor/hashbrown/CHANGELOG.md (+571/-0) vendor/hashbrown/Cargo.toml (+178/-0) vendor/hashbrown/LICENSE-APACHE (+201/-0) vendor/hashbrown/LICENSE-MIT (+25/-0) vendor/hashbrown/README.md (+81/-0) vendor/hashbrown/benches/bench.rs (+331/-0) vendor/hashbrown/benches/insert_unique_unchecked.rs (+34/-0) vendor/hashbrown/benches/set_ops.rs (+148/-0) vendor/hashbrown/clippy.toml (+1/-0) vendor/hashbrown/src/external_trait_impls/borsh/hash_map.rs (+78/-0) vendor/hashbrown/src/external_trait_impls/borsh/mod.rs (+1/-0) vendor/hashbrown/src/external_trait_impls/mod.rs (+6/-0) vendor/hashbrown/src/external_trait_impls/rayon/helpers.rs (+27/-0) vendor/hashbrown/src/external_trait_impls/rayon/map.rs (+721/-0) vendor/hashbrown/src/external_trait_impls/rayon/mod.rs (+5/-0) vendor/hashbrown/src/external_trait_impls/rayon/raw.rs (+230/-0) vendor/hashbrown/src/external_trait_impls/rayon/set.rs (+659/-0) vendor/hashbrown/src/external_trait_impls/rayon/table.rs (+249/-0) vendor/hashbrown/src/external_trait_impls/serde.rs (+220/-0) vendor/hashbrown/src/lib.rs (+177/-0) vendor/hashbrown/src/macros.rs (+70/-0) vendor/hashbrown/src/map.rs (+6510/-0) vendor/hashbrown/src/raw/alloc.rs (+86/-0) vendor/hashbrown/src/raw/bitmask.rs (+117/-0) vendor/hashbrown/src/raw/generic.rs (+157/-0) vendor/hashbrown/src/raw/mod.rs (+4464/-0) vendor/hashbrown/src/raw/neon.rs (+124/-0) vendor/hashbrown/src/raw/sse2.rs (+149/-0) vendor/hashbrown/src/raw_entry.rs (+1740/-0) vendor/hashbrown/src/rustc_entry.rs (+567/-0) vendor/hashbrown/src/scopeguard.rs (+72/-0) vendor/hashbrown/src/set.rs (+3106/-0) vendor/hashbrown/src/table.rs (+2383/-0) vendor/hashbrown/tests/equivalent_trait.rs (+53/-0) vendor/hashbrown/tests/hasher.rs (+65/-0) vendor/hashbrown/tests/rayon.rs (+535/-0) vendor/hashbrown/tests/serde.rs (+65/-0) vendor/hashbrown/tests/set.rs (+34/-0) vendor/hashlink/.cargo-checksum.json (+1/-0) vendor/hashlink/CHANGELOG.md (+96/-0) vendor/hashlink/Cargo.toml (+51/-0) vendor/hashlink/LICENSE-APACHE (+201/-0) vendor/hashlink/LICENSE-MIT (+26/-0) vendor/hashlink/README.md (+67/-0) vendor/hashlink/src/lib.rs (+12/-0) vendor/hashlink/src/linked_hash_map.rs (+2346/-0) vendor/hashlink/src/linked_hash_set.rs (+766/-0) vendor/hashlink/src/lru_cache.rs (+292/-0) vendor/hashlink/src/serde.rs (+161/-0) vendor/hashlink/tests/linked_hash_map.rs (+822/-0) vendor/hashlink/tests/linked_hash_set.rs (+543/-0) vendor/hashlink/tests/lru_cache.rs (+166/-0) vendor/hashlink/tests/serde.rs (+110/-0) vendor/heck-0.4.1/.cargo-checksum.json (+1/-0) vendor/heck-0.4.1/CHANGELOG.md (+17/-0) vendor/heck-0.4.1/Cargo.toml (+43/-0) vendor/heck-0.4.1/LICENSE-APACHE (+201/-0) vendor/heck-0.4.1/LICENSE-MIT (+25/-0) vendor/heck-0.4.1/README.md (+64/-0) vendor/heck-0.4.1/src/kebab.rs (+70/-0) vendor/heck-0.4.1/src/lib.rs (+209/-0) vendor/heck-0.4.1/src/lower_camel.rs (+85/-0) vendor/heck-0.4.1/src/shouty_kebab.rs (+72/-0) vendor/heck-0.4.1/src/shouty_snake.rs (+85/-0) vendor/heck-0.4.1/src/snake.rs (+98/-0) vendor/heck-0.4.1/src/title.rs (+71/-0) vendor/heck-0.4.1/src/train.rs (+85/-0) vendor/heck-0.4.1/src/upper_camel.rs (+84/-0) vendor/heck/.cargo-checksum.json (+1/-0) vendor/heck/CHANGELOG.md (+25/-0) vendor/heck/Cargo.toml (+34/-0) vendor/heck/LICENSE-APACHE (+201/-0) vendor/heck/LICENSE-MIT (+25/-0) vendor/heck/README.md (+53/-0) vendor/heck/src/kebab.rs (+75/-0) vendor/heck/src/lib.rs (+192/-0) vendor/heck/src/lower_camel.rs (+88/-0) vendor/heck/src/shouty_kebab.rs (+73/-0) vendor/heck/src/shouty_snake.rs (+86/-0) vendor/heck/src/snake.rs (+100/-0) vendor/heck/src/title.rs (+75/-0) vendor/heck/src/train.rs (+87/-0) vendor/heck/src/upper_camel.rs (+88/-0) vendor/hex/.cargo-checksum.json (+1/-0) vendor/hex/Cargo.toml (+63/-0) vendor/hex/LICENSE-APACHE (+202/-0) vendor/hex/LICENSE-MIT (+20/-0) vendor/hex/README.md (+69/-0) vendor/hex/benches/hex.rs (+61/-0) vendor/hex/src/error.rs (+59/-0) vendor/hex/src/lib.rs (+525/-0) vendor/hex/src/serde.rs (+102/-0) vendor/hex/tests/serde.rs (+59/-0) vendor/hex/tests/version-number.rs (+11/-0) vendor/hkdf/.cargo-checksum.json (+1/-0) vendor/hkdf/CHANGELOG.md (+115/-0) vendor/hkdf/Cargo.toml (+57/-0) vendor/hkdf/LICENSE-APACHE (+201/-0) vendor/hkdf/LICENSE-MIT (+26/-0) vendor/hkdf/README.md (+85/-0) vendor/hkdf/benches/mod.rs (+27/-0) vendor/hkdf/src/errors.rs (+29/-0) vendor/hkdf/src/lib.rs (+290/-0) vendor/hkdf/src/sealed.rs (+97/-0) vendor/hkdf/tests/tests.rs (+455/-0) vendor/hmac/.cargo-checksum.json (+1/-0) vendor/hmac/CHANGELOG.md (+97/-0) vendor/hmac/Cargo.toml (+55/-0) vendor/hmac/LICENSE-APACHE (+201/-0) vendor/hmac/LICENSE-MIT (+25/-0) vendor/hmac/README.md (+53/-0) vendor/hmac/src/lib.rs (+131/-0) vendor/hmac/src/optim.rs (+280/-0) vendor/hmac/src/simple.rs (+106/-0) vendor/hmac/tests/mod.rs (+88/-0) vendor/home/.cargo-checksum.json (+1/-0) vendor/home/Cargo.toml (+54/-0) vendor/home/LICENSE-APACHE (+201/-0) vendor/home/LICENSE-MIT (+23/-0) vendor/home/README.md (+27/-0) vendor/home/src/env.rs (+106/-0) vendor/home/src/lib.rs (+146/-0) vendor/home/src/windows.rs (+73/-0) vendor/http-auth/.cargo-checksum.json (+1/-0) vendor/http-auth/CHANGELOG.md (+49/-0) vendor/http-auth/Cargo.lock (+1473/-0) vendor/http-auth/Cargo.toml (+115/-0) vendor/http-auth/LICENSE-APACHE.txt (+202/-0) vendor/http-auth/LICENSE-MIT.txt (+20/-0) vendor/http-auth/README.md (+62/-0) vendor/http-auth/design/20211020-new-crate.md (+57/-0) vendor/http-auth/design/README.md (+1/-0) vendor/http-auth/examples/reqwest.rs (+67/-0) vendor/http-auth/src/basic.rs (+115/-0) vendor/http-auth/src/digest.rs (+917/-0) vendor/http-auth/src/lib.rs (+795/-0) vendor/http-auth/src/parser.rs (+595/-0) vendor/http-auth/src/table.rs (+135/-0) vendor/humantime/.cargo-checksum.json (+1/-0) vendor/humantime/Cargo.toml (+37/-0) vendor/humantime/LICENSE-APACHE (+202/-0) vendor/humantime/LICENSE-MIT (+26/-0) vendor/humantime/README.md (+68/-0) vendor/humantime/benches/datetime_format.rs (+56/-0) vendor/humantime/benches/datetime_parse.rs (+47/-0) vendor/humantime/bulk.yaml (+8/-0) vendor/humantime/src/date.rs (+623/-0) vendor/humantime/src/duration.rs (+456/-0) vendor/humantime/src/lib.rs (+34/-0) vendor/humantime/src/wrapper.rs (+107/-0) vendor/humantime/vagga.yaml (+92/-0) vendor/idna/.cargo-checksum.json (+1/-0) vendor/idna/Cargo.toml (+69/-0) vendor/idna/LICENSE-APACHE (+201/-0) vendor/idna/LICENSE-MIT (+25/-0) vendor/idna/benches/all.rs (+53/-0) vendor/idna/src/IdnaMappingTable.txt (+8727/-0) vendor/idna/src/lib.rs (+86/-0) vendor/idna/src/make_uts46_mapping_table.py (+185/-0) vendor/idna/src/punycode.rs (+328/-0) vendor/idna/src/uts46.rs (+741/-0) vendor/idna/src/uts46_mapping_table.rs (+15256/-0) vendor/idna/tests/IdnaTestV2.txt (+6334/-0) vendor/idna/tests/bad_punycode_tests.json (+6/-0) vendor/idna/tests/punycode.rs (+114/-0) vendor/idna/tests/punycode_tests.json (+120/-0) vendor/idna/tests/tests.rs (+25/-0) vendor/idna/tests/unit.rs (+139/-0) vendor/idna/tests/uts46.rs (+194/-0) vendor/ignore/.cargo-checksum.json (+1/-0) vendor/ignore/COPYING (+3/-0) vendor/ignore/Cargo.lock (+270/-0) vendor/ignore/Cargo.toml (+95/-0) vendor/ignore/LICENSE-MIT (+21/-0) vendor/ignore/README.md (+59/-0) vendor/ignore/UNLICENSE (+24/-0) vendor/ignore/examples/walk.rs (+64/-0) vendor/ignore/src/default_types.rs (+351/-0) vendor/ignore/src/dir.rs (+1222/-0) vendor/ignore/src/gitignore.rs (+817/-0) vendor/ignore/src/lib.rs (+548/-0) vendor/ignore/src/overrides.rs (+267/-0) vendor/ignore/src/pathutil.rs (+142/-0) vendor/ignore/src/types.rs (+584/-0) vendor/ignore/src/walk.rs (+2310/-0) vendor/ignore/tests/gitignore_matched_path_or_any_parents_tests.gitignore (+216/-0) vendor/ignore/tests/gitignore_matched_path_or_any_parents_tests.rs (+298/-0) vendor/im-rc/.cargo-checksum.json (+1/-0) vendor/im-rc/CHANGELOG.md (+419/-0) vendor/im-rc/CODE_OF_CONDUCT.md (+73/-0) vendor/im-rc/Cargo.toml (+115/-0) vendor/im-rc/LICENCE.md (+355/-0) vendor/im-rc/README.md (+28/-0) vendor/im-rc/build.rs (+25/-0) vendor/im-rc/proptest-regressions/hash/map.txt (+16/-0) vendor/im-rc/proptest-regressions/hash/set.txt (+7/-0) vendor/im-rc/proptest-regressions/ord/map (+20/-0) vendor/im-rc/proptest-regressions/ord/map.txt (+8/-0) vendor/im-rc/proptest-regressions/ord/set.txt (+7/-0) vendor/im-rc/proptest-regressions/ser.txt (+10/-0) vendor/im-rc/proptest-regressions/sort.txt (+7/-0) vendor/im-rc/proptest-regressions/tests/ordset.txt (+7/-0) vendor/im-rc/proptest-regressions/tests/vector.txt (+9/-0) vendor/im-rc/proptest-regressions/vector/mod.txt (+16/-0) vendor/im-rc/src/arbitrary.rs (+98/-0) vendor/im-rc/src/config.rs (+20/-0) vendor/im-rc/src/fakepool.rs (+208/-0) vendor/im-rc/src/hash/map.rs (+2379/-0) vendor/im-rc/src/hash/mod.rs (+8/-0) vendor/im-rc/src/hash/set.rs (+1134/-0) vendor/im-rc/src/iter.rs (+42/-0) vendor/im-rc/src/lib.rs (+507/-0) vendor/im-rc/src/nodes/btree.rs (+1368/-0) vendor/im-rc/src/nodes/hamt.rs (+726/-0) vendor/im-rc/src/nodes/mod.rs (+16/-0) vendor/im-rc/src/nodes/rrb.rs (+1101/-0) vendor/im-rc/src/ord/map.rs (+2649/-0) vendor/im-rc/src/ord/mod.rs (+8/-0) vendor/im-rc/src/ord/set.rs (+1243/-0) vendor/im-rc/src/ord/test-fixtures/issue_124.txt (+3492/-0) vendor/im-rc/src/proptest.rs (+164/-0) vendor/im-rc/src/quickcheck.rs (+43/-0) vendor/im-rc/src/ser.rs (+293/-0) vendor/im-rc/src/sort.rs (+203/-0) vendor/im-rc/src/sync.rs (+69/-0) vendor/im-rc/src/test.rs (+86/-0) vendor/im-rc/src/tests/hashset.rs (+85/-0) vendor/im-rc/src/tests/mod.rs (+24/-0) vendor/im-rc/src/tests/ordset.rs (+85/-0) vendor/im-rc/src/tests/vector.rs (+231/-0) vendor/im-rc/src/util.rs (+142/-0) vendor/im-rc/src/vector/focus.rs (+909/-0) vendor/im-rc/src/vector/mod.rs (+2745/-0) vendor/im-rc/src/vector/pool.rs (+74/-0) vendor/im-rc/src/vector/rayon.rs (+209/-0) vendor/implib/.cargo-checksum.json (+1/-0) vendor/implib/Cargo.toml (+48/-0) vendor/implib/LICENSE (+21/-0) vendor/implib/README.md (+20/-0) vendor/implib/src/ar/LICENSE (+21/-0) vendor/implib/src/ar/error.rs (+27/-0) vendor/implib/src/ar/mod.rs (+108/-0) vendor/implib/src/ar/write.rs (+300/-0) vendor/implib/src/def/mod.rs (+49/-0) vendor/implib/src/def/parser.rs (+574/-0) vendor/implib/src/gnu.rs (+520/-0) vendor/implib/src/lib.rs (+133/-0) vendor/implib/src/msvc.rs (+836/-0) vendor/implib/tests/python39.def (+1648/-0) vendor/implib/tests/test_import_lib.rs (+48/-0) vendor/indexmap/.cargo-checksum.json (+1/-0) vendor/indexmap/Cargo.toml (+152/-0) vendor/indexmap/LICENSE-APACHE (+201/-0) vendor/indexmap/LICENSE-MIT (+25/-0) vendor/indexmap/README.md (+59/-0) vendor/indexmap/RELEASES.md (+531/-0) vendor/indexmap/benches/bench.rs (+763/-0) vendor/indexmap/benches/faststring.rs (+185/-0) vendor/indexmap/src/arbitrary.rs (+77/-0) vendor/indexmap/src/borsh.rs (+122/-0) vendor/indexmap/src/lib.rs (+274/-0) vendor/indexmap/src/macros.rs (+178/-0) vendor/indexmap/src/map.rs (+1578/-0) vendor/indexmap/src/map/core.rs (+718/-0) vendor/indexmap/src/map/core/entry.rs (+535/-0) vendor/indexmap/src/map/core/raw_entry_v1.rs (+666/-0) vendor/indexmap/src/map/iter.rs (+775/-0) vendor/indexmap/src/map/mutable.rs (+166/-0) vendor/indexmap/src/map/serde_seq.rs (+138/-0) vendor/indexmap/src/map/slice.rs (+539/-0) vendor/indexmap/src/map/tests.rs (+830/-0) vendor/indexmap/src/rayon/map.rs (+663/-0) vendor/indexmap/src/rayon/mod.rs (+29/-0) vendor/indexmap/src/rayon/set.rs (+756/-0) vendor/indexmap/src/rustc.rs (+158/-0) vendor/indexmap/src/serde.rs (+166/-0) vendor/indexmap/src/set.rs (+1290/-0) vendor/indexmap/src/set/iter.rs (+627/-0) vendor/indexmap/src/set/mutable.rs (+86/-0) vendor/indexmap/src/set/slice.rs (+340/-0) vendor/indexmap/src/set/tests.rs (+723/-0) vendor/indexmap/src/util.rs (+53/-0) vendor/indexmap/tests/equivalent_trait.rs (+53/-0) vendor/indexmap/tests/macros_full_path.rs (+19/-0) vendor/indexmap/tests/quick.rs (+759/-0) vendor/indexmap/tests/tests.rs (+28/-0) vendor/is_terminal_polyfill/.cargo-checksum.json (+1/-0) vendor/is_terminal_polyfill/Cargo.toml (+157/-0) vendor/is_terminal_polyfill/LICENSE-APACHE (+202/-0) vendor/is_terminal_polyfill/LICENSE-MIT (+19/-0) vendor/is_terminal_polyfill/README.md (+26/-0) vendor/is_terminal_polyfill/src/lib.rs (+51/-0) vendor/itertools/.cargo-checksum.json (+1/-0) vendor/itertools/CHANGELOG.md (+539/-0) vendor/itertools/CONTRIBUTING.md (+189/-0) vendor/itertools/Cargo.lock (+740/-0) vendor/itertools/Cargo.toml (+105/-0) vendor/itertools/LICENSE-APACHE (+201/-0) vendor/itertools/LICENSE-MIT (+25/-0) vendor/itertools/README.md (+33/-0) vendor/itertools/benches/bench1.rs (+767/-0) vendor/itertools/benches/combinations.rs (+117/-0) vendor/itertools/benches/combinations_with_replacement.rs (+40/-0) vendor/itertools/benches/fold_specialization.rs (+75/-0) vendor/itertools/benches/powerset.rs (+97/-0) vendor/itertools/benches/specializations.rs (+667/-0) vendor/itertools/benches/tree_reduce.rs (+150/-0) vendor/itertools/benches/tuple_combinations.rs (+113/-0) vendor/itertools/benches/tuples.rs (+208/-0) vendor/itertools/examples/iris.data (+150/-0) vendor/itertools/examples/iris.rs (+140/-0) vendor/itertools/src/adaptors/coalesce.rs (+286/-0) vendor/itertools/src/adaptors/map.rs (+130/-0) vendor/itertools/src/adaptors/mod.rs (+1208/-0) vendor/itertools/src/adaptors/multi_product.rs (+231/-0) vendor/itertools/src/combinations.rs (+243/-0) vendor/itertools/src/combinations_with_replacement.rs (+192/-0) vendor/itertools/src/concat_impl.rs (+30/-0) vendor/itertools/src/cons_tuples_impl.rs (+58/-0) vendor/itertools/src/diff.rs (+104/-0) vendor/itertools/src/duplicates_impl.rs (+216/-0) vendor/itertools/src/either_or_both.rs (+514/-0) vendor/itertools/src/exactly_one_err.rs (+125/-0) vendor/itertools/src/extrema_set.rs (+50/-0) vendor/itertools/src/flatten_ok.rs (+205/-0) vendor/itertools/src/format.rs (+178/-0) vendor/itertools/src/free.rs (+317/-0) vendor/itertools/src/group_map.rs (+32/-0) vendor/itertools/src/groupbylazy.rs (+613/-0) vendor/itertools/src/grouping_map.rs (+614/-0) vendor/itertools/src/impl_macros.rs (+34/-0) vendor/itertools/src/intersperse.rs (+142/-0) vendor/itertools/src/iter_index.rs (+116/-0) vendor/itertools/src/k_smallest.rs (+98/-0) vendor/itertools/src/kmerge_impl.rs (+240/-0) vendor/itertools/src/lazy_buffer.rs (+75/-0) vendor/itertools/src/lib.rs (+4365/-0) vendor/itertools/src/merge_join.rs (+347/-0) vendor/itertools/src/minmax.rs (+116/-0) vendor/itertools/src/multipeek_impl.rs (+116/-0) vendor/itertools/src/pad_tail.rs (+124/-0) vendor/itertools/src/peek_nth.rs (+178/-0) vendor/itertools/src/peeking_take_while.rs (+201/-0) vendor/itertools/src/permutations.rs (+186/-0) vendor/itertools/src/powerset.rs (+131/-0) vendor/itertools/src/process_results_impl.rs (+108/-0) vendor/itertools/src/put_back_n_impl.rs (+71/-0) vendor/itertools/src/rciter_impl.rs (+102/-0) vendor/itertools/src/repeatn.rs (+83/-0) vendor/itertools/src/size_hint.rs (+94/-0) vendor/itertools/src/sources.rs (+153/-0) vendor/itertools/src/take_while_inclusive.rs (+96/-0) vendor/itertools/src/tee.rs (+93/-0) vendor/itertools/src/tuple_impl.rs (+401/-0) vendor/itertools/src/unique_impl.rs (+188/-0) vendor/itertools/src/unziptuple.rs (+80/-0) vendor/itertools/src/with_position.rs (+124/-0) vendor/itertools/src/zip_eq_impl.rs (+64/-0) vendor/itertools/src/zip_longest.rs (+139/-0) vendor/itertools/src/ziptuple.rs (+137/-0) vendor/itertools/tests/adaptors_no_collect.rs (+51/-0) vendor/itertools/tests/flatten_ok.rs (+76/-0) vendor/itertools/tests/laziness.rs (+283/-0) vendor/itertools/tests/macros_hygiene.rs (+14/-0) vendor/itertools/tests/merge_join.rs (+101/-0) vendor/itertools/tests/peeking_take_while.rs (+69/-0) vendor/itertools/tests/quick.rs (+1967/-0) vendor/itertools/tests/specializations.rs (+582/-0) vendor/itertools/tests/test_core.rs (+374/-0) vendor/itertools/tests/test_std.rs (+1523/-0) vendor/itertools/tests/tuples.rs (+86/-0) vendor/itertools/tests/zip.rs (+56/-0) vendor/itoa/.cargo-checksum.json (+1/-0) vendor/itoa/Cargo.toml (+43/-0) vendor/itoa/LICENSE-APACHE (+176/-0) vendor/itoa/LICENSE-MIT (+23/-0) vendor/itoa/README.md (+59/-0) vendor/itoa/benches/bench.rs (+55/-0) vendor/itoa/src/lib.rs (+309/-0) vendor/itoa/src/udiv128.rs (+48/-0) vendor/itoa/tests/test.rs (+30/-0) vendor/jiff-tzdb-platform/.cargo-checksum.json (+1/-0) vendor/jiff-tzdb-platform/Cargo.toml (+28/-0) vendor/jiff-tzdb-platform/src/lib.rs (+0/-0) vendor/jiff-tzdb/.cargo-checksum.json (+1/-0) vendor/jiff-tzdb/Cargo.toml (+23/-0) vendor/jiff-tzdb/src/lib.rs (+0/-0) vendor/jiff/.cargo-checksum.json (+1/-0) vendor/jiff/CHANGELOG.md (+355/-0) vendor/jiff/COMPARE.md (+1127/-0) vendor/jiff/COPYING (+3/-0) vendor/jiff/Cargo.toml (+171/-0) vendor/jiff/Cross.toml (+6/-0) vendor/jiff/DESIGN.md (+639/-0) vendor/jiff/LICENSE-MIT (+21/-0) vendor/jiff/PLATFORM.md (+319/-0) vendor/jiff/README.md (+188/-0) vendor/jiff/UNLICENSE (+24/-0) vendor/jiff/rustfmt.toml (+2/-0) vendor/jiff/scripts/jiff-debug (+60/-0) vendor/jiff/src/civil/date.rs (+4009/-0) vendor/jiff/src/civil/datetime.rs (+4280/-0) vendor/jiff/src/civil/iso_week_date.rs (+515/-0) vendor/jiff/src/civil/mod.rs (+290/-0) vendor/jiff/src/civil/time.rs (+3363/-0) vendor/jiff/src/civil/weekday.rs (+838/-0) vendor/jiff/src/duration.rs (+151/-0) vendor/jiff/src/error.rs (+549/-0) vendor/jiff/src/fmt/mod.rs (+261/-0) vendor/jiff/src/fmt/offset.rs (+1007/-0) vendor/jiff/src/fmt/rfc2822.rs (+1817/-0) vendor/jiff/src/fmt/rfc9557.rs (+1049/-0) vendor/jiff/src/fmt/serde.rs (+940/-0) vendor/jiff/src/fmt/strtime/format.rs (+875/-0) vendor/jiff/src/fmt/strtime/mod.rs (+2142/-0) vendor/jiff/src/fmt/strtime/parse.rs (+1550/-0) vendor/jiff/src/fmt/temporal/mod.rs (+1773/-0) vendor/jiff/src/fmt/temporal/parser.rs (+2744/-0) vendor/jiff/src/fmt/temporal/printer.rs (+674/-0) vendor/jiff/src/fmt/util.rs (+441/-0) vendor/jiff/src/lib.rs (+755/-0) vendor/jiff/src/logging.rs (+147/-0) vendor/jiff/src/now.rs (+76/-0) vendor/jiff/src/signed_duration.rs (+2189/-0) vendor/jiff/src/span.rs (+6362/-0) vendor/jiff/src/timestamp.rs (+3690/-0) vendor/jiff/src/tz/db/bundled/disabled.rs (+26/-0) vendor/jiff/src/tz/db/bundled/enabled.rs (+143/-0) vendor/jiff/src/tz/db/bundled/mod.rs (+20/-0) vendor/jiff/src/tz/db/mod.rs (+420/-0) vendor/jiff/src/tz/db/zoneinfo/disabled.rs (+43/-0) vendor/jiff/src/tz/db/zoneinfo/enabled.rs (+789/-0) vendor/jiff/src/tz/db/zoneinfo/mod.rs (+8/-0) vendor/jiff/src/tz/mod.rs (+3723/-0) vendor/jiff/src/tz/offset.rs (+1645/-0) vendor/jiff/src/tz/posix.rs (+3321/-0) vendor/jiff/src/tz/snapshots/jiff__tz__tzif__tests__America__New_York_v2+.snap (+255/-0) vendor/jiff/src/tz/snapshots/jiff__tz__tzif__tests__America__Sitka_v2+.snap (+166/-0) vendor/jiff/src/tz/snapshots/jiff__tz__tzif__tests__America__St_Johns_v2+.snap (+261/-0) vendor/jiff/src/tz/snapshots/jiff__tz__tzif__tests__Antarctica__Troll_v2+.snap (+84/-0) vendor/jiff/src/tz/snapshots/jiff__tz__tzif__tests__Australia__Tasmania_v2+.snap (+171/-0) vendor/jiff/src/tz/snapshots/jiff__tz__tzif__tests__Europe__Dublin_v2+.snap (+250/-0) vendor/jiff/src/tz/snapshots/jiff__tz__tzif__tests__Pacific__Honolulu_v2+.snap (+26/-0) vendor/jiff/src/tz/snapshots/jiff__tz__tzif__tests__UTC_v2+.snap (+14/-0) vendor/jiff/src/tz/snapshots/jiff__tz__tzif__tests__right__America__New_York_v2+.snap (+283/-0) vendor/jiff/src/tz/snapshots/jiff__tz__zic__tests__parse_zic_man1.snap (+115/-0) vendor/jiff/src/tz/snapshots/jiff__tz__zic__tests__parse_zic_man2.snap (+333/-0) vendor/jiff/src/tz/system/mod.rs (+292/-0) vendor/jiff/src/tz/system/unix.rs (+116/-0) vendor/jiff/src/tz/system/wasm_js.rs (+57/-0) vendor/jiff/src/tz/system/windows/mod.rs (+158/-0) vendor/jiff/src/tz/system/windows/windows_zones.rs (+143/-0) vendor/jiff/src/tz/testdata.rs (+95/-0) vendor/jiff/src/tz/tzif.rs (+1529/-0) vendor/jiff/src/tz/zic.rs (+2755/-0) vendor/jiff/src/util/cache.rs (+35/-0) vendor/jiff/src/util/common.rs (+148/-0) vendor/jiff/src/util/crc32/mod.rs (+46/-0) vendor/jiff/src/util/crc32/table.rs (+794/-0) vendor/jiff/src/util/escape.rs (+140/-0) vendor/jiff/src/util/libm.rs (+252/-0) vendor/jiff/src/util/mod.rs (+11/-0) vendor/jiff/src/util/parse.rs (+216/-0) vendor/jiff/src/util/rangeint.rs (+2425/-0) vendor/jiff/src/util/round/increment.rs (+181/-0) vendor/jiff/src/util/round/mod.rs (+2/-0) vendor/jiff/src/util/round/mode.rs (+394/-0) vendor/jiff/src/util/t.rs (+663/-0) vendor/jiff/src/zoned.rs (+5241/-0) vendor/jiff/test (+31/-0) vendor/jiff/test-wasm (+23/-0) vendor/jiff/tests/lib.rs (+4/-0) vendor/jiff/tests/tc39_262/README.md (+39/-0) vendor/jiff/tests/tc39_262/civil/date/add.rs (+100/-0) vendor/jiff/tests/tc39_262/civil/date/mod.rs (+2/-0) vendor/jiff/tests/tc39_262/civil/date/until.rs (+281/-0) vendor/jiff/tests/tc39_262/civil/datetime/add.rs (+65/-0) vendor/jiff/tests/tc39_262/civil/datetime/mod.rs (+3/-0) vendor/jiff/tests/tc39_262/civil/datetime/round.rs (+396/-0) vendor/jiff/tests/tc39_262/civil/datetime/until.rs (+562/-0) vendor/jiff/tests/tc39_262/civil/mod.rs (+3/-0) vendor/jiff/tests/tc39_262/civil/time/add.rs (+306/-0) vendor/jiff/tests/tc39_262/civil/time/equals.rs (+176/-0) vendor/jiff/tests/tc39_262/civil/time/mod.rs (+9/-0) vendor/jiff/tests/tc39_262/civil/time/round.rs (+656/-0) vendor/jiff/tests/tc39_262/civil/time/sub.rs (+306/-0) vendor/jiff/tests/tc39_262/civil/time/until.rs (+405/-0) vendor/jiff/tests/tc39_262/mod.rs (+9/-0) vendor/jiff/tests/tc39_262/span/add.rs (+203/-0) vendor/jiff/tests/tc39_262/span/mod.rs (+3/-0) vendor/jiff/tests/tc39_262/span/round.rs (+1314/-0) vendor/jiff/tests/tc39_262/span/total.rs (+208/-0) vendor/jobserver/.cargo-checksum.json (+1/-0) vendor/jobserver/Cargo.toml (+58/-0) vendor/jobserver/LICENSE-APACHE (+201/-0) vendor/jobserver/LICENSE-MIT (+25/-0) vendor/jobserver/README.md (+33/-0) vendor/jobserver/src/error.rs (+95/-0) vendor/jobserver/src/lib.rs (+704/-0) vendor/jobserver/src/unix.rs (+651/-0) vendor/jobserver/src/wasm.rs (+106/-0) vendor/jobserver/src/windows.rs (+290/-0) vendor/jobserver/tests/client-of-myself.rs (+59/-0) vendor/jobserver/tests/client.rs (+192/-0) vendor/jobserver/tests/helper.rs (+76/-0) vendor/jobserver/tests/make-as-a-client.rs (+81/-0) vendor/jobserver/tests/server.rs (+181/-0) vendor/js-sys/.cargo-checksum.json (+1/-0) vendor/js-sys/Cargo.toml (+37/-0) vendor/js-sys/src/lib.rs (+0/-0) vendor/kstring/.cargo-checksum.json (+1/-0) vendor/kstring/Cargo.lock (+935/-0) vendor/kstring/Cargo.toml (+128/-0) vendor/kstring/LICENSE-APACHE (+202/-0) vendor/kstring/LICENSE-MIT (+19/-0) vendor/kstring/README.md (+45/-0) vendor/kstring/benches/access.rs (+134/-0) vendor/kstring/benches/clone.rs (+139/-0) vendor/kstring/examples/bench.rs (+18/-0) vendor/kstring/src/backend.rs (+97/-0) vendor/kstring/src/lib.rs (+79/-0) vendor/kstring/src/stack.rs (+457/-0) vendor/kstring/src/string.rs (+866/-0) vendor/kstring/src/string_cow.rs (+383/-0) vendor/kstring/src/string_ref.rs (+277/-0) vendor/lazy_static/.cargo-checksum.json (+1/-0) vendor/lazy_static/Cargo.lock (+293/-0) vendor/lazy_static/Cargo.toml (+46/-0) vendor/lazy_static/LICENSE-APACHE (+201/-0) vendor/lazy_static/LICENSE-MIT (+25/-0) vendor/lazy_static/README.md (+105/-0) vendor/lazy_static/examples/mutex_map.rs (+23/-0) vendor/lazy_static/src/core_lazy.rs (+32/-0) vendor/lazy_static/src/inline_lazy.rs (+48/-0) vendor/lazy_static/src/lib.rs (+208/-0) vendor/lazy_static/tests/compile_fail/incorrect_visibility_restriction.rs (+8/-0) vendor/lazy_static/tests/compile_fail/incorrect_visibility_restriction.stderr (+10/-0) vendor/lazy_static/tests/compile_fail/static_is_private.rs (+14/-0) vendor/lazy_static/tests/compile_fail/static_is_private.stderr (+14/-0) vendor/lazy_static/tests/compile_fail/static_is_sized.rs (+9/-0) vendor/lazy_static/tests/compile_fail/static_is_sized.stderr (+64/-0) vendor/lazy_static/tests/no_std.rs (+19/-0) vendor/lazy_static/tests/test.rs (+185/-0) vendor/lazy_static/tests/ui.rs (+6/-0) vendor/lazycell/.cargo-checksum.json (+1/-0) vendor/lazycell/CHANGELOG.md (+197/-0) vendor/lazycell/Cargo.toml (+34/-0) vendor/lazycell/LICENSE-APACHE (+201/-0) vendor/lazycell/LICENSE-MIT (+26/-0) vendor/lazycell/README.md (+73/-0) vendor/lazycell/src/lib.rs (+680/-0) vendor/lazycell/src/serde_impl.rs (+86/-0) vendor/libc/.cargo-checksum.json (+1/-0) vendor/libc/CHANGELOG.md (+139/-0) vendor/libc/CONTRIBUTING.md (+100/-0) vendor/libc/Cargo.toml (+188/-0) vendor/libc/LICENSE-APACHE (+176/-0) vendor/libc/LICENSE-MIT (+25/-0) vendor/libc/README.md (+122/-0) vendor/libc/build.rs (+339/-0) vendor/libc/rustfmt.toml (+1/-0) vendor/libc/src/fixed_width_ints.rs (+99/-0) vendor/libc/src/fuchsia/aarch64.rs (+67/-0) vendor/libc/src/fuchsia/align.rs (+142/-0) vendor/libc/src/fuchsia/mod.rs (+4394/-0) vendor/libc/src/fuchsia/no_align.rs (+129/-0) vendor/libc/src/fuchsia/riscv64.rs (+44/-0) vendor/libc/src/fuchsia/x86_64.rs (+152/-0) vendor/libc/src/hermit.rs (+580/-0) vendor/libc/src/lib.rs (+169/-0) vendor/libc/src/macros.rs (+349/-0) vendor/libc/src/psp.rs (+4177/-0) vendor/libc/src/sgx.rs (+47/-0) vendor/libc/src/solid/aarch64.rs (+4/-0) vendor/libc/src/solid/arm.rs (+4/-0) vendor/libc/src/solid/mod.rs (+904/-0) vendor/libc/src/switch.rs (+49/-0) vendor/libc/src/teeos/mod.rs (+1385/-0) vendor/libc/src/unix/aix/mod.rs (+3363/-0) vendor/libc/src/unix/aix/powerpc64.rs (+644/-0) vendor/libc/src/unix/align.rs (+14/-0) vendor/libc/src/unix/bsd/apple/b32/align.rs (+7/-0) vendor/libc/src/unix/bsd/apple/b32/mod.rs (+154/-0) vendor/libc/src/unix/bsd/apple/b64/aarch64/align.rs (+55/-0) vendor/libc/src/unix/bsd/apple/b64/aarch64/mod.rs (+14/-0) vendor/libc/src/unix/bsd/apple/b64/align.rs (+7/-0) vendor/libc/src/unix/bsd/apple/b64/mod.rs (+159/-0) vendor/libc/src/unix/bsd/apple/b64/x86_64/align.rs (+7/-0) vendor/libc/src/unix/bsd/apple/b64/x86_64/mod.rs (+180/-0) vendor/libc/src/unix/bsd/apple/long_array.rs (+8/-0) vendor/libc/src/unix/bsd/apple/mod.rs (+6630/-0) vendor/libc/src/unix/bsd/freebsdlike/dragonfly/errno.rs (+13/-0) vendor/libc/src/unix/bsd/freebsdlike/dragonfly/mod.rs (+1745/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/aarch64.rs (+146/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/arm.rs (+20/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/freebsd11/b32.rs (+33/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/freebsd11/b64.rs (+32/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/freebsd11/mod.rs (+489/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/freebsd12/mod.rs (+530/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/freebsd12/x86_64.rs (+5/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/freebsd13/mod.rs (+571/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/freebsd13/x86_64.rs (+5/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/freebsd14/mod.rs (+571/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/freebsd14/x86_64.rs (+12/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/freebsd15/mod.rs (+571/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/freebsd15/x86_64.rs (+12/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/mod.rs (+5953/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/powerpc.rs (+21/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/powerpc64.rs (+21/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/riscv64.rs (+154/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/x86.rs (+178/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/x86_64/align.rs (+197/-0) vendor/libc/src/unix/bsd/freebsdlike/freebsd/x86_64/mod.rs (+273/-0) vendor/libc/src/unix/bsd/freebsdlike/mod.rs (+1947/-0) vendor/libc/src/unix/bsd/mod.rs (+977/-0) vendor/libc/src/unix/bsd/netbsdlike/mod.rs (+882/-0) vendor/libc/src/unix/bsd/netbsdlike/netbsd/aarch64.rs (+162/-0) vendor/libc/src/unix/bsd/netbsdlike/netbsd/arm.rs (+81/-0) vendor/libc/src/unix/bsd/netbsdlike/netbsd/mips.rs (+21/-0) vendor/libc/src/unix/bsd/netbsdlike/netbsd/mod.rs (+3179/-0) vendor/libc/src/unix/bsd/netbsdlike/netbsd/powerpc.rs (+21/-0) vendor/libc/src/unix/bsd/netbsdlike/netbsd/riscv64.rs (+21/-0) vendor/libc/src/unix/bsd/netbsdlike/netbsd/sparc64.rs (+8/-0) vendor/libc/src/unix/bsd/netbsdlike/netbsd/x86.rs (+15/-0) vendor/libc/src/unix/bsd/netbsdlike/netbsd/x86_64.rs (+67/-0) vendor/libc/src/unix/bsd/netbsdlike/openbsd/aarch64.rs (+30/-0) vendor/libc/src/unix/bsd/netbsdlike/openbsd/arm.rs (+16/-0) vendor/libc/src/unix/bsd/netbsdlike/openbsd/mips64.rs (+8/-0) vendor/libc/src/unix/bsd/netbsdlike/openbsd/mod.rs (+2265/-0) vendor/libc/src/unix/bsd/netbsdlike/openbsd/powerpc.rs (+16/-0) vendor/libc/src/unix/bsd/netbsdlike/openbsd/powerpc64.rs (+16/-0) vendor/libc/src/unix/bsd/netbsdlike/openbsd/riscv64.rs (+35/-0) vendor/libc/src/unix/bsd/netbsdlike/openbsd/sparc64.rs (+8/-0) vendor/libc/src/unix/bsd/netbsdlike/openbsd/x86.rs (+16/-0) vendor/libc/src/unix/bsd/netbsdlike/openbsd/x86_64.rs (+130/-0) vendor/libc/src/unix/haiku/b32.rs (+20/-0) vendor/libc/src/unix/haiku/b64.rs (+20/-0) vendor/libc/src/unix/haiku/mod.rs (+2186/-0) vendor/libc/src/unix/haiku/native.rs (+1489/-0) vendor/libc/src/unix/haiku/x86_64.rs (+264/-0) vendor/libc/src/unix/hurd/align.rs (+1/-0) vendor/libc/src/unix/hurd/b32.rs (+93/-0) vendor/libc/src/unix/hurd/b64.rs (+95/-0) vendor/libc/src/unix/hurd/mod.rs (+4696/-0) vendor/libc/src/unix/hurd/no_align.rs (+1/-0) vendor/libc/src/unix/linux_like/android/b32/arm.rs (+553/-0) vendor/libc/src/unix/linux_like/android/b32/mod.rs (+244/-0) vendor/libc/src/unix/linux_like/android/b32/x86/align.rs (+7/-0) vendor/libc/src/unix/linux_like/android/b32/x86/mod.rs (+627/-0) vendor/libc/src/unix/linux_like/android/b64/aarch64/align.rs (+29/-0) vendor/libc/src/unix/linux_like/android/b64/aarch64/int128.rs (+7/-0) vendor/libc/src/unix/linux_like/android/b64/aarch64/mod.rs (+436/-0) vendor/libc/src/unix/linux_like/android/b64/mod.rs (+330/-0) vendor/libc/src/unix/linux_like/android/b64/riscv64/align.rs (+7/-0) vendor/libc/src/unix/linux_like/android/b64/riscv64/mod.rs (+365/-0) vendor/libc/src/unix/linux_like/android/b64/x86_64/align.rs (+7/-0) vendor/libc/src/unix/linux_like/android/b64/x86_64/mod.rs (+806/-0) vendor/libc/src/unix/linux_like/android/mod.rs (+4250/-0) vendor/libc/src/unix/linux_like/emscripten/align.rs (+74/-0) vendor/libc/src/unix/linux_like/emscripten/lfs64.rs (+213/-0) vendor/libc/src/unix/linux_like/emscripten/mod.rs (+1829/-0) vendor/libc/src/unix/linux_like/emscripten/no_align.rs (+63/-0) vendor/libc/src/unix/linux_like/linux/align.rs (+223/-0) vendor/libc/src/unix/linux_like/linux/arch/generic/mod.rs (+333/-0) vendor/libc/src/unix/linux_like/linux/arch/mips/mod.rs (+323/-0) vendor/libc/src/unix/linux_like/linux/arch/mod.rs (+18/-0) vendor/libc/src/unix/linux_like/linux/arch/powerpc/mod.rs (+277/-0) vendor/libc/src/unix/linux_like/linux/arch/sparc/mod.rs (+259/-0) vendor/libc/src/unix/linux_like/linux/gnu/align.rs (+13/-0) vendor/libc/src/unix/linux_like/linux/gnu/b32/arm/align.rs (+53/-0) vendor/libc/src/unix/linux_like/linux/gnu/b32/arm/mod.rs (+865/-0) vendor/libc/src/unix/linux_like/linux/gnu/b32/csky/align.rs (+7/-0) vendor/libc/src/unix/linux_like/linux/gnu/b32/csky/mod.rs (+741/-0) vendor/libc/src/unix/linux_like/linux/gnu/b32/m68k/align.rs (+7/-0) vendor/libc/src/unix/linux_like/linux/gnu/b32/m68k/mod.rs (+850/-0) vendor/libc/src/unix/linux_like/linux/gnu/b32/mips/align.rs (+7/-0) vendor/libc/src/unix/linux_like/linux/gnu/b32/mips/mod.rs (+819/-0) vendor/libc/src/unix/linux_like/linux/gnu/b32/mod.rs (+361/-0) vendor/libc/src/unix/linux_like/linux/gnu/b32/powerpc.rs (+826/-0) vendor/libc/src/unix/linux_like/linux/gnu/b32/riscv32/align.rs (+44/-0) vendor/libc/src/unix/linux_like/linux/gnu/b32/riscv32/mod.rs (+813/-0) vendor/libc/src/unix/linux_like/linux/gnu/b32/sparc/align.rs (+7/-0) vendor/libc/src/unix/linux_like/linux/gnu/b32/sparc/mod.rs (+857/-0) vendor/libc/src/unix/linux_like/linux/gnu/b32/x86/align.rs (+7/-0) vendor/libc/src/unix/linux_like/linux/gnu/b32/x86/mod.rs (+1102/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/aarch64/align.rs (+51/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/aarch64/fallback.rs (+8/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/aarch64/ilp32.rs (+64/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/aarch64/int128.rs (+7/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/aarch64/lp64.rs (+73/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/aarch64/mod.rs (+938/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/loongarch64/align.rs (+40/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/loongarch64/mod.rs (+900/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/mips64/align.rs (+7/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/mips64/mod.rs (+934/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/mod.rs (+128/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/powerpc64/align.rs (+7/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/powerpc64/mod.rs (+979/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/riscv64/align.rs (+61/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/riscv64/mod.rs (+860/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/s390x.rs (+965/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/sparc64/align.rs (+7/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/sparc64/mod.rs (+931/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs (+24/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs (+822/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs (+453/-0) vendor/libc/src/unix/linux_like/linux/gnu/b64/x86_64/x32.rs (+405/-0) vendor/libc/src/unix/linux_like/linux/gnu/mod.rs (+1621/-0) vendor/libc/src/unix/linux_like/linux/gnu/no_align.rs (+10/-0) vendor/libc/src/unix/linux_like/linux/mod.rs (+5970/-0) vendor/libc/src/unix/linux_like/linux/musl/b32/arm/align.rs (+7/-0) vendor/libc/src/unix/linux_like/linux/musl/b32/arm/mod.rs (+854/-0) vendor/libc/src/unix/linux_like/linux/musl/b32/hexagon.rs (+667/-0) vendor/libc/src/unix/linux_like/linux/musl/b32/mips/align.rs (+7/-0) vendor/libc/src/unix/linux_like/linux/musl/b32/mips/mod.rs (+788/-0) vendor/libc/src/unix/linux_like/linux/musl/b32/mod.rs (+65/-0) vendor/libc/src/unix/linux_like/linux/musl/b32/powerpc.rs (+803/-0) vendor/libc/src/unix/linux_like/linux/musl/b32/riscv32/align.rs (+7/-0) vendor/libc/src/unix/linux_like/linux/musl/b32/riscv32/mod.rs (+798/-0) vendor/libc/src/unix/linux_like/linux/musl/b32/x86/align.rs (+7/-0) vendor/libc/src/unix/linux_like/linux/musl/b32/x86/mod.rs (+969/-0) vendor/libc/src/unix/linux_like/linux/musl/b64/aarch64/align.rs (+42/-0) vendor/libc/src/unix/linux_like/linux/musl/b64/aarch64/int128.rs (+7/-0) vendor/libc/src/unix/linux_like/linux/musl/b64/aarch64/mod.rs (+659/-0) vendor/libc/src/unix/linux_like/linux/musl/b64/loongarch64/align.rs (+40/-0) vendor/libc/src/unix/linux_like/linux/musl/b64/loongarch64/mod.rs (+669/-0) vendor/libc/src/unix/linux_like/linux/musl/b64/mips64.rs (+688/-0) vendor/libc/src/unix/linux_like/linux/musl/b64/mod.rs (+166/-0) vendor/libc/src/unix/linux_like/linux/musl/b64/powerpc64.rs (+695/-0) vendor/libc/src/unix/linux_like/linux/musl/b64/riscv64/align.rs (+61/-0) vendor/libc/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs (+727/-0) vendor/libc/src/unix/linux_like/linux/musl/b64/s390x.rs (+725/-0) vendor/libc/src/unix/linux_like/linux/musl/b64/x86_64/align.rs (+25/-0) vendor/libc/src/unix/linux_like/linux/musl/b64/x86_64/mod.rs (+917/-0) vendor/libc/src/unix/linux_like/linux/musl/lfs64.rs (+241/-0) vendor/libc/src/unix/linux_like/linux/musl/mod.rs (+1022/-0) vendor/libc/src/unix/linux_like/linux/no_align.rs (+162/-0) vendor/libc/src/unix/linux_like/linux/non_exhaustive.rs (+9/-0) vendor/libc/src/unix/linux_like/linux/uclibc/align.rs (+28/-0) vendor/libc/src/unix/linux_like/linux/uclibc/arm/align.rs (+13/-0) vendor/libc/src/unix/linux_like/linux/uclibc/arm/mod.rs (+925/-0) vendor/libc/src/unix/linux_like/linux/uclibc/arm/no_align.rs (+10/-0) vendor/libc/src/unix/linux_like/linux/uclibc/mips/mips32/align.rs (+13/-0) vendor/libc/src/unix/linux_like/linux/uclibc/mips/mips32/mod.rs (+692/-0) vendor/libc/src/unix/linux_like/linux/uclibc/mips/mips32/no_align.rs (+10/-0) vendor/libc/src/unix/linux_like/linux/uclibc/mips/mips64/align.rs (+10/-0) vendor/libc/src/unix/linux_like/linux/uclibc/mips/mips64/mod.rs (+207/-0) vendor/libc/src/unix/linux_like/linux/uclibc/mips/mips64/no_align.rs (+7/-0) vendor/libc/src/unix/linux_like/linux/uclibc/mips/mod.rs (+310/-0) vendor/libc/src/unix/linux_like/linux/uclibc/mod.rs (+450/-0) vendor/libc/src/unix/linux_like/linux/uclibc/no_align.rs (+53/-0) vendor/libc/src/unix/linux_like/linux/uclibc/x86_64/l4re.rs (+53/-0) vendor/libc/src/unix/linux_like/linux/uclibc/x86_64/mod.rs (+345/-0) vendor/libc/src/unix/linux_like/linux/uclibc/x86_64/other.rs (+5/-0) vendor/libc/src/unix/linux_like/mod.rs (+1914/-0) vendor/libc/src/unix/mod.rs (+1682/-0) vendor/libc/src/unix/newlib/aarch64/mod.rs (+54/-0) vendor/libc/src/unix/newlib/align.rs (+61/-0) vendor/libc/src/unix/newlib/arm/mod.rs (+56/-0) vendor/libc/src/unix/newlib/espidf/mod.rs (+120/-0) vendor/libc/src/unix/newlib/generic.rs (+36/-0) vendor/libc/src/unix/newlib/horizon/mod.rs (+279/-0) vendor/libc/src/unix/newlib/mod.rs (+932/-0) vendor/libc/src/unix/newlib/no_align.rs (+51/-0) vendor/libc/src/unix/newlib/powerpc/mod.rs (+16/-0) vendor/libc/src/unix/newlib/rtems/mod.rs (+143/-0) vendor/libc/src/unix/newlib/vita/mod.rs (+236/-0) vendor/libc/src/unix/no_align.rs (+16/-0) vendor/libc/src/unix/nto/aarch64.rs (+36/-0) vendor/libc/src/unix/nto/mod.rs (+3512/-0) vendor/libc/src/unix/nto/neutrino.rs (+1288/-0) vendor/libc/src/unix/nto/x86_64.rs (+132/-0) vendor/libc/src/unix/nuttx/mod.rs (+555/-0) vendor/libc/src/unix/redox/mod.rs (+1416/-0) vendor/libc/src/unix/solarish/compat.rs (+220/-0) vendor/libc/src/unix/solarish/illumos.rs (+115/-0) vendor/libc/src/unix/solarish/mod.rs (+3331/-0) vendor/libc/src/unix/solarish/solaris.rs (+101/-0) vendor/libc/src/unix/solarish/x86.rs (+29/-0) vendor/libc/src/unix/solarish/x86_64.rs (+190/-0) vendor/libc/src/unix/solarish/x86_common.rs (+65/-0) vendor/libc/src/vxworks/aarch64.rs (+4/-0) vendor/libc/src/vxworks/arm.rs (+4/-0) vendor/libc/src/vxworks/mod.rs (+2054/-0) vendor/libc/src/vxworks/powerpc.rs (+4/-0) vendor/libc/src/vxworks/powerpc64.rs (+4/-0) vendor/libc/src/vxworks/riscv32.rs (+4/-0) vendor/libc/src/vxworks/riscv64.rs (+4/-0) vendor/libc/src/vxworks/x86.rs (+4/-0) vendor/libc/src/vxworks/x86_64.rs (+4/-0) vendor/libc/src/wasi/mod.rs (+888/-0) vendor/libc/src/wasi/p2.rs (+161/-0) vendor/libc/src/windows/gnu/align.rs (+19/-0) vendor/libc/src/windows/gnu/mod.rs (+23/-0) vendor/libc/src/windows/mod.rs (+601/-0) vendor/libc/src/windows/msvc/mod.rs (+20/-0) vendor/libc/src/xous.rs (+49/-0) vendor/libc/tests/const_fn.rs (+5/-0) vendor/libdbus-sys/.cargo-checksum.json (+1/-0) vendor/libdbus-sys/Cargo.toml (+55/-0) vendor/libdbus-sys/LICENSE-APACHE (+202/-0) vendor/libdbus-sys/LICENSE-MIT (+19/-0) vendor/libdbus-sys/README.md (+11/-0) vendor/libdbus-sys/build.rs (+31/-0) vendor/libdbus-sys/build_vendored.rs (+397/-0) vendor/libdbus-sys/cross_compile.md (+195/-0) vendor/libdbus-sys/src/lib.rs (+316/-0) vendor/libdbus-sys/vendor/dbus/AUTHORS (+246/-0) vendor/libdbus-sys/vendor/dbus/CMakeLists.txt (+864/-0) vendor/libdbus-sys/vendor/dbus/CONTRIBUTING.md (+318/-0) vendor/libdbus-sys/vendor/dbus/COPYING (+552/-0) vendor/libdbus-sys/vendor/dbus/Doxyfile.in (+189/-0) vendor/libdbus-sys/vendor/dbus/INSTALL (+248/-0) vendor/libdbus-sys/vendor/dbus/Makefile.am (+45/-0) vendor/libdbus-sys/vendor/dbus/NEWS (+4079/-0) vendor/libdbus-sys/vendor/dbus/NEWS.pre-1-0 (+614/-0) vendor/libdbus-sys/vendor/dbus/NEWS.pre-1-2 (+153/-0) vendor/libdbus-sys/vendor/dbus/README (+175/-0) vendor/libdbus-sys/vendor/dbus/README.cmake (+248/-0) vendor/libdbus-sys/vendor/dbus/README.cygwin (+6/-0) vendor/libdbus-sys/vendor/dbus/README.launchd (+61/-0) vendor/libdbus-sys/vendor/dbus/README.valgrind (+24/-0) vendor/libdbus-sys/vendor/dbus/README.win (+114/-0) vendor/libdbus-sys/vendor/dbus/README.wince (+81/-0) vendor/libdbus-sys/vendor/dbus/autogen.sh (+108/-0) vendor/libdbus-sys/vendor/dbus/bus/CMakeLists.txt (+234/-0) vendor/libdbus-sys/vendor/dbus/bus/Makefile.am (+250/-0) vendor/libdbus-sys/vendor/dbus/bus/activation-exit-codes.h (+45/-0) vendor/libdbus-sys/vendor/dbus/bus/activation-helper-bin.c (+102/-0) vendor/libdbus-sys/vendor/dbus/bus/activation-helper.c (+556/-0) vendor/libdbus-sys/vendor/dbus/bus/activation-helper.h (+33/-0) vendor/libdbus-sys/vendor/dbus/bus/activation.c (+2826/-0) vendor/libdbus-sys/vendor/dbus/bus/activation.h (+69/-0) vendor/libdbus-sys/vendor/dbus/bus/apparmor.c (+1121/-0) vendor/libdbus-sys/vendor/dbus/bus/apparmor.h (+66/-0) vendor/libdbus-sys/vendor/dbus/bus/audit.c (+197/-0) vendor/libdbus-sys/vendor/dbus/bus/audit.h (+33/-0) vendor/libdbus-sys/vendor/dbus/bus/bus.c (+2004/-0) vendor/libdbus-sys/vendor/dbus/bus/bus.h (+170/-0) vendor/libdbus-sys/vendor/dbus/bus/config-loader-expat.c (+311/-0) vendor/libdbus-sys/vendor/dbus/bus/config-parser-common.c (+194/-0) vendor/libdbus-sys/vendor/dbus/bus/config-parser-common.h (+59/-0) vendor/libdbus-sys/vendor/dbus/bus/config-parser-trivial.c (+752/-0) vendor/libdbus-sys/vendor/dbus/bus/config-parser-trivial.h (+69/-0) vendor/libdbus-sys/vendor/dbus/bus/config-parser.c (+4058/-0) vendor/libdbus-sys/vendor/dbus/bus/config-parser.h (+105/-0) vendor/libdbus-sys/vendor/dbus/bus/connection.c (+2941/-0) vendor/libdbus-sys/vendor/dbus/bus/connection.h (+176/-0) vendor/libdbus-sys/vendor/dbus/bus/containers.c (+1478/-0) vendor/libdbus-sys/vendor/dbus/bus/containers.h (+75/-0) vendor/libdbus-sys/vendor/dbus/bus/dbus.service.in (+11/-0) vendor/libdbus-sys/vendor/dbus/bus/dbus.socket.in (+5/-0) vendor/libdbus-sys/vendor/dbus/bus/desktop-file.c (+793/-0) vendor/libdbus-sys/vendor/dbus/bus/desktop-file.h (+62/-0) vendor/libdbus-sys/vendor/dbus/bus/dir-watch-default.c (+35/-0) vendor/libdbus-sys/vendor/dbus/bus/dir-watch-inotify.c (+294/-0) vendor/libdbus-sys/vendor/dbus/bus/dir-watch-kqueue.c (+335/-0) vendor/libdbus-sys/vendor/dbus/bus/dir-watch.h (+40/-0) vendor/libdbus-sys/vendor/dbus/bus/dispatch.c (+5272/-0) vendor/libdbus-sys/vendor/dbus/bus/dispatch.h (+38/-0) vendor/libdbus-sys/vendor/dbus/bus/driver.c (+3456/-0) vendor/libdbus-sys/vendor/dbus/bus/driver.h (+73/-0) vendor/libdbus-sys/vendor/dbus/bus/example-session-disable-stats.conf.in (+15/-0) vendor/libdbus-sys/vendor/dbus/bus/example-system-enable-stats.conf.in (+15/-0) vendor/libdbus-sys/vendor/dbus/bus/example-system-hardening-without-traditional-activation.conf (+31/-0) vendor/libdbus-sys/vendor/dbus/bus/expirelist.c (+401/-0) vendor/libdbus-sys/vendor/dbus/bus/expirelist.h (+80/-0) vendor/libdbus-sys/vendor/dbus/bus/legacy-config/session.conf.in (+19/-0) vendor/libdbus-sys/vendor/dbus/bus/legacy-config/system.conf.in (+19/-0) vendor/libdbus-sys/vendor/dbus/bus/main.c (+759/-0) vendor/libdbus-sys/vendor/dbus/bus/org.freedesktop.dbus-session.plist.in (+33/-0) vendor/libdbus-sys/vendor/dbus/bus/policy.c (+1408/-0) vendor/libdbus-sys/vendor/dbus/bus/policy.h (+182/-0) vendor/libdbus-sys/vendor/dbus/bus/selinux.c (+1006/-0) vendor/libdbus-sys/vendor/dbus/bus/selinux.h (+69/-0) vendor/libdbus-sys/vendor/dbus/bus/services.c (+1320/-0) vendor/libdbus-sys/vendor/dbus/bus/services.h (+93/-0) vendor/libdbus-sys/vendor/dbus/bus/session.conf.in (+80/-0) vendor/libdbus-sys/vendor/dbus/bus/signals.c (+3008/-0) vendor/libdbus-sys/vendor/dbus/bus/signals.h (+112/-0) vendor/libdbus-sys/vendor/dbus/bus/stats.c (+340/-0) vendor/libdbus-sys/vendor/dbus/bus/stats.h (+43/-0) vendor/libdbus-sys/vendor/dbus/bus/system.conf.in (+142/-0) vendor/libdbus-sys/vendor/dbus/bus/systemd-user/dbus.service.in (+11/-0) vendor/libdbus-sys/vendor/dbus/bus/systemd-user/dbus.socket.in (+6/-0) vendor/libdbus-sys/vendor/dbus/bus/sysusers.d/dbus.conf.in (+5/-0) vendor/libdbus-sys/vendor/dbus/bus/test.c (+326/-0) vendor/libdbus-sys/vendor/dbus/bus/test.h (+60/-0) vendor/libdbus-sys/vendor/dbus/bus/tmpfiles.d/dbus.conf.in (+13/-0) vendor/libdbus-sys/vendor/dbus/bus/utils.c (+48/-0) vendor/libdbus-sys/vendor/dbus/bus/utils.h (+36/-0) vendor/libdbus-sys/vendor/dbus/cleanup-man-pages.sh (+86/-0) vendor/libdbus-sys/vendor/dbus/cmake/ConfigureChecks.cmake (+218/-0) vendor/libdbus-sys/vendor/dbus/cmake/DBus1Config.cmake.in (+34/-0) vendor/libdbus-sys/vendor/dbus/cmake/DBus1Config.pkgconfig.in (+80/-0) vendor/libdbus-sys/vendor/dbus/cmake/DBus1ConfigVersion.cmake.in (+11/-0) vendor/libdbus-sys/vendor/dbus/cmake/bus-test.bat.cmake (+14/-0) vendor/libdbus-sys/vendor/dbus/cmake/bus/service.cmake (+3/-0) vendor/libdbus-sys/vendor/dbus/cmake/config.h.cmake (+331/-0) vendor/libdbus-sys/vendor/dbus/cmake/dbus-env.bat.cmake (+8/-0) vendor/libdbus-sys/vendor/dbus/cmake/i686-w64-mingw32.cmake (+19/-0) vendor/libdbus-sys/vendor/dbus/cmake/modules/COPYING-CMAKE-SCRIPTS (+22/-0) vendor/libdbus-sys/vendor/dbus/cmake/modules/CPackInstallConfig.cmake (+37/-0) vendor/libdbus-sys/vendor/dbus/cmake/modules/CheckPrototypeExists.cmake (+35/-0) vendor/libdbus-sys/vendor/dbus/cmake/modules/CheckStructMember.cmake (+36/-0) vendor/libdbus-sys/vendor/dbus/cmake/modules/FindDocBookXSL.cmake (+84/-0) vendor/libdbus-sys/vendor/dbus/cmake/modules/FindDoxygen.cmake (+3/-0) vendor/libdbus-sys/vendor/dbus/cmake/modules/FindGLIB2.cmake (+65/-0) vendor/libdbus-sys/vendor/dbus/cmake/modules/FindLibIconv.cmake (+52/-0) vendor/libdbus-sys/vendor/dbus/cmake/modules/MacroGetenvWinPath.cmake (+5/-0) vendor/libdbus-sys/vendor/dbus/cmake/modules/MacroLibrary.cmake (+9/-0) vendor/libdbus-sys/vendor/dbus/cmake/modules/MacroOptionalFindPackage.cmake (+22/-0) vendor/libdbus-sys/vendor/dbus/cmake/modules/Macros.cmake (+321/-0) vendor/libdbus-sys/vendor/dbus/cmake/modules/MacrosAutotools.cmake (+168/-0) vendor/libdbus-sys/vendor/dbus/cmake/modules/ProjectSourceGroup.cmake (+18/-0) vendor/libdbus-sys/vendor/dbus/cmake/modules/Win32Macros.cmake (+44/-0) vendor/libdbus-sys/vendor/dbus/cmake/x86_64-w64-mingw32.cmake (+19/-0) vendor/libdbus-sys/vendor/dbus/configure.ac (+1852/-0) vendor/libdbus-sys/vendor/dbus/dbus-1-uninstalled.pc.in (+20/-0) vendor/libdbus-sys/vendor/dbus/dbus-1.pc.in (+21/-0) vendor/libdbus-sys/vendor/dbus/dbus/CMakeLists.txt (+344/-0) vendor/libdbus-sys/vendor/dbus/dbus/Makefile.am (+335/-0) vendor/libdbus-sys/vendor/dbus/dbus/Version.in (+10/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-address.c (+652/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-address.h (+85/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-arch-deps.h.in (+61/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-asv-util.c (+376/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-asv-util.h (+69/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-auth.c (+2954/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-auth.h (+102/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-bus.c (+1603/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-bus.h (+95/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-connection-internal.h (+157/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-connection.c (+6399/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-connection.h (+526/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-credentials.c (+723/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-credentials.h (+118/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-dataslot.c (+464/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-dataslot.h (+98/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-errors.c (+435/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-errors.h (+90/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-file-unix.c (+415/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-file-win.c (+406/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-file.c (+27/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-file.h (+65/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-hash.c (+1594/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-hash.h (+226/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-init-win.cpp (+52/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-internals.c (+1162/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-internals.h (+473/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-keyring.c (+1155/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-keyring.h (+52/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-list.c (+817/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-list.h (+130/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-macros.h (+251/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-mainloop.c (+922/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-mainloop.h (+72/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-marshal-basic.c (+1986/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-marshal-basic.h (+231/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-marshal-byteswap.c (+244/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-marshal-byteswap.h (+38/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-marshal-header.c (+1574/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-marshal-header.h (+177/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-marshal-recursive.c (+2755/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-marshal-recursive.h (+200/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-marshal-validate.c (+1284/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-marshal-validate.h (+211/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-memory.c (+950/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-memory.h (+72/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-mempool.c (+452/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-mempool.h (+54/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-message-internal.h (+148/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-message-private.h (+146/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-message-util.c (+49/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-message.c (+5545/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-message.h (+383/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-misc.c (+224/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-misc.h (+58/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-nonce.c (+530/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-nonce.h (+67/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-object-tree.c (+2331/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-object-tree.h (+63/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-pending-call-internal.h (+71/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-pending-call.c (+870/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-pending-call.h (+98/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-pipe-unix.c (+83/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-pipe-win.c (+90/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-pipe.c (+85/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-pipe.h (+66/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-pollable-set-epoll.c (+377/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-pollable-set-poll.c (+320/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-pollable-set.c (+47/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-pollable-set.h (+123/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-protocol.h (+486/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-resources.c (+332/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-resources.h (+61/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-server-debug-pipe.c (+431/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-server-debug-pipe.h (+47/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-server-launchd.c (+213/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-server-launchd.h (+36/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-server-protected.h (+180/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-server-socket.c (+600/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-server-socket.h (+56/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-server-unix.c (+376/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-server-unix.h (+37/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-server-win.c (+95/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-server-win.h (+36/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-server.c (+1195/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-server.h (+125/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-sha.c (+512/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-sha.h (+56/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-shared.h (+136/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-shell.c (+634/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-shell.h (+39/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-signature.c (+415/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-signature.h (+95/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-sockets-win.h (+53/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-spawn-unix.c (+1542/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-spawn-win.c (+802/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-spawn.h (+76/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-string-private.h (+133/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-string-util.c (+122/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-string.c (+2779/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-string.h (+439/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-syntax.c (+309/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-syntax.h (+58/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-sysdeps-pthread.c (+320/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-sysdeps-thread-win.c (+313/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-sysdeps-unix.c (+5087/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-sysdeps-unix.h (+183/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-sysdeps-util-unix.c (+1738/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-sysdeps-util-win.c (+1678/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-sysdeps-util.c (+85/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-sysdeps-win.c (+4310/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-sysdeps-win.h (+119/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-sysdeps-wince-glue.c (+1165/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-sysdeps-wince-glue.h (+246/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-sysdeps.c (+980/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-sysdeps.h (+746/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-test-tap.c (+215/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-test-tap.h (+65/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-test.h (+55/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-threads-internal.h (+97/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-threads.c (+450/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-threads.h (+189/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-timeout.c (+517/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-timeout.h (+82/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-transport-protected.h (+146/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-transport-socket.c (+1505/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-transport-socket.h (+46/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-transport-unix.c (+409/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-transport-unix.h (+37/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-transport-win.c (+58/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-transport-win.h (+33/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-transport.c (+1627/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-transport.h (+119/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-types.h (+156/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-userdb-util.c (+425/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-userdb.c (+733/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-userdb.h (+121/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-uuidgen.c (+130/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-uuidgen.h (+46/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-valgrind-internal.h (+67/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-watch.c (+762/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus-watch.h (+113/-0) vendor/libdbus-sys/vendor/dbus/dbus/dbus.h (+104/-0) vendor/libdbus-sys/vendor/dbus/dbus/versioninfo.rc.in (+57/-0) vendor/libdbus-sys/vendor/dbus/doc/CMakeLists.txt (+245/-0) vendor/libdbus-sys/vendor/dbus/doc/Makefile.am (+225/-0) vendor/libdbus-sys/vendor/dbus/doc/TODO (+155/-0) vendor/libdbus-sys/vendor/dbus/doc/busconfig.dtd (+70/-0) vendor/libdbus-sys/vendor/dbus/doc/catalog.xml.in (+10/-0) vendor/libdbus-sys/vendor/dbus/doc/dbus-api-design.duck (+893/-0) vendor/libdbus-sys/vendor/dbus/doc/dbus-cleanup-sockets.1.xml.in (+65/-0) vendor/libdbus-sys/vendor/dbus/doc/dbus-daemon.1.xml.in (+1556/-0) vendor/libdbus-sys/vendor/dbus/doc/dbus-faq.xml (+674/-0) vendor/libdbus-sys/vendor/dbus/doc/dbus-launch.1.xml.in (+308/-0) vendor/libdbus-sys/vendor/dbus/doc/dbus-monitor.1.xml.in (+133/-0) vendor/libdbus-sys/vendor/dbus/doc/dbus-run-session.1.xml.in (+152/-0) vendor/libdbus-sys/vendor/dbus/doc/dbus-send.1.xml.in (+177/-0) vendor/libdbus-sys/vendor/dbus/doc/dbus-specification.xml (+7575/-0) vendor/libdbus-sys/vendor/dbus/doc/dbus-test-plan.xml (+232/-0) vendor/libdbus-sys/vendor/dbus/doc/dbus-test-tool.1.xml.in (+325/-0) vendor/libdbus-sys/vendor/dbus/doc/dbus-tutorial.xml (+741/-0) vendor/libdbus-sys/vendor/dbus/doc/dbus-update-activation-environment.1.xml.in (+213/-0) vendor/libdbus-sys/vendor/dbus/doc/dbus-uuidgen.1.xml.in (+126/-0) vendor/libdbus-sys/vendor/dbus/doc/dcop-howto.txt (+559/-0) vendor/libdbus-sys/vendor/dbus/doc/diagram.svg (+590/-0) vendor/libdbus-sys/vendor/dbus/doc/doxygen_to_devhelp.xsl (+46/-0) vendor/libdbus-sys/vendor/dbus/doc/file-boilerplate.c (+27/-0) vendor/libdbus-sys/vendor/dbus/doc/index.html.in (+56/-0) vendor/libdbus-sys/vendor/dbus/doc/introspect.dtd (+37/-0) vendor/libdbus-sys/vendor/dbus/doc/introspect.xsl (+112/-0) vendor/libdbus-sys/vendor/dbus/doc/system-activation.txt (+81/-0) vendor/libdbus-sys/vendor/dbus/m4/as-ac-expand.m4 (+49/-0) vendor/libdbus-sys/vendor/dbus/m4/ax_ac_append_to_file.m4 (+32/-0) vendor/libdbus-sys/vendor/dbus/m4/ax_ac_print_to_file.m4 (+32/-0) vendor/libdbus-sys/vendor/dbus/m4/ax_add_am_macro_static.m4 (+28/-0) vendor/libdbus-sys/vendor/dbus/m4/ax_am_macros_static.m4 (+38/-0) vendor/libdbus-sys/vendor/dbus/m4/ax_code_coverage.m4 (+272/-0) vendor/libdbus-sys/vendor/dbus/m4/ax_file_escapes.m4 (+30/-0) vendor/libdbus-sys/vendor/dbus/m4/ld-version-script.m4 (+43/-0) vendor/libdbus-sys/vendor/dbus/m4/pkg.m4 (+155/-0) vendor/libdbus-sys/vendor/dbus/m4/visibility.m4 (+77/-0) vendor/libdbus-sys/vendor/dbus/maint/release-checklist.md (+82/-0) vendor/libdbus-sys/vendor/dbus/test/CMakeLists.txt (+279/-0) vendor/libdbus-sys/vendor/dbus/test/Makefile.am (+863/-0) vendor/libdbus-sys/vendor/dbus/test/bus/dispatch-sha1.c (+62/-0) vendor/libdbus-sys/vendor/dbus/test/bus/dispatch.c (+62/-0) vendor/libdbus-sys/vendor/dbus/test/bus/launch-helper-for-tests.c (+8/-0) vendor/libdbus-sys/vendor/dbus/test/bus/launch-helper-oom.c (+119/-0) vendor/libdbus-sys/vendor/dbus/test/bus/main.c (+71/-0) vendor/libdbus-sys/vendor/dbus/test/bus/system.c (+50/-0) vendor/libdbus-sys/vendor/dbus/test/containers.c (+1806/-0) vendor/libdbus-sys/vendor/dbus/test/corrupt.c (+431/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/anonymous-client-successful.auth-script (+16/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/anonymous-server-successful.auth-script (+13/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/cancel.auth-script (+19/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/client-out-of-mechanisms.auth-script (+7/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/cookie-sha1-username.auth-script (+12/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/cookie-sha1.auth-script (+11/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/external-auto.auth-script (+18/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/external-failed.auth-script (+11/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/external-root.auth-script (+11/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/external-silly.auth-script (+12/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/external-successful.auth-script (+12/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/external-username.auth-script (+24/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/extra-bytes.auth-script (+10/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/fail-after-n-attempts.auth-script (+34/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/fallback.auth-script (+17/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/invalid-command-client.auth-script (+8/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/invalid-command.auth-script (+7/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/invalid-hex-encoding.auth-script (+6/-0) vendor/libdbus-sys/vendor/dbus/test/data/auth/mechanisms.auth-script (+8/-0) vendor/libdbus-sys/vendor/dbus/test/data/dbus-installed-tests.aaprofile.in (+98/-0) vendor/libdbus-sys/vendor/dbus/test/data/equiv-config-files/basic/basic-1.conf (+25/-0) vendor/libdbus-sys/vendor/dbus/test/data/equiv-config-files/basic/basic-2.conf (+5/-0) vendor/libdbus-sys/vendor/dbus/test/data/equiv-config-files/basic/basic.d/basic.conf (+13/-0) vendor/libdbus-sys/vendor/dbus/test/data/equiv-config-files/entities/basic.d/basic.conf (+13/-0) vendor/libdbus-sys/vendor/dbus/test/data/equiv-config-files/entities/entities-1.conf (+14/-0) vendor/libdbus-sys/vendor/dbus/test/data/equiv-config-files/entities/entities-2.conf (+5/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/apparmor-bad-attribute.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/apparmor-bad-mode.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/bad-attribute-2.conf (+3/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/bad-attribute.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/bad-element.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/bad-limit.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/badselinux-1.conf (+10/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/badselinux-2.conf (+10/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/circular-1.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/circular-2.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/circular-3.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/double-attribute.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/impossible-send.conf (+6/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/limit-no-name.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/ludicrous-limit.conf (+5/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/negative-limit.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/non-numeric-limit.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/not-well-formed.conf (+5/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/policy-bad-at-console.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/policy-bad-attribute.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/policy-bad-context.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/policy-bad-rule-attribute.conf (+6/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/policy-contradiction.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/policy-member-no-path.conf (+6/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/policy-mixed.conf (+6/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/policy-no-attributes.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/policy-no-rule-attribute.conf (+6/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/send-and-receive.conf (+6/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/truncated-file.conf (+9/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-config-files/unknown-limit.conf (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-messages/fixed-array-not-divisible.message-raw.hex (+55/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-messages/issue418.message-raw.hex (+47/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-messages/mis-nested-sig.message-raw.hex (+26/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-messages/truncated-variant-sig.message-raw.hex (+23/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-messages/zero-length-variant-sig.message-raw.hex (+23/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-service-files-system/org.freedesktop.DBus.TestSuiteNoExec.service.in (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-service-files-system/org.freedesktop.DBus.TestSuiteNoService.service.in (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/invalid-service-files-system/org.freedesktop.DBus.TestSuiteNoUser.service.in (+3/-0) vendor/libdbus-sys/vendor/dbus/test/data/sha-1/Readme.txt (+83/-0) vendor/libdbus-sys/vendor/dbus/test/data/sha-1/bit-hashes.sha1 (+1239/-0) vendor/libdbus-sys/vendor/dbus/test/data/sha-1/bit-messages.sha1 (+4009/-0) vendor/libdbus-sys/vendor/dbus/test/data/sha-1/byte-hashes.sha1 (+343/-0) vendor/libdbus-sys/vendor/dbus/test/data/sha-1/byte-messages.sha1 (+2294/-0) vendor/libdbus-sys/vendor/dbus/test/data/systemd-activation/com.example.ReceiveDenied.service (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/systemd-activation/com.example.ReceiveDeniedByAppArmorLabel.service.in (+5/-0) vendor/libdbus-sys/vendor/dbus/test/data/systemd-activation/com.example.SendDenied.service (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/systemd-activation/com.example.SendDeniedByAppArmorLabel.service.in (+5/-0) vendor/libdbus-sys/vendor/dbus/test/data/systemd-activation/com.example.SendDeniedByAppArmorName.service (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/systemd-activation/com.example.SendDeniedByNonexistentAppArmorLabel.service.in (+6/-0) vendor/libdbus-sys/vendor/dbus/test/data/systemd-activation/com.example.SendPrefixDenied.SendPrefixAllowed.internal.service (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/systemd-activation/com.example.SendPrefixDenied.internal.service (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/systemd-activation/com.example.SendPrefixDenied.service (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/systemd-activation/com.example.SystemdActivatable1.service (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/systemd-activation/com.example.SystemdActivatable2.service (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/systemd-activation/com.example.SystemdActivatable3.service.in (+7/-0) vendor/libdbus-sys/vendor/dbus/test/data/systemd-activation/org.freedesktop.systemd1.service (+3/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files-system/debug-allow-all-fail.conf.in (+17/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files-system/debug-allow-all-pass.conf.in (+17/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files-system/many-rules.conf (+65/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files-system/system.d/test.conf (+20/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files-system/tmp-session-like-system.conf.in (+89/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/as-another-user.conf.in (+28/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/basic.conf (+32/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/basic.d/basic.conf (+13/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/check-own-rules.conf (+14/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/count-fds.conf.in (+22/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/debug-allow-all-sha1.conf.in (+16/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/debug-allow-all.conf.in (+15/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/entities.conf (+14/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/finite-timeout.conf.in (+19/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/forbidding.conf.in (+28/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/incoming-limit.conf.in (+21/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/limit-containers.conf.in (+16/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/listen-unix-runtime.conf (+11/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/many-rules.conf (+57/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/max-completed-connections.conf.in (+18/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/max-connections-per-user.conf.in (+18/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/max-containers.conf.in (+18/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/max-match-rules-per-connection.conf.in (+18/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/max-names-per-connection.conf.in (+18/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/max-replies-per-connection.conf.in (+18/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/minimal.conf (+3/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/multi-user.conf.in (+15/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/pending-fd-timeout.conf.in (+20/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/send-destination-prefix-rules.conf.in (+121/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/standard-session-dirs.conf (+8/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/systemd-activation.conf.in (+21/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-config-files/tmp-session.conf.in (+60/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-messages/byteswap-fd-index.message-raw.hex (+43/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-messages/minimal.message-raw.hex (+25/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-service-files-system/org.freedesktop.DBus.TestSuiteEchoService.service.in (+5/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-service-files-system/org.freedesktop.DBus.TestSuiteSegfaultService.service.in (+5/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-service-files-system/org.freedesktop.DBus.TestSuiteShellEchoServiceFail.service.in (+5/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-service-files-system/org.freedesktop.DBus.TestSuiteShellEchoServiceSuccess.service.in (+5/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-service-files/org.freedesktop.DBus.TestSuite.PrivServer.service.in (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-service-files/org.freedesktop.DBus.TestSuiteEchoService.service.in (+3/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-service-files/org.freedesktop.DBus.TestSuiteForkingEchoService.service.in (+3/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-service-files/org.freedesktop.DBus.TestSuiteSegfaultService.service.in (+4/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-service-files/org.freedesktop.DBus.TestSuiteShellEchoServiceFail.service.in (+3/-0) vendor/libdbus-sys/vendor/dbus/test/data/valid-service-files/org.freedesktop.DBus.TestSuiteShellEchoServiceSuccess.service.in (+4/-0) vendor/libdbus-sys/vendor/dbus/test/dbus-daemon-eavesdrop.c (+443/-0) vendor/libdbus-sys/vendor/dbus/test/dbus-daemon.c (+2892/-0) vendor/libdbus-sys/vendor/dbus/test/dbus-test-runner (+43/-0) vendor/libdbus-sys/vendor/dbus/test/disable-crash-handling.c (+109/-0) vendor/libdbus-sys/vendor/dbus/test/disable-crash-handling.h (+29/-0) vendor/libdbus-sys/vendor/dbus/test/fdpass.c (+960/-0) vendor/libdbus-sys/vendor/dbus/test/glib-tap-test.sh (+33/-0) vendor/libdbus-sys/vendor/dbus/test/header-fields.c (+831/-0) vendor/libdbus-sys/vendor/dbus/test/integration/transient-services.sh (+202/-0) vendor/libdbus-sys/vendor/dbus/test/internals/address.c (+203/-0) vendor/libdbus-sys/vendor/dbus/test/internals/assertions.c (+236/-0) vendor/libdbus-sys/vendor/dbus/test/internals/atomic.c (+91/-0) vendor/libdbus-sys/vendor/dbus/test/internals/dbus-auth-script.c (+889/-0) vendor/libdbus-sys/vendor/dbus/test/internals/dbus-auth-script.h (+37/-0) vendor/libdbus-sys/vendor/dbus/test/internals/dbus-auth-util.c (+173/-0) vendor/libdbus-sys/vendor/dbus/test/internals/dbus-credentials-util.c (+352/-0) vendor/libdbus-sys/vendor/dbus/test/internals/dbus-marshal-byteswap-util.c (+107/-0) vendor/libdbus-sys/vendor/dbus/test/internals/dbus-marshal-recursive-util.c (+3525/-0) vendor/libdbus-sys/vendor/dbus/test/internals/dbus-marshal-recursive-util.h (+36/-0) vendor/libdbus-sys/vendor/dbus/test/internals/dbus-marshal-validate-util.c (+508/-0) vendor/libdbus-sys/vendor/dbus/test/internals/dbus-message-factory.c (+1313/-0) vendor/libdbus-sys/vendor/dbus/test/internals/dbus-message-factory.h (+61/-0) vendor/libdbus-sys/vendor/dbus/test/internals/dbus-message-util.c (+1685/-0) vendor/libdbus-sys/vendor/dbus/test/internals/dbus-message-util.h (+39/-0) vendor/libdbus-sys/vendor/dbus/test/internals/dbus-string-util.c (+881/-0) vendor/libdbus-sys/vendor/dbus/test/internals/dbus-sysdeps-util.c (+156/-0) vendor/libdbus-sys/vendor/dbus/test/internals/desktop-file.c (+314/-0) vendor/libdbus-sys/vendor/dbus/test/internals/hash.c (+525/-0) vendor/libdbus-sys/vendor/dbus/test/internals/marshal-recursive.c (+41/-0) vendor/libdbus-sys/vendor/dbus/test/internals/mempool.c (+223/-0) vendor/libdbus-sys/vendor/dbus/test/internals/message-internals.c (+41/-0) vendor/libdbus-sys/vendor/dbus/test/internals/misc-internals.c (+1016/-0) vendor/libdbus-sys/vendor/dbus/test/internals/misc-internals.h (+39/-0) vendor/libdbus-sys/vendor/dbus/test/internals/printf.c (+110/-0) vendor/libdbus-sys/vendor/dbus/test/internals/refs.c (+651/-0) vendor/libdbus-sys/vendor/dbus/test/internals/server-oom.c (+151/-0) vendor/libdbus-sys/vendor/dbus/test/internals/sha.c (+495/-0) vendor/libdbus-sys/vendor/dbus/test/internals/spawn-oom.c (+344/-0) vendor/libdbus-sys/vendor/dbus/test/internals/sysdeps.c (+207/-0) vendor/libdbus-sys/vendor/dbus/test/internals/syslog.c (+119/-0) vendor/libdbus-sys/vendor/dbus/test/internals/variant.c (+577/-0) vendor/libdbus-sys/vendor/dbus/test/loopback.c (+529/-0) vendor/libdbus-sys/vendor/dbus/test/manual-authz.c (+411/-0) vendor/libdbus-sys/vendor/dbus/test/manual-backtrace.c (+62/-0) vendor/libdbus-sys/vendor/dbus/test/manual-dir-iter.c (+94/-0) vendor/libdbus-sys/vendor/dbus/test/manual-paths.c (+107/-0) vendor/libdbus-sys/vendor/dbus/test/manual-tcp.c (+46/-0) vendor/libdbus-sys/vendor/dbus/test/marshal.c (+279/-0) vendor/libdbus-sys/vendor/dbus/test/message.c (+568/-0) vendor/libdbus-sys/vendor/dbus/test/monitor.c (+2012/-0) vendor/libdbus-sys/vendor/dbus/test/name-test/CMakeLists.txt (+16/-0) vendor/libdbus-sys/vendor/dbus/test/name-test/Makefile.am (+111/-0) vendor/libdbus-sys/vendor/dbus/test/name-test/run-test-systemserver.sh (+75/-0) vendor/libdbus-sys/vendor/dbus/test/name-test/run-test.sh (+60/-0) vendor/libdbus-sys/vendor/dbus/test/name-test/test-autolaunch.c (+63/-0) vendor/libdbus-sys/vendor/dbus/test/name-test/test-ids.c (+79/-0) vendor/libdbus-sys/vendor/dbus/test/name-test/test-pending-call-disconnected.c (+124/-0) vendor/libdbus-sys/vendor/dbus/test/name-test/test-pending-call-dispatch.c (+160/-0) vendor/libdbus-sys/vendor/dbus/test/name-test/test-pending-call-timeout.c (+116/-0) vendor/libdbus-sys/vendor/dbus/test/name-test/test-privserver-client.c (+190/-0) vendor/libdbus-sys/vendor/dbus/test/name-test/test-shutdown.c (+85/-0) vendor/libdbus-sys/vendor/dbus/test/name-test/test-threads-init.c (+201/-0) vendor/libdbus-sys/vendor/dbus/test/relay.c (+363/-0) vendor/libdbus-sys/vendor/dbus/test/sd-activation.c (+1132/-0) vendor/libdbus-sys/vendor/dbus/test/shell-test.c (+189/-0) vendor/libdbus-sys/vendor/dbus/test/spawn-test.c (+44/-0) vendor/libdbus-sys/vendor/dbus/test/syntax.c (+307/-0) vendor/libdbus-sys/vendor/dbus/test/tap-test.sh.in (+32/-0) vendor/libdbus-sys/vendor/dbus/test/test-apparmor-activation.sh (+57/-0) vendor/libdbus-sys/vendor/dbus/test/test-dbus-daemon-fork.sh (+106/-0) vendor/libdbus-sys/vendor/dbus/test/test-dbus-launch-eval.sh (+74/-0) vendor/libdbus-sys/vendor/dbus/test/test-dbus-launch-x11.sh (+267/-0) vendor/libdbus-sys/vendor/dbus/test/test-exit.c (+9/-0) vendor/libdbus-sys/vendor/dbus/test/test-names.c (+79/-0) vendor/libdbus-sys/vendor/dbus/test/test-privserver.c (+170/-0) vendor/libdbus-sys/vendor/dbus/test/test-segfault.c (+24/-0) vendor/libdbus-sys/vendor/dbus/test/test-service.c (+511/-0) vendor/libdbus-sys/vendor/dbus/test/test-shell-service.c (+204/-0) vendor/libdbus-sys/vendor/dbus/test/test-sleep-forever.c (+22/-0) vendor/libdbus-sys/vendor/dbus/test/test-utils-glib.c (+1025/-0) vendor/libdbus-sys/vendor/dbus/test/test-utils-glib.h (+143/-0) vendor/libdbus-sys/vendor/dbus/test/test-utils.c (+861/-0) vendor/libdbus-sys/vendor/dbus/test/test-utils.h (+107/-0) vendor/libdbus-sys/vendor/dbus/test/thread-blocking.c (+305/-0) vendor/libdbus-sys/vendor/dbus/test/uid-permissions.c (+266/-0) vendor/libdbus-sys/vendor/dbus/tools/CMakeLists.txt (+140/-0) vendor/libdbus-sys/vendor/dbus/tools/GetAllMatchRules.py (+112/-0) vendor/libdbus-sys/vendor/dbus/tools/Makefile.am (+156/-0) vendor/libdbus-sys/vendor/dbus/tools/Win32.Manifest (+10/-0) vendor/libdbus-sys/vendor/dbus/tools/ci-build.sh (+403/-0) vendor/libdbus-sys/vendor/dbus/tools/ci-install.sh (+240/-0) vendor/libdbus-sys/vendor/dbus/tools/cmake-format (+147/-0) vendor/libdbus-sys/vendor/dbus/tools/dbus-cleanup-sockets.c (+453/-0) vendor/libdbus-sys/vendor/dbus/tools/dbus-echo.c (+250/-0) vendor/libdbus-sys/vendor/dbus/tools/dbus-launch-win.c (+167/-0) vendor/libdbus-sys/vendor/dbus/tools/dbus-launch-x11.c (+474/-0) vendor/libdbus-sys/vendor/dbus/tools/dbus-launch.c (+1442/-0) vendor/libdbus-sys/vendor/dbus/tools/dbus-launch.h (+59/-0) vendor/libdbus-sys/vendor/dbus/tools/dbus-monitor.c (+602/-0) vendor/libdbus-sys/vendor/dbus/tools/dbus-print-message.c (+602/-0) vendor/libdbus-sys/vendor/dbus/tools/dbus-print-message.h (+31/-0) vendor/libdbus-sys/vendor/dbus/tools/dbus-run-session.c (+702/-0) vendor/libdbus-sys/vendor/dbus/tools/dbus-send.c (+706/-0) vendor/libdbus-sys/vendor/dbus/tools/dbus-spam.c (+537/-0) vendor/libdbus-sys/vendor/dbus/tools/dbus-update-activation-environment.c (+428/-0) vendor/libdbus-sys/vendor/dbus/tools/dbus-uuidgen.c (+163/-0) vendor/libdbus-sys/vendor/dbus/tools/docker/windows/Dockerfile (+65/-0) vendor/libdbus-sys/vendor/dbus/tools/docker/windows/Install.cmd (+18/-0) vendor/libdbus-sys/vendor/dbus/tools/docker/windows/container.ps1 (+60/-0) vendor/libdbus-sys/vendor/dbus/tools/run-with-tmp-session-bus.sh (+42/-0) vendor/libdbus-sys/vendor/dbus/tools/strtoll.c (+166/-0) vendor/libdbus-sys/vendor/dbus/tools/strtoull.c (+145/-0) vendor/libdbus-sys/vendor/dbus/tools/test-tool.c (+88/-0) vendor/libdbus-sys/vendor/dbus/tools/test-tool.h (+31/-0) vendor/libdbus-sys/vendor/dbus/tools/tool-common.c (+89/-0) vendor/libdbus-sys/vendor/dbus/tools/tool-common.h (+39/-0) vendor/libdbus-sys/vendor/dbus/tools/user-path.reg.in (+5/-0) vendor/libgit2-sys/.cargo-checksum.json (+1/-0) vendor/libgit2-sys/CHANGELOG.md (+194/-0) vendor/libgit2-sys/Cargo.toml (+69/-0) vendor/libgit2-sys/LICENSE-APACHE (+201/-0) vendor/libgit2-sys/LICENSE-MIT (+25/-0) vendor/libgit2-sys/build.rs (+295/-0) vendor/libgit2-sys/lib.rs (+4348/-0) vendor/libloading/.cargo-checksum.json (+1/-0) vendor/libloading/Cargo.toml (+55/-0) vendor/libloading/LICENSE (+12/-0) vendor/libloading/README.mkd (+16/-0) vendor/libloading/src/changelog.rs (+385/-0) vendor/libloading/src/error.rs (+136/-0) vendor/libloading/src/lib.rs (+78/-0) vendor/libloading/src/os/mod.rs (+27/-0) vendor/libloading/src/os/unix/consts.rs (+261/-0) vendor/libloading/src/os/unix/mod.rs (+484/-0) vendor/libloading/src/os/windows/mod.rs (+520/-0) vendor/libloading/src/safe.rs (+320/-0) vendor/libloading/src/test_helpers.rs (+37/-0) vendor/libloading/src/util.rs (+34/-0) vendor/libloading/tests/constants.rs (+13/-0) vendor/libloading/tests/functions.rs (+297/-0) vendor/libloading/tests/library_filename.rs (+17/-0) vendor/libloading/tests/markers.rs (+96/-0) vendor/libloading/tests/windows.rs (+75/-0) vendor/libnghttp2-sys/.cargo-checksum.json (+1/-0) vendor/libnghttp2-sys/Cargo.lock (+23/-0) vendor/libnghttp2-sys/Cargo.toml (+32/-0) vendor/libnghttp2-sys/LICENSE-APACHE (+201/-0) vendor/libnghttp2-sys/LICENSE-MIT (+25/-0) vendor/libnghttp2-sys/README.md (+49/-0) vendor/libnghttp2-sys/build.rs (+119/-0) vendor/libnghttp2-sys/examples/smoke.rs (+7/-0) vendor/libnghttp2-sys/src/lib.rs (+4825/-0) vendor/libredox/.cargo-checksum.json (+1/-0) vendor/libredox/Cargo.toml (+29/-0) vendor/libredox/src/lib.rs (+0/-0) vendor/libsqlite3-sys/.cargo-checksum.json (+1/-0) vendor/libsqlite3-sys/Cargo.toml (+117/-0) vendor/libsqlite3-sys/LICENSE (+19/-0) vendor/libsqlite3-sys/README.md (+247/-0) vendor/libsqlite3-sys/Upgrade.md (+18/-0) vendor/libsqlite3-sys/bindgen-bindings/bindgen_3.14.0.rs (+2801/-0) vendor/libsqlite3-sys/bindgen-bindings/bindgen_3.14.0_ext.rs (+6212/-0) vendor/libsqlite3-sys/build.rs (+803/-0) vendor/libsqlite3-sys/sqlcipher/LICENSE (+24/-0) vendor/libsqlite3-sys/sqlcipher/bindgen_bundled_version.rs (+3459/-0) vendor/libsqlite3-sys/sqlcipher/sqlite3.c (+261439/-0) vendor/libsqlite3-sys/sqlcipher/sqlite3.h (+13434/-0) vendor/libsqlite3-sys/sqlcipher/sqlite3ext.h (+719/-0) vendor/libsqlite3-sys/sqlite3/bindgen_bundled_version.rs (+3432/-0) vendor/libsqlite3-sys/sqlite3/bindgen_bundled_version_ext.rs (+7679/-0) vendor/libsqlite3-sys/sqlite3/sqlite3.c (+257673/-0) vendor/libsqlite3-sys/sqlite3/sqlite3.h (+13425/-0) vendor/libsqlite3-sys/sqlite3/sqlite3ext.h (+719/-0) vendor/libsqlite3-sys/sqlite3/wasm32-wasi-vfs.c (+690/-0) vendor/libsqlite3-sys/src/error.rs (+343/-0) vendor/libsqlite3-sys/src/lib.rs (+40/-0) vendor/libsqlite3-sys/upgrade.sh (+43/-0) vendor/libsqlite3-sys/upgrade_sqlcipher.sh (+35/-0) vendor/libsqlite3-sys/wrapper.h (+1/-0) vendor/libsqlite3-sys/wrapper_ext.h (+2/-0) vendor/libssh2-sys/.cargo-checksum.json (+1/-0) vendor/libssh2-sys/Cargo.toml (+58/-0) vendor/libssh2-sys/build.rs (+239/-0) vendor/libssh2-sys/lib.rs (+779/-0) vendor/libssh2-sys/libssh2/CMakeLists.txt (+117/-0) vendor/libssh2-sys/libssh2/COPYING (+44/-0) vendor/libssh2-sys/libssh2/Makefile.OpenSSL.inc (+3/-0) vendor/libssh2-sys/libssh2/Makefile.WinCNG.inc (+3/-0) vendor/libssh2-sys/libssh2/Makefile.am (+157/-0) vendor/libssh2-sys/libssh2/Makefile.inc (+8/-0) vendor/libssh2-sys/libssh2/Makefile.libgcrypt.inc (+3/-0) vendor/libssh2-sys/libssh2/Makefile.mbedTLS.inc (+3/-0) vendor/libssh2-sys/libssh2/Makefile.os400qc3.inc (+2/-0) vendor/libssh2-sys/libssh2/Makefile.wolfSSL.inc (+3/-0) vendor/libssh2-sys/libssh2/NEWS (+3/-0) vendor/libssh2-sys/libssh2/NMakefile (+33/-0) vendor/libssh2-sys/libssh2/README (+19/-0) vendor/libssh2-sys/libssh2/README.md (+16/-0) vendor/libssh2-sys/libssh2/RELEASE-NOTES (+62/-0) vendor/libssh2-sys/libssh2/acinclude.m4 (+525/-0) vendor/libssh2-sys/libssh2/appveyor.yml (+122/-0) vendor/libssh2-sys/libssh2/buildconf (+8/-0) vendor/libssh2-sys/libssh2/ci/appveyor/docker-bridge.bat (+10/-0) vendor/libssh2-sys/libssh2/ci/appveyor/docker-bridge.ps1 (+22/-0) vendor/libssh2-sys/libssh2/ci/checksrc.pl (+756/-0) vendor/libssh2-sys/libssh2/ci/checksrc.sh (+8/-0) vendor/libssh2-sys/libssh2/ci/ossfuzz.sh (+29/-0) vendor/libssh2-sys/libssh2/cmake/CheckFunctionExistsMayNeedLibrary.cmake (+81/-0) vendor/libssh2-sys/libssh2/cmake/CheckNonblockingSocketSupport.cmake (+119/-0) vendor/libssh2-sys/libssh2/cmake/CopyRuntimeDependencies.cmake (+72/-0) vendor/libssh2-sys/libssh2/cmake/FindLibgcrypt.cmake (+53/-0) vendor/libssh2-sys/libssh2/cmake/FindmbedTLS.cmake (+64/-0) vendor/libssh2-sys/libssh2/cmake/SocketLibraries.cmake (+64/-0) vendor/libssh2-sys/libssh2/cmake/Toolchain-Linux-32.cmake (+42/-0) vendor/libssh2-sys/libssh2/cmake/max_warnings.cmake (+23/-0) vendor/libssh2-sys/libssh2/config.rpath (+660/-0) vendor/libssh2-sys/libssh2/configure.ac (+420/-0) vendor/libssh2-sys/libssh2/docs/AUTHORS (+79/-0) vendor/libssh2-sys/libssh2/docs/BINDINGS (+29/-0) vendor/libssh2-sys/libssh2/docs/CMakeLists.txt (+212/-0) vendor/libssh2-sys/libssh2/docs/HACKING (+13/-0) vendor/libssh2-sys/libssh2/docs/HACKING-CRYPTO (+943/-0) vendor/libssh2-sys/libssh2/docs/INSTALL_AUTOTOOLS (+355/-0) vendor/libssh2-sys/libssh2/docs/INSTALL_CMAKE.md (+193/-0) vendor/libssh2-sys/libssh2/docs/Makefile.am (+179/-0) vendor/libssh2-sys/libssh2/docs/SECURITY.md (+100/-0) vendor/libssh2-sys/libssh2/docs/TODO (+174/-0) vendor/libssh2-sys/libssh2/docs/libssh2_agent_connect.3 (+23/-0) vendor/libssh2-sys/libssh2/docs/libssh2_agent_disconnect.3 (+20/-0) vendor/libssh2-sys/libssh2/docs/libssh2_agent_free.3 (+20/-0) vendor/libssh2-sys/libssh2/docs/libssh2_agent_get_identity.3 (+34/-0) vendor/libssh2-sys/libssh2/docs/libssh2_agent_get_identity_path.3 (+22/-0) vendor/libssh2-sys/libssh2/docs/libssh2_agent_init.3 (+26/-0) vendor/libssh2-sys/libssh2/docs/libssh2_agent_list_identities.3 (+24/-0) vendor/libssh2-sys/libssh2/docs/libssh2_agent_set_identity_path.3 (+22/-0) vendor/libssh2-sys/libssh2/docs/libssh2_agent_userauth.3 (+29/-0) vendor/libssh2-sys/libssh2/docs/libssh2_banner_set.3 (+32/-0) vendor/libssh2-sys/libssh2/docs/libssh2_base64_decode.3 (+25/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_close.3 (+29/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_direct_tcpip.3 (+18/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_direct_tcpip_ex.3 (+35/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_eof.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_exec.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_flush.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_flush_ex.3 (+32/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_flush_stderr.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_forward_accept.3 (+20/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_forward_cancel.3 (+27/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_forward_listen.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_forward_listen_ex.3 (+46/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_free.3 (+25/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_get_exit_signal.3 (+34/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_get_exit_status.3 (+18/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_handle_extended_data.3 (+35/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_handle_extended_data2.3 (+35/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_ignore_extended_data.3 (+20/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_open_ex.3 (+54/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_open_session.3 (+18/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_process_startup.3 (+38/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_read.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_read_ex.3 (+45/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_read_stderr.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_receive_window_adjust.3 (+29/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_receive_window_adjust2.3 (+27/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_request_auth_agent.3 (+22/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_request_pty.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_request_pty_ex.3 (+47/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_request_pty_size.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_request_pty_size_ex.3 (+12/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_send_eof.3 (+24/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_set_blocking.3 (+23/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_setenv.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_setenv_ex.3 (+41/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_shell.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_subsystem.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_wait_closed.3 (+22/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_wait_eof.3 (+19/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_window_read.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_window_read_ex.3 (+24/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_window_write.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_window_write_ex.3 (+21/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_write.3 (+18/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_write_ex.3 (+52/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_write_stderr.3 (+18/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_x11_req.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_channel_x11_req_ex.3 (+44/-0) vendor/libssh2-sys/libssh2/docs/libssh2_crypto_engine.3 (+12/-0) vendor/libssh2-sys/libssh2/docs/libssh2_exit.3 (+14/-0) vendor/libssh2-sys/libssh2/docs/libssh2_free.3 (+19/-0) vendor/libssh2-sys/libssh2/docs/libssh2_hostkey_hash.3 (+26/-0) vendor/libssh2-sys/libssh2/docs/libssh2_init.3 (+20/-0) vendor/libssh2-sys/libssh2/docs/libssh2_keepalive_config.3 (+27/-0) vendor/libssh2-sys/libssh2/docs/libssh2_keepalive_send.3 (+18/-0) vendor/libssh2-sys/libssh2/docs/libssh2_knownhost_add.3 (+66/-0) vendor/libssh2-sys/libssh2/docs/libssh2_knownhost_addc.3 (+68/-0) vendor/libssh2-sys/libssh2/docs/libssh2_knownhost_check.3 (+58/-0) vendor/libssh2-sys/libssh2/docs/libssh2_knownhost_checkp.3 (+63/-0) vendor/libssh2-sys/libssh2/docs/libssh2_knownhost_del.3 (+26/-0) vendor/libssh2-sys/libssh2/docs/libssh2_knownhost_free.3 (+20/-0) vendor/libssh2-sys/libssh2/docs/libssh2_knownhost_get.3 (+35/-0) vendor/libssh2-sys/libssh2/docs/libssh2_knownhost_init.3 (+25/-0) vendor/libssh2-sys/libssh2/docs/libssh2_knownhost_readfile.3 (+29/-0) vendor/libssh2-sys/libssh2/docs/libssh2_knownhost_readline.3 (+30/-0) vendor/libssh2-sys/libssh2/docs/libssh2_knownhost_writefile.3 (+29/-0) vendor/libssh2-sys/libssh2/docs/libssh2_knownhost_writeline.3 (+46/-0) vendor/libssh2-sys/libssh2/docs/libssh2_poll.3 (+21/-0) vendor/libssh2-sys/libssh2/docs/libssh2_poll_channel_read.3 (+18/-0) vendor/libssh2-sys/libssh2/docs/libssh2_publickey_add.3 (+20/-0) vendor/libssh2-sys/libssh2/docs/libssh2_publickey_add_ex.3 (+25/-0) vendor/libssh2-sys/libssh2/docs/libssh2_publickey_init.3 (+12/-0) vendor/libssh2-sys/libssh2/docs/libssh2_publickey_list_fetch.3 (+12/-0) vendor/libssh2-sys/libssh2/docs/libssh2_publickey_list_free.3 (+12/-0) vendor/libssh2-sys/libssh2/docs/libssh2_publickey_remove.3 (+19/-0) vendor/libssh2-sys/libssh2/docs/libssh2_publickey_remove_ex.3 (+12/-0) vendor/libssh2-sys/libssh2/docs/libssh2_publickey_shutdown.3 (+12/-0) vendor/libssh2-sys/libssh2/docs/libssh2_scp_recv.3 (+35/-0) vendor/libssh2-sys/libssh2/docs/libssh2_scp_recv2.3 (+32/-0) vendor/libssh2-sys/libssh2/docs/libssh2_scp_send.3 (+18/-0) vendor/libssh2-sys/libssh2/docs/libssh2_scp_send64.3 (+47/-0) vendor/libssh2-sys/libssh2/docs/libssh2_scp_send_ex.3 (+48/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_abstract.3 (+24/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_banner_get.3 (+21/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_banner_set.3 (+32/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_block_directions.3 (+29/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_callback_set.3 (+76/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_disconnect.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_disconnect_ex.3 (+38/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_flag.3 (+23/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_free.3 (+18/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_get_blocking.3 (+12/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_get_timeout.3 (+19/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_handshake.3 (+40/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_hostkey.3 (+21/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_init.3 (+18/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_init_ex.3 (+42/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_last_errno.3 (+21/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_last_error.3 (+32/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_method_pref.3 (+40/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_methods.3 (+28/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_set_blocking.3 (+30/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_set_last_error.3 (+33/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_set_timeout.3 (+20/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_startup.3 (+42/-0) vendor/libssh2-sys/libssh2/docs/libssh2_session_supported_algs.3 (+74/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_close.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_close_handle.3 (+43/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_closedir.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_fsetstat.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_fstat.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_fstat_ex.3 (+104/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_fstatvfs.3 (+1/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_fsync.3 (+39/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_get_channel.3 (+21/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_init.3 (+39/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_last_error.3 (+24/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_lstat.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_mkdir.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_mkdir_ex.3 (+40/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_open.3 (+18/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_open_ex.3 (+65/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_opendir.3 (+18/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_read.3 (+43/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_readdir.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_readdir_ex.3 (+65/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_readlink.3 (+19/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_realpath.3 (+19/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_rename.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_rename_ex.3 (+56/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_rewind.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_rmdir.3 (+18/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_rmdir_ex.3 (+36/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_seek.3 (+25/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_seek64.3 (+29/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_setstat.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_shutdown.3 (+24/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_stat.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_stat_ex.3 (+74/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_statvfs.3 (+79/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_symlink.3 (+19/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_symlink_ex.3 (+79/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_tell.3 (+20/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_tell64.3 (+21/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_unlink.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_unlink_ex.3 (+42/-0) vendor/libssh2-sys/libssh2/docs/libssh2_sftp_write.3 (+71/-0) vendor/libssh2-sys/libssh2/docs/libssh2_trace.3 (+35/-0) vendor/libssh2-sys/libssh2/docs/libssh2_trace_sethandler.3 (+28/-0) vendor/libssh2-sys/libssh2/docs/libssh2_userauth_authenticated.3 (+20/-0) vendor/libssh2-sys/libssh2/docs/libssh2_userauth_banner.3 (+30/-0) vendor/libssh2-sys/libssh2/docs/libssh2_userauth_hostbased_fromfile.3 (+17/-0) vendor/libssh2-sys/libssh2/docs/libssh2_userauth_hostbased_fromfile_ex.3 (+12/-0) vendor/libssh2-sys/libssh2/docs/libssh2_userauth_keyboard_interactive.3 (+20/-0) vendor/libssh2-sys/libssh2/docs/libssh2_userauth_keyboard_interactive_ex.3 (+58/-0) vendor/libssh2-sys/libssh2/docs/libssh2_userauth_list.3 (+39/-0) vendor/libssh2-sys/libssh2/docs/libssh2_userauth_password.3 (+19/-0) vendor/libssh2-sys/libssh2/docs/libssh2_userauth_password_ex.3 (+57/-0) vendor/libssh2-sys/libssh2/docs/libssh2_userauth_publickey.3 (+27/-0) vendor/libssh2-sys/libssh2/docs/libssh2_userauth_publickey_fromfile.3 (+22/-0) vendor/libssh2-sys/libssh2/docs/libssh2_userauth_publickey_fromfile_ex.3 (+52/-0) vendor/libssh2-sys/libssh2/docs/libssh2_userauth_publickey_frommemory.3 (+56/-0) vendor/libssh2-sys/libssh2/docs/libssh2_version.3 (+36/-0) vendor/libssh2-sys/libssh2/docs/template.3 (+20/-0) vendor/libssh2-sys/libssh2/example/CMakeLists.txt (+101/-0) vendor/libssh2-sys/libssh2/example/Makefile.am (+17/-0) vendor/libssh2-sys/libssh2/example/direct_tcpip.c (+343/-0) vendor/libssh2-sys/libssh2/example/libssh2_config_cmake.h.in (+72/-0) vendor/libssh2-sys/libssh2/example/scp.c (+190/-0) vendor/libssh2-sys/libssh2/example/scp_nonblock.c (+293/-0) vendor/libssh2-sys/libssh2/example/scp_write.c (+228/-0) vendor/libssh2-sys/libssh2/example/scp_write_nonblock.c (+287/-0) vendor/libssh2-sys/libssh2/example/sftp.c (+300/-0) vendor/libssh2-sys/libssh2/example/sftp_RW_nonblock.c (+358/-0) vendor/libssh2-sys/libssh2/example/sftp_append.c (+238/-0) vendor/libssh2-sys/libssh2/example/sftp_mkdir.c (+179/-0) vendor/libssh2-sys/libssh2/example/sftp_mkdir_nonblock.c (+179/-0) vendor/libssh2-sys/libssh2/example/sftp_nonblock.c (+297/-0) vendor/libssh2-sys/libssh2/example/sftp_write.c (+222/-0) vendor/libssh2-sys/libssh2/example/sftp_write_nonblock.c (+288/-0) vendor/libssh2-sys/libssh2/example/sftp_write_sliding.c (+298/-0) vendor/libssh2-sys/libssh2/example/sftpdir.c (+304/-0) vendor/libssh2-sys/libssh2/example/sftpdir_nonblock.c (+249/-0) vendor/libssh2-sys/libssh2/example/ssh2.c (+274/-0) vendor/libssh2-sys/libssh2/example/ssh2_agent.c (+253/-0) vendor/libssh2-sys/libssh2/example/ssh2_agent_forwarding.c (+292/-0) vendor/libssh2-sys/libssh2/example/ssh2_echo.c (+371/-0) vendor/libssh2-sys/libssh2/example/ssh2_exec.c (+319/-0) vendor/libssh2-sys/libssh2/example/subsystem_netconf.c (+312/-0) vendor/libssh2-sys/libssh2/example/tcpip-forward.c (+328/-0) vendor/libssh2-sys/libssh2/example/x11.c (+476/-0) vendor/libssh2-sys/libssh2/get_ver.awk (+24/-0) vendor/libssh2-sys/libssh2/git2news.pl (+76/-0) vendor/libssh2-sys/libssh2/include/libssh2.h (+1367/-0) vendor/libssh2-sys/libssh2/include/libssh2_publickey.h (+122/-0) vendor/libssh2-sys/libssh2/include/libssh2_sftp.h (+351/-0) vendor/libssh2-sys/libssh2/libssh2-style.el (+51/-0) vendor/libssh2-sys/libssh2/libssh2.pc.in (+17/-0) vendor/libssh2-sys/libssh2/m4/autobuild.m4 (+44/-0) vendor/libssh2-sys/libssh2/m4/lib-ld.m4 (+110/-0) vendor/libssh2-sys/libssh2/m4/lib-link.m4 (+709/-0) vendor/libssh2-sys/libssh2/m4/lib-prefix.m4 (+185/-0) vendor/libssh2-sys/libssh2/maketgz (+101/-0) vendor/libssh2-sys/libssh2/nw/GNUmakefile (+630/-0) vendor/libssh2-sys/libssh2/nw/keepscreen.c (+25/-0) vendor/libssh2-sys/libssh2/nw/nwlib.c (+304/-0) vendor/libssh2-sys/libssh2/nw/test/GNUmakefile (+311/-0) vendor/libssh2-sys/libssh2/os400/README400 (+169/-0) vendor/libssh2-sys/libssh2/os400/ccsid.c (+252/-0) vendor/libssh2-sys/libssh2/os400/include/alloca.h (+50/-0) vendor/libssh2-sys/libssh2/os400/include/stdio.h (+72/-0) vendor/libssh2-sys/libssh2/os400/include/sys/socket.h (+75/-0) vendor/libssh2-sys/libssh2/os400/initscript.sh (+243/-0) vendor/libssh2-sys/libssh2/os400/libssh2_ccsid.h (+63/-0) vendor/libssh2-sys/libssh2/os400/libssh2_config.h (+299/-0) vendor/libssh2-sys/libssh2/os400/libssh2rpg/libssh2.rpgle.in (+1704/-0) vendor/libssh2-sys/libssh2/os400/libssh2rpg/libssh2_ccsid.rpgle.in (+69/-0) vendor/libssh2-sys/libssh2/os400/libssh2rpg/libssh2_publickey.rpgle (+141/-0) vendor/libssh2-sys/libssh2/os400/libssh2rpg/libssh2_sftp.rpgle (+621/-0) vendor/libssh2-sys/libssh2/os400/macros.h (+168/-0) vendor/libssh2-sys/libssh2/os400/make-include.sh (+56/-0) vendor/libssh2-sys/libssh2/os400/make-rpg.sh (+92/-0) vendor/libssh2-sys/libssh2/os400/make-src.sh (+208/-0) vendor/libssh2-sys/libssh2/os400/make.sh (+49/-0) vendor/libssh2-sys/libssh2/os400/os400sys.c (+218/-0) vendor/libssh2-sys/libssh2/src/CMakeLists.txt (+436/-0) vendor/libssh2-sys/libssh2/src/Makefile.am (+68/-0) vendor/libssh2-sys/libssh2/src/NMakefile (+30/-0) vendor/libssh2-sys/libssh2/src/agent.c (+900/-0) vendor/libssh2-sys/libssh2/src/agent.h (+112/-0) vendor/libssh2-sys/libssh2/src/agent_win.c (+361/-0) vendor/libssh2-sys/libssh2/src/bcrypt_pbkdf.c (+180/-0) vendor/libssh2-sys/libssh2/src/blf.h (+86/-0) vendor/libssh2-sys/libssh2/src/blowfish.c (+694/-0) vendor/libssh2-sys/libssh2/src/channel.c (+2904/-0) vendor/libssh2-sys/libssh2/src/channel.h (+141/-0) vendor/libssh2-sys/libssh2/src/comp.c (+377/-0) vendor/libssh2-sys/libssh2/src/comp.h (+44/-0) vendor/libssh2-sys/libssh2/src/crypt.c (+349/-0) vendor/libssh2-sys/libssh2/src/crypto.h (+280/-0) vendor/libssh2-sys/libssh2/src/global.c (+78/-0) vendor/libssh2-sys/libssh2/src/hostkey.c (+1383/-0) vendor/libssh2-sys/libssh2/src/keepalive.c (+100/-0) vendor/libssh2-sys/libssh2/src/kex.c (+4163/-0) vendor/libssh2-sys/libssh2/src/knownhost.c (+1271/-0) vendor/libssh2-sys/libssh2/src/libgcrypt.c (+685/-0) vendor/libssh2-sys/libssh2/src/libgcrypt.h (+238/-0) vendor/libssh2-sys/libssh2/src/libssh2.pc.in (+17/-0) vendor/libssh2-sys/libssh2/src/libssh2_config_cmake.h.in (+105/-0) vendor/libssh2-sys/libssh2/src/libssh2_priv.h (+1162/-0) vendor/libssh2-sys/libssh2/src/mac.c (+414/-0) vendor/libssh2-sys/libssh2/src/mac.h (+66/-0) vendor/libssh2-sys/libssh2/src/mbedtls.c (+1329/-0) vendor/libssh2-sys/libssh2/src/mbedtls.h (+594/-0) vendor/libssh2-sys/libssh2/src/misc.c (+907/-0) vendor/libssh2-sys/libssh2/src/misc.h (+128/-0) vendor/libssh2-sys/libssh2/src/openssl.c (+3362/-0) vendor/libssh2-sys/libssh2/src/openssl.h (+439/-0) vendor/libssh2-sys/libssh2/src/os400qc3.c (+2432/-0) vendor/libssh2-sys/libssh2/src/os400qc3.h (+402/-0) vendor/libssh2-sys/libssh2/src/packet.c (+1407/-0) vendor/libssh2-sys/libssh2/src/packet.h (+76/-0) vendor/libssh2-sys/libssh2/src/pem.c (+911/-0) vendor/libssh2-sys/libssh2/src/publickey.c (+1278/-0) vendor/libssh2-sys/libssh2/src/scp.c (+1145/-0) vendor/libssh2-sys/libssh2/src/session.c (+1841/-0) vendor/libssh2-sys/libssh2/src/session.h (+93/-0) vendor/libssh2-sys/libssh2/src/sftp.c (+3755/-0) vendor/libssh2-sys/libssh2/src/sftp.h (+238/-0) vendor/libssh2-sys/libssh2/src/transport.c (+924/-0) vendor/libssh2-sys/libssh2/src/transport.h (+86/-0) vendor/libssh2-sys/libssh2/src/userauth.c (+2166/-0) vendor/libssh2-sys/libssh2/src/userauth.h (+51/-0) vendor/libssh2-sys/libssh2/src/userauth_kbd_packet.c (+162/-0) vendor/libssh2-sys/libssh2/src/userauth_kbd_packet.h (+43/-0) vendor/libssh2-sys/libssh2/src/version.c (+70/-0) vendor/libssh2-sys/libssh2/src/wincng.c (+2660/-0) vendor/libssh2-sys/libssh2/src/wincng.h (+605/-0) vendor/libssh2-sys/libssh2/tests/CMakeLists.txt (+227/-0) vendor/libssh2-sys/libssh2/tests/Makefile.am (+81/-0) vendor/libssh2-sys/libssh2/tests/etc/host (+27/-0) vendor/libssh2-sys/libssh2/tests/etc/host.pub (+1/-0) vendor/libssh2-sys/libssh2/tests/etc/sshd_config (+3/-0) vendor/libssh2-sys/libssh2/tests/etc/user (+27/-0) vendor/libssh2-sys/libssh2/tests/etc/user.pub (+1/-0) vendor/libssh2-sys/libssh2/tests/key_dsa (+12/-0) vendor/libssh2-sys/libssh2/tests/key_dsa.pub (+1/-0) vendor/libssh2-sys/libssh2/tests/key_dsa_wrong (+12/-0) vendor/libssh2-sys/libssh2/tests/key_dsa_wrong.pub (+1/-0) vendor/libssh2-sys/libssh2/tests/key_ecdsa (+10/-0) vendor/libssh2-sys/libssh2/tests/key_ecdsa.pub (+1/-0) vendor/libssh2-sys/libssh2/tests/key_ed25519 (+7/-0) vendor/libssh2-sys/libssh2/tests/key_ed25519.pub (+1/-0) vendor/libssh2-sys/libssh2/tests/key_ed25519_encrypted (+8/-0) vendor/libssh2-sys/libssh2/tests/key_ed25519_encrypted.pub (+1/-0) vendor/libssh2-sys/libssh2/tests/key_rsa (+27/-0) vendor/libssh2-sys/libssh2/tests/key_rsa.pub (+1/-0) vendor/libssh2-sys/libssh2/tests/key_rsa_encrypted (+30/-0) vendor/libssh2-sys/libssh2/tests/key_rsa_encrypted.pub (+1/-0) vendor/libssh2-sys/libssh2/tests/key_rsa_openssh (+27/-0) vendor/libssh2-sys/libssh2/tests/key_rsa_openssh.pub (+1/-0) vendor/libssh2-sys/libssh2/tests/libssh2_config_cmake.h.in (+72/-0) vendor/libssh2-sys/libssh2/tests/mansyntax.sh (+37/-0) vendor/libssh2-sys/libssh2/tests/openssh_fixture.c (+419/-0) vendor/libssh2-sys/libssh2/tests/openssh_fixture.h (+45/-0) vendor/libssh2-sys/libssh2/tests/openssh_server/Dockerfile (+101/-0) vendor/libssh2-sys/libssh2/tests/openssh_server/authorized_keys (+7/-0) vendor/libssh2-sys/libssh2/tests/openssh_server/ca_ecdsa (+12/-0) vendor/libssh2-sys/libssh2/tests/openssh_server/ca_ecdsa.pub (+1/-0) vendor/libssh2-sys/libssh2/tests/openssh_server/ca_rsa (+38/-0) vendor/libssh2-sys/libssh2/tests/openssh_server/ca_rsa.pub (+1/-0) vendor/libssh2-sys/libssh2/tests/openssh_server/ssh_host_ecdsa_key (+5/-0) vendor/libssh2-sys/libssh2/tests/openssh_server/ssh_host_ed25519_key (+7/-0) vendor/libssh2-sys/libssh2/tests/openssh_server/ssh_host_rsa_key (+27/-0) vendor/libssh2-sys/libssh2/tests/ossfuzz/Makefile.am (+32/-0) vendor/libssh2-sys/libssh2/tests/ossfuzz/ossfuzz.sh (+30/-0) vendor/libssh2-sys/libssh2/tests/ossfuzz/ssh2_client_fuzzer.cc (+93/-0) vendor/libssh2-sys/libssh2/tests/ossfuzz/standaloneengine.cc (+74/-0) vendor/libssh2-sys/libssh2/tests/ossfuzz/testinput.h (+3/-0) vendor/libssh2-sys/libssh2/tests/runner.c (+51/-0) vendor/libssh2-sys/libssh2/tests/session_fixture.c (+159/-0) vendor/libssh2-sys/libssh2/tests/session_fixture.h (+47/-0) vendor/libssh2-sys/libssh2/tests/signed_key_ecdsa (+10/-0) vendor/libssh2-sys/libssh2/tests/signed_key_ecdsa-cert.pub (+1/-0) vendor/libssh2-sys/libssh2/tests/signed_key_ecdsa.pub (+1/-0) vendor/libssh2-sys/libssh2/tests/signed_key_rsa (+49/-0) vendor/libssh2-sys/libssh2/tests/signed_key_rsa-cert.pub (+1/-0) vendor/libssh2-sys/libssh2/tests/signed_key_rsa.pub (+1/-0) vendor/libssh2-sys/libssh2/tests/simple.c (+95/-0) vendor/libssh2-sys/libssh2/tests/ssh2.c (+186/-0) vendor/libssh2-sys/libssh2/tests/ssh2.sh (+48/-0) vendor/libssh2-sys/libssh2/tests/sshd_fixture.sh.in (+53/-0) vendor/libssh2-sys/libssh2/tests/sshdwrap (+28/-0) vendor/libssh2-sys/libssh2/tests/test_agent_forward_succeeds.c (+51/-0) vendor/libssh2-sys/libssh2/tests/test_hostkey.c (+65/-0) vendor/libssh2-sys/libssh2/tests/test_hostkey_hash.c (+184/-0) vendor/libssh2-sys/libssh2/tests/test_keyboard_interactive_auth_fails_with_wrong_response.c (+59/-0) vendor/libssh2-sys/libssh2/tests/test_keyboard_interactive_auth_info_request.c (+335/-0) vendor/libssh2-sys/libssh2/tests/test_keyboard_interactive_auth_succeeds_with_correct_response.c (+60/-0) vendor/libssh2-sys/libssh2/tests/test_password_auth_fails_with_wrong_password.c (+36/-0) vendor/libssh2-sys/libssh2/tests/test_password_auth_fails_with_wrong_username.c (+37/-0) vendor/libssh2-sys/libssh2/tests/test_password_auth_succeeds_with_correct_credentials.c (+42/-0) vendor/libssh2-sys/libssh2/tests/test_public_key_auth_fails_with_wrong_key.c (+37/-0) vendor/libssh2-sys/libssh2/tests/test_public_key_auth_succeeds_with_correct_dsa_key.c (+38/-0) vendor/libssh2-sys/libssh2/tests/test_public_key_auth_succeeds_with_correct_ecdsa_key.c (+38/-0) vendor/libssh2-sys/libssh2/tests/test_public_key_auth_succeeds_with_correct_ed25519_key.c (+38/-0) vendor/libssh2-sys/libssh2/tests/test_public_key_auth_succeeds_with_correct_ed25519_key_from_mem.c (+98/-0) vendor/libssh2-sys/libssh2/tests/test_public_key_auth_succeeds_with_correct_encrypted_ed25519_key.c (+39/-0) vendor/libssh2-sys/libssh2/tests/test_public_key_auth_succeeds_with_correct_encrypted_rsa_key.c (+39/-0) vendor/libssh2-sys/libssh2/tests/test_public_key_auth_succeeds_with_correct_rsa_key.c (+38/-0) vendor/libssh2-sys/libssh2/tests/test_public_key_auth_succeeds_with_correct_rsa_openssh_key.c (+38/-0) vendor/libssh2-sys/libssh2/tests/test_public_key_auth_succeeds_with_correct_signed_ecdsa_key.c (+38/-0) vendor/libssh2-sys/libssh2/tests/test_public_key_auth_succeeds_with_correct_signed_rsa_key.c (+38/-0) vendor/libssh2-sys/libssh2/vms/libssh2_config.h (+88/-0) vendor/libssh2-sys/libssh2/vms/libssh2_make_example.dcl (+125/-0) vendor/libssh2-sys/libssh2/vms/libssh2_make_help.dcl (+95/-0) vendor/libssh2-sys/libssh2/vms/libssh2_make_kit.dcl (+222/-0) vendor/libssh2-sys/libssh2/vms/libssh2_make_lib.dcl (+345/-0) vendor/libssh2-sys/libssh2/vms/man2help.c (+516/-0) vendor/libssh2-sys/libssh2/vms/readme.vms (+319/-0) vendor/libssh2-sys/libssh2/win32/GNUmakefile (+365/-0) vendor/libssh2-sys/libssh2/win32/Makefile.Watcom (+190/-0) vendor/libssh2-sys/libssh2/win32/config.mk (+54/-0) vendor/libssh2-sys/libssh2/win32/libssh2.dsw (+41/-0) vendor/libssh2-sys/libssh2/win32/libssh2.rc (+45/-0) vendor/libssh2-sys/libssh2/win32/libssh2_config.h (+47/-0) vendor/libssh2-sys/libssh2/win32/msvcproj.foot (+3/-0) vendor/libssh2-sys/libssh2/win32/msvcproj.head (+256/-0) vendor/libssh2-sys/libssh2/win32/rules.mk (+15/-0) vendor/libssh2-sys/libssh2/win32/test/GNUmakefile (+283/-0) vendor/libssh2-sys/libssh2/win32/tests.dsp (+102/-0) vendor/libz-sys/.cargo-checksum.json (+1/-0) vendor/libz-sys/Cargo.toml (+102/-0) vendor/libz-sys/LICENSE-APACHE (+201/-0) vendor/libz-sys/LICENSE-MIT (+26/-0) vendor/libz-sys/README.md (+80/-0) vendor/libz-sys/build.rs (+244/-0) vendor/libz-sys/src/lib.rs (+431/-0) vendor/libz-sys/src/smoke.c (+5/-0) vendor/libz-sys/src/zlib-ng/CMakeLists.txt (+1303/-0) vendor/libz-sys/src/zlib-ng/LICENSE.md (+19/-0) vendor/libz-sys/src/zlib-ng/adler32.c (+115/-0) vendor/libz-sys/src/zlib-ng/adler32_fold.c (+16/-0) vendor/libz-sys/src/zlib-ng/adler32_fold.h (+11/-0) vendor/libz-sys/src/zlib-ng/adler32_p.h (+70/-0) vendor/libz-sys/src/zlib-ng/arch/arm/acle_intrins.h (+35/-0) vendor/libz-sys/src/zlib-ng/arch/arm/adler32_neon.c (+215/-0) vendor/libz-sys/src/zlib-ng/arch/arm/arm_features.c (+100/-0) vendor/libz-sys/src/zlib-ng/arch/arm/arm_features.h (+16/-0) vendor/libz-sys/src/zlib-ng/arch/arm/chunkset_neon.c (+99/-0) vendor/libz-sys/src/zlib-ng/arch/arm/compare256_neon.c (+59/-0) vendor/libz-sys/src/zlib-ng/arch/arm/crc32_acle.c (+78/-0) vendor/libz-sys/src/zlib-ng/arch/arm/insert_string_acle.c (+24/-0) vendor/libz-sys/src/zlib-ng/arch/arm/neon_intrins.h (+58/-0) vendor/libz-sys/src/zlib-ng/arch/arm/slide_hash_armv6.c (+47/-0) vendor/libz-sys/src/zlib-ng/arch/arm/slide_hash_neon.c (+46/-0) vendor/libz-sys/src/zlib-ng/arch/generic/chunk_permute_table.h (+53/-0) vendor/libz-sys/src/zlib-ng/arch/power/adler32_power8.c (+153/-0) vendor/libz-sys/src/zlib-ng/arch/power/adler32_vmx.c (+186/-0) vendor/libz-sys/src/zlib-ng/arch/power/chunkset_power8.c (+55/-0) vendor/libz-sys/src/zlib-ng/arch/power/compare256_power9.c (+64/-0) vendor/libz-sys/src/zlib-ng/arch/power/crc32_constants.h (+1123/-0) vendor/libz-sys/src/zlib-ng/arch/power/crc32_power8.c (+589/-0) vendor/libz-sys/src/zlib-ng/arch/power/fallback_builtins.h (+31/-0) vendor/libz-sys/src/zlib-ng/arch/power/power_features.c (+46/-0) vendor/libz-sys/src/zlib-ng/arch/power/power_features.h (+18/-0) vendor/libz-sys/src/zlib-ng/arch/power/slide_hash_power8.c (+12/-0) vendor/libz-sys/src/zlib-ng/arch/power/slide_hash_vmx.c (+10/-0) vendor/libz-sys/src/zlib-ng/arch/power/slide_ppc_tpl.h (+31/-0) vendor/libz-sys/src/zlib-ng/arch/riscv/adler32_rvv.c (+132/-0) vendor/libz-sys/src/zlib-ng/arch/riscv/chunkset_rvv.c (+121/-0) vendor/libz-sys/src/zlib-ng/arch/riscv/compare256_rvv.c (+47/-0) vendor/libz-sys/src/zlib-ng/arch/riscv/riscv_features.c (+45/-0) vendor/libz-sys/src/zlib-ng/arch/riscv/riscv_features.h (+18/-0) vendor/libz-sys/src/zlib-ng/arch/riscv/slide_hash_rvv.c (+34/-0) vendor/libz-sys/src/zlib-ng/arch/s390/crc32-vx.c (+222/-0) vendor/libz-sys/src/zlib-ng/arch/s390/dfltcc_common.c (+40/-0) vendor/libz-sys/src/zlib-ng/arch/s390/dfltcc_common.h (+44/-0) vendor/libz-sys/src/zlib-ng/arch/s390/dfltcc_deflate.c (+404/-0) vendor/libz-sys/src/zlib-ng/arch/s390/dfltcc_deflate.h (+60/-0) vendor/libz-sys/src/zlib-ng/arch/s390/dfltcc_detail.h (+308/-0) vendor/libz-sys/src/zlib-ng/arch/s390/dfltcc_inflate.c (+205/-0) vendor/libz-sys/src/zlib-ng/arch/s390/dfltcc_inflate.h (+70/-0) vendor/libz-sys/src/zlib-ng/arch/s390/s390_features.c (+14/-0) vendor/libz-sys/src/zlib-ng/arch/s390/s390_features.h (+10/-0) vendor/libz-sys/src/zlib-ng/arch/x86/adler32_avx2.c (+154/-0) vendor/libz-sys/src/zlib-ng/arch/x86/adler32_avx2_p.h (+32/-0) vendor/libz-sys/src/zlib-ng/arch/x86/adler32_avx512.c (+115/-0) vendor/libz-sys/src/zlib-ng/arch/x86/adler32_avx512_p.h (+46/-0) vendor/libz-sys/src/zlib-ng/arch/x86/adler32_avx512_vnni.c (+225/-0) vendor/libz-sys/src/zlib-ng/arch/x86/adler32_sse42.c (+121/-0) vendor/libz-sys/src/zlib-ng/arch/x86/adler32_ssse3.c (+156/-0) vendor/libz-sys/src/zlib-ng/arch/x86/adler32_ssse3_p.h (+29/-0) vendor/libz-sys/src/zlib-ng/arch/x86/chunkset_avx2.c (+133/-0) vendor/libz-sys/src/zlib-ng/arch/x86/chunkset_sse2.c (+56/-0) vendor/libz-sys/src/zlib-ng/arch/x86/chunkset_ssse3.c (+101/-0) vendor/libz-sys/src/zlib-ng/arch/x86/compare256_avx2.c (+63/-0) vendor/libz-sys/src/zlib-ng/arch/x86/compare256_sse2.c (+96/-0) vendor/libz-sys/src/zlib-ng/arch/x86/crc32_fold_pclmulqdq_tpl.h (+186/-0) vendor/libz-sys/src/zlib-ng/arch/x86/crc32_fold_vpclmulqdq_tpl.h (+107/-0) vendor/libz-sys/src/zlib-ng/arch/x86/crc32_pclmulqdq.c (+30/-0) vendor/libz-sys/src/zlib-ng/arch/x86/crc32_pclmulqdq_tpl.h (+363/-0) vendor/libz-sys/src/zlib-ng/arch/x86/crc32_vpclmulqdq.c (+17/-0) vendor/libz-sys/src/zlib-ng/arch/x86/insert_string_sse42.c (+24/-0) vendor/libz-sys/src/zlib-ng/arch/x86/slide_hash_avx2.c (+39/-0) vendor/libz-sys/src/zlib-ng/arch/x86/slide_hash_sse2.c (+62/-0) vendor/libz-sys/src/zlib-ng/arch/x86/x86_features.c (+97/-0) vendor/libz-sys/src/zlib-ng/arch/x86/x86_features.h (+24/-0) vendor/libz-sys/src/zlib-ng/arch/x86/x86_intrins.h (+87/-0) vendor/libz-sys/src/zlib-ng/chunkset.c (+42/-0) vendor/libz-sys/src/zlib-ng/chunkset_tpl.h (+200/-0) vendor/libz-sys/src/zlib-ng/cmake/detect-arch.c (+115/-0) vendor/libz-sys/src/zlib-ng/cmake/detect-arch.cmake (+104/-0) vendor/libz-sys/src/zlib-ng/cmake/detect-coverage.cmake (+46/-0) vendor/libz-sys/src/zlib-ng/cmake/detect-install-dirs.cmake (+43/-0) vendor/libz-sys/src/zlib-ng/cmake/detect-intrinsics.cmake (+543/-0) vendor/libz-sys/src/zlib-ng/cmake/detect-sanitizer.cmake (+166/-0) vendor/libz-sys/src/zlib-ng/cmake/fallback-macros.cmake (+19/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-aarch64.cmake (+24/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-arm.cmake (+29/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-armhf.cmake (+25/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-llvm-mingw-aarch64.cmake (+41/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-llvm-mingw-armv7.cmake (+41/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-llvm-mingw-i686.cmake (+41/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-llvm-mingw-x86_64.cmake (+41/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-mingw-i686.cmake (+35/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-mingw-x86_64.cmake (+34/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-mips.cmake (+29/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-mips64.cmake (+29/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-powerpc.cmake (+25/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-powerpc64-clang.cmake (+16/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-powerpc64-power9.cmake (+25/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-powerpc64.cmake (+25/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-powerpc64le-clang.cmake (+16/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-powerpc64le-power9.cmake (+25/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-powerpc64le.cmake (+25/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-riscv.cmake (+28/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-s390x.cmake (+25/-0) vendor/libz-sys/src/zlib-ng/cmake/toolchain-sparc64.cmake (+25/-0) vendor/libz-sys/src/zlib-ng/compare256.c (+180/-0) vendor/libz-sys/src/zlib-ng/compare256_rle.h (+134/-0) vendor/libz-sys/src/zlib-ng/compress.c (+98/-0) vendor/libz-sys/src/zlib-ng/cpu_features.c (+23/-0) vendor/libz-sys/src/zlib-ng/cpu_features.h (+303/-0) vendor/libz-sys/src/zlib-ng/crc32_braid.c (+267/-0) vendor/libz-sys/src/zlib-ng/crc32_braid_comb.c (+57/-0) vendor/libz-sys/src/zlib-ng/crc32_braid_comb_p.h (+42/-0) vendor/libz-sys/src/zlib-ng/crc32_braid_p.h (+50/-0) vendor/libz-sys/src/zlib-ng/crc32_braid_tbl.h (+9446/-0) vendor/libz-sys/src/zlib-ng/crc32_fold.c (+33/-0) vendor/libz-sys/src/zlib-ng/crc32_fold.h (+21/-0) vendor/libz-sys/src/zlib-ng/deflate.c (+1410/-0) vendor/libz-sys/src/zlib-ng/deflate.h (+408/-0) vendor/libz-sys/src/zlib-ng/deflate_fast.c (+102/-0) vendor/libz-sys/src/zlib-ng/deflate_huff.c (+45/-0) vendor/libz-sys/src/zlib-ng/deflate_medium.c (+293/-0) vendor/libz-sys/src/zlib-ng/deflate_p.h (+116/-0) vendor/libz-sys/src/zlib-ng/deflate_quick.c (+129/-0) vendor/libz-sys/src/zlib-ng/deflate_rle.c (+85/-0) vendor/libz-sys/src/zlib-ng/deflate_slow.c (+143/-0) vendor/libz-sys/src/zlib-ng/deflate_stored.c (+186/-0) vendor/libz-sys/src/zlib-ng/fallback_builtins.h (+50/-0) vendor/libz-sys/src/zlib-ng/functable.c (+403/-0) vendor/libz-sys/src/zlib-ng/functable.h (+42/-0) vendor/libz-sys/src/zlib-ng/gzguts.h (+144/-0) vendor/libz-sys/src/zlib-ng/gzlib.c (+525/-0) vendor/libz-sys/src/zlib-ng/gzread.c.in (+606/-0) vendor/libz-sys/src/zlib-ng/gzwrite.c (+526/-0) vendor/libz-sys/src/zlib-ng/infback.c (+511/-0) vendor/libz-sys/src/zlib-ng/inffast_tpl.h (+326/-0) vendor/libz-sys/src/zlib-ng/inffixed_tbl.h (+94/-0) vendor/libz-sys/src/zlib-ng/inflate.c (+1413/-0) vendor/libz-sys/src/zlib-ng/inflate.h (+140/-0) vendor/libz-sys/src/zlib-ng/inflate_p.h (+230/-0) vendor/libz-sys/src/zlib-ng/inftrees.c (+295/-0) vendor/libz-sys/src/zlib-ng/inftrees.h (+66/-0) vendor/libz-sys/src/zlib-ng/insert_string.c (+21/-0) vendor/libz-sys/src/zlib-ng/insert_string_roll.c (+24/-0) vendor/libz-sys/src/zlib-ng/insert_string_tpl.h (+108/-0) vendor/libz-sys/src/zlib-ng/match_tpl.h (+289/-0) vendor/libz-sys/src/zlib-ng/slide_hash.c (+52/-0) vendor/libz-sys/src/zlib-ng/trees.c (+818/-0) vendor/libz-sys/src/zlib-ng/trees.h (+40/-0) vendor/libz-sys/src/zlib-ng/trees_emit.h (+227/-0) vendor/libz-sys/src/zlib-ng/trees_tbl.h (+132/-0) vendor/libz-sys/src/zlib-ng/uncompr.c (+80/-0) vendor/libz-sys/src/zlib-ng/zbuild.h (+260/-0) vendor/libz-sys/src/zlib-ng/zconf-ng.h.in (+176/-0) vendor/libz-sys/src/zlib-ng/zconf.h.in (+206/-0) vendor/libz-sys/src/zlib-ng/zendian.h (+60/-0) vendor/libz-sys/src/zlib-ng/zlib-ng.h.in (+1871/-0) vendor/libz-sys/src/zlib-ng/zlib.h.in (+1859/-0) vendor/libz-sys/src/zlib-ng/zlib.pc.cmakein (+14/-0) vendor/libz-sys/src/zlib-ng/zlib.pc.in (+14/-0) vendor/libz-sys/src/zlib-ng/zlib_name_mangling-ng.h.in (+178/-0) vendor/libz-sys/src/zlib-ng/zlib_name_mangling.h.empty (+8/-0) vendor/libz-sys/src/zlib-ng/zlib_name_mangling.h.in (+170/-0) vendor/libz-sys/src/zlib-ng/zutil.c (+159/-0) vendor/libz-sys/src/zlib-ng/zutil.h (+148/-0) vendor/libz-sys/src/zlib-ng/zutil_p.h (+71/-0) vendor/libz-sys/src/zlib/LICENSE (+22/-0) vendor/libz-sys/src/zlib/adler32.c (+164/-0) vendor/libz-sys/src/zlib/compress.c (+75/-0) vendor/libz-sys/src/zlib/contrib/dotzlib/LICENSE_1_0.txt (+23/-0) vendor/libz-sys/src/zlib/crc32.c (+1049/-0) vendor/libz-sys/src/zlib/crc32.h (+9446/-0) vendor/libz-sys/src/zlib/deflate.c (+2139/-0) vendor/libz-sys/src/zlib/deflate.h (+377/-0) vendor/libz-sys/src/zlib/gzclose.c (+23/-0) vendor/libz-sys/src/zlib/gzguts.h (+214/-0) vendor/libz-sys/src/zlib/gzlib.c (+582/-0) vendor/libz-sys/src/zlib/gzread.c (+602/-0) vendor/libz-sys/src/zlib/gzwrite.c (+631/-0) vendor/libz-sys/src/zlib/infback.c (+628/-0) vendor/libz-sys/src/zlib/inffast.c (+320/-0) vendor/libz-sys/src/zlib/inffast.h (+11/-0) vendor/libz-sys/src/zlib/inffixed.h (+94/-0) vendor/libz-sys/src/zlib/inflate.c (+1526/-0) vendor/libz-sys/src/zlib/inflate.h (+126/-0) vendor/libz-sys/src/zlib/inftrees.c (+299/-0) vendor/libz-sys/src/zlib/inftrees.h (+62/-0) vendor/libz-sys/src/zlib/trees.c (+1117/-0) vendor/libz-sys/src/zlib/trees.h (+128/-0) vendor/libz-sys/src/zlib/uncompr.c (+85/-0) vendor/libz-sys/src/zlib/zconf.h (+543/-0) vendor/libz-sys/src/zlib/zlib.h (+1938/-0) vendor/libz-sys/src/zlib/zlib.pc.in (+13/-0) vendor/libz-sys/src/zlib/zutil.c (+299/-0) vendor/libz-sys/src/zlib/zutil.h (+254/-0) vendor/libz-sys/zng/cc.rs (+475/-0) vendor/libz-sys/zng/cmake.rs (+60/-0) vendor/linux-raw-sys/.cargo-checksum.json (+1/-0) vendor/linux-raw-sys/CODE_OF_CONDUCT.md (+49/-0) vendor/linux-raw-sys/COPYRIGHT (+29/-0) vendor/linux-raw-sys/Cargo.toml (+100/-0) vendor/linux-raw-sys/LICENSE-APACHE (+201/-0) vendor/linux-raw-sys/LICENSE-Apache-2.0_WITH_LLVM-exception (+220/-0) vendor/linux-raw-sys/LICENSE-MIT (+23/-0) vendor/linux-raw-sys/ORG_CODE_OF_CONDUCT.md (+143/-0) vendor/linux-raw-sys/README.md (+44/-0) vendor/linux-raw-sys/src/aarch64/bootparam.rs (+3/-0) vendor/linux-raw-sys/src/aarch64/errno.rs (+135/-0) vendor/linux-raw-sys/src/aarch64/general.rs (+2818/-0) vendor/linux-raw-sys/src/aarch64/if_arp.rs (+2665/-0) vendor/linux-raw-sys/src/aarch64/if_ether.rs (+167/-0) vendor/linux-raw-sys/src/aarch64/if_packet.rs (+307/-0) vendor/linux-raw-sys/src/aarch64/io_uring.rs (+1086/-0) vendor/linux-raw-sys/src/aarch64/ioctl.rs (+1606/-0) vendor/linux-raw-sys/src/aarch64/loop_device.rs (+131/-0) vendor/linux-raw-sys/src/aarch64/mempolicy.rs (+173/-0) vendor/linux-raw-sys/src/aarch64/net.rs (+2483/-0) vendor/linux-raw-sys/src/aarch64/netlink.rs (+2854/-0) vendor/linux-raw-sys/src/aarch64/prctl.rs (+221/-0) vendor/linux-raw-sys/src/aarch64/system.rs (+129/-0) vendor/linux-raw-sys/src/aarch64/xdp.rs (+159/-0) vendor/linux-raw-sys/src/arm/bootparam.rs (+3/-0) vendor/linux-raw-sys/src/arm/errno.rs (+135/-0) vendor/linux-raw-sys/src/arm/general.rs (+2950/-0) vendor/linux-raw-sys/src/arm/if_arp.rs (+2665/-0) vendor/linux-raw-sys/src/arm/if_ether.rs (+167/-0) vendor/linux-raw-sys/src/arm/if_packet.rs (+307/-0) vendor/linux-raw-sys/src/arm/io_uring.rs (+1086/-0) vendor/linux-raw-sys/src/arm/ioctl.rs (+1502/-0) vendor/linux-raw-sys/src/arm/loop_device.rs (+131/-0) vendor/linux-raw-sys/src/arm/mempolicy.rs (+173/-0) vendor/linux-raw-sys/src/arm/net.rs (+2475/-0) vendor/linux-raw-sys/src/arm/netlink.rs (+2854/-0) vendor/linux-raw-sys/src/arm/prctl.rs (+221/-0) vendor/linux-raw-sys/src/arm/system.rs (+99/-0) vendor/linux-raw-sys/src/arm/xdp.rs (+159/-0) vendor/linux-raw-sys/src/csky/bootparam.rs (+3/-0) vendor/linux-raw-sys/src/csky/errno.rs (+135/-0) vendor/linux-raw-sys/src/csky/general.rs (+2859/-0) vendor/linux-raw-sys/src/csky/if_arp.rs (+2667/-0) vendor/linux-raw-sys/src/csky/if_ether.rs (+167/-0) vendor/linux-raw-sys/src/csky/if_packet.rs (+309/-0) vendor/linux-raw-sys/src/csky/io_uring.rs (+1090/-0) vendor/linux-raw-sys/src/csky/ioctl.rs (+1502/-0) vendor/linux-raw-sys/src/csky/loop_device.rs (+131/-0) vendor/linux-raw-sys/src/csky/mempolicy.rs (+173/-0) vendor/linux-raw-sys/src/csky/net.rs (+2475/-0) vendor/linux-raw-sys/src/csky/netlink.rs (+2854/-0) vendor/linux-raw-sys/src/csky/prctl.rs (+221/-0) vendor/linux-raw-sys/src/csky/system.rs (+99/-0) vendor/linux-raw-sys/src/csky/xdp.rs (+159/-0) vendor/linux-raw-sys/src/elf.rs (+287/-0) vendor/linux-raw-sys/src/lib.rs (+1272/-0) vendor/linux-raw-sys/src/loongarch64/bootparam.rs (+3/-0) vendor/linux-raw-sys/src/loongarch64/errno.rs (+135/-0) vendor/linux-raw-sys/src/loongarch64/general.rs (+2803/-0) vendor/linux-raw-sys/src/loongarch64/if_arp.rs (+2665/-0) vendor/linux-raw-sys/src/loongarch64/if_ether.rs (+167/-0) vendor/linux-raw-sys/src/loongarch64/if_packet.rs (+307/-0) vendor/linux-raw-sys/src/loongarch64/io_uring.rs (+1086/-0) vendor/linux-raw-sys/src/loongarch64/ioctl.rs (+1489/-0) vendor/linux-raw-sys/src/loongarch64/loop_device.rs (+131/-0) vendor/linux-raw-sys/src/loongarch64/mempolicy.rs (+173/-0) vendor/linux-raw-sys/src/loongarch64/net.rs (+2483/-0) vendor/linux-raw-sys/src/loongarch64/netlink.rs (+2854/-0) vendor/linux-raw-sys/src/loongarch64/prctl.rs (+221/-0) vendor/linux-raw-sys/src/loongarch64/system.rs (+129/-0) vendor/linux-raw-sys/src/loongarch64/xdp.rs (+159/-0) vendor/linux-raw-sys/src/mips/bootparam.rs (+3/-0) vendor/linux-raw-sys/src/mips/errno.rs (+137/-0) vendor/linux-raw-sys/src/mips/general.rs (+3113/-0) vendor/linux-raw-sys/src/mips/if_arp.rs (+2675/-0) vendor/linux-raw-sys/src/mips/if_ether.rs (+177/-0) vendor/linux-raw-sys/src/mips/if_packet.rs (+317/-0) vendor/linux-raw-sys/src/mips/io_uring.rs (+1096/-0) vendor/linux-raw-sys/src/mips/ioctl.rs (+1600/-0) vendor/linux-raw-sys/src/mips/loop_device.rs (+141/-0) vendor/linux-raw-sys/src/mips/mempolicy.rs (+175/-0) vendor/linux-raw-sys/src/mips/net.rs (+2506/-0) vendor/linux-raw-sys/src/mips/netlink.rs (+2864/-0) vendor/linux-raw-sys/src/mips/prctl.rs (+231/-0) vendor/linux-raw-sys/src/mips/system.rs (+109/-0) vendor/linux-raw-sys/src/mips/xdp.rs (+169/-0) vendor/linux-raw-sys/src/mips32r6/bootparam.rs (+3/-0) vendor/linux-raw-sys/src/mips32r6/errno.rs (+137/-0) vendor/linux-raw-sys/src/mips32r6/general.rs (+3113/-0) vendor/linux-raw-sys/src/mips32r6/if_arp.rs (+2675/-0) vendor/linux-raw-sys/src/mips32r6/if_ether.rs (+177/-0) vendor/linux-raw-sys/src/mips32r6/if_packet.rs (+317/-0) vendor/linux-raw-sys/src/mips32r6/io_uring.rs (+1096/-0) vendor/linux-raw-sys/src/mips32r6/ioctl.rs (+1600/-0) vendor/linux-raw-sys/src/mips32r6/loop_device.rs (+141/-0) vendor/linux-raw-sys/src/mips32r6/mempolicy.rs (+175/-0) vendor/linux-raw-sys/src/mips32r6/net.rs (+2506/-0) vendor/linux-raw-sys/src/mips32r6/netlink.rs (+2864/-0) vendor/linux-raw-sys/src/mips32r6/prctl.rs (+231/-0) vendor/linux-raw-sys/src/mips32r6/system.rs (+109/-0) vendor/linux-raw-sys/src/mips32r6/xdp.rs (+169/-0) vendor/linux-raw-sys/src/mips64/bootparam.rs (+3/-0) vendor/linux-raw-sys/src/mips64/errno.rs (+137/-0) vendor/linux-raw-sys/src/mips64/general.rs (+3030/-0) vendor/linux-raw-sys/src/mips64/if_arp.rs (+2675/-0) vendor/linux-raw-sys/src/mips64/if_ether.rs (+177/-0) vendor/linux-raw-sys/src/mips64/if_packet.rs (+317/-0) vendor/linux-raw-sys/src/mips64/io_uring.rs (+1096/-0) vendor/linux-raw-sys/src/mips64/ioctl.rs (+1600/-0) vendor/linux-raw-sys/src/mips64/loop_device.rs (+141/-0) vendor/linux-raw-sys/src/mips64/mempolicy.rs (+175/-0) vendor/linux-raw-sys/src/mips64/net.rs (+2514/-0) vendor/linux-raw-sys/src/mips64/netlink.rs (+2864/-0) vendor/linux-raw-sys/src/mips64/prctl.rs (+231/-0) vendor/linux-raw-sys/src/mips64/system.rs (+139/-0) vendor/linux-raw-sys/src/mips64/xdp.rs (+169/-0) vendor/linux-raw-sys/src/mips64r6/bootparam.rs (+3/-0) vendor/linux-raw-sys/src/mips64r6/errno.rs (+137/-0) vendor/linux-raw-sys/src/mips64r6/general.rs (+3030/-0) vendor/linux-raw-sys/src/mips64r6/if_arp.rs (+2675/-0) vendor/linux-raw-sys/src/mips64r6/if_ether.rs (+177/-0) vendor/linux-raw-sys/src/mips64r6/if_packet.rs (+317/-0) vendor/linux-raw-sys/src/mips64r6/io_uring.rs (+1096/-0) vendor/linux-raw-sys/src/mips64r6/ioctl.rs (+1600/-0) vendor/linux-raw-sys/src/mips64r6/loop_device.rs (+141/-0) vendor/linux-raw-sys/src/mips64r6/mempolicy.rs (+175/-0) vendor/linux-raw-sys/src/mips64r6/net.rs (+2514/-0) vendor/linux-raw-sys/src/mips64r6/netlink.rs (+2864/-0) vendor/linux-raw-sys/src/mips64r6/prctl.rs (+231/-0) vendor/linux-raw-sys/src/mips64r6/system.rs (+139/-0) vendor/linux-raw-sys/src/mips64r6/xdp.rs (+169/-0) vendor/linux-raw-sys/src/powerpc/bootparam.rs (+3/-0) vendor/linux-raw-sys/src/powerpc/errno.rs (+135/-0) vendor/linux-raw-sys/src/powerpc/general.rs (+3036/-0) vendor/linux-raw-sys/src/powerpc/if_arp.rs (+2671/-0) vendor/linux-raw-sys/src/powerpc/if_ether.rs (+173/-0) vendor/linux-raw-sys/src/powerpc/if_packet.rs (+313/-0) vendor/linux-raw-sys/src/powerpc/io_uring.rs (+1092/-0) vendor/linux-raw-sys/src/powerpc/ioctl.rs (+1501/-0) vendor/linux-raw-sys/src/powerpc/loop_device.rs (+137/-0) vendor/linux-raw-sys/src/powerpc/mempolicy.rs (+173/-0) vendor/linux-raw-sys/src/powerpc/net.rs (+2481/-0) vendor/linux-raw-sys/src/powerpc/netlink.rs (+2860/-0) vendor/linux-raw-sys/src/powerpc/prctl.rs (+227/-0) vendor/linux-raw-sys/src/powerpc/system.rs (+105/-0) vendor/linux-raw-sys/src/powerpc/xdp.rs (+165/-0) vendor/linux-raw-sys/src/powerpc64/bootparam.rs (+3/-0) vendor/linux-raw-sys/src/powerpc64/errno.rs (+135/-0) vendor/linux-raw-sys/src/powerpc64/general.rs (+2983/-0) vendor/linux-raw-sys/src/powerpc64/if_arp.rs (+2671/-0) vendor/linux-raw-sys/src/powerpc64/if_ether.rs (+173/-0) vendor/linux-raw-sys/src/powerpc64/if_packet.rs (+313/-0) vendor/linux-raw-sys/src/powerpc64/io_uring.rs (+1092/-0) vendor/linux-raw-sys/src/powerpc64/ioctl.rs (+1501/-0) vendor/linux-raw-sys/src/powerpc64/loop_device.rs (+137/-0) vendor/linux-raw-sys/src/powerpc64/mempolicy.rs (+173/-0) vendor/linux-raw-sys/src/powerpc64/net.rs (+2489/-0) vendor/linux-raw-sys/src/powerpc64/netlink.rs (+2860/-0) vendor/linux-raw-sys/src/powerpc64/prctl.rs (+227/-0) vendor/linux-raw-sys/src/powerpc64/system.rs (+135/-0) vendor/linux-raw-sys/src/powerpc64/xdp.rs (+165/-0) vendor/linux-raw-sys/src/riscv32/bootparam.rs (+3/-0) vendor/linux-raw-sys/src/riscv32/errno.rs (+135/-0) vendor/linux-raw-sys/src/riscv32/general.rs (+2834/-0) vendor/linux-raw-sys/src/riscv32/if_arp.rs (+2665/-0) vendor/linux-raw-sys/src/riscv32/if_ether.rs (+167/-0) vendor/linux-raw-sys/src/riscv32/if_packet.rs (+307/-0) vendor/linux-raw-sys/src/riscv32/io_uring.rs (+1086/-0) vendor/linux-raw-sys/src/riscv32/ioctl.rs (+1502/-0) vendor/linux-raw-sys/src/riscv32/loop_device.rs (+131/-0) vendor/linux-raw-sys/src/riscv32/mempolicy.rs (+173/-0) vendor/linux-raw-sys/src/riscv32/net.rs (+2475/-0) vendor/linux-raw-sys/src/riscv32/netlink.rs (+2854/-0) vendor/linux-raw-sys/src/riscv32/prctl.rs (+221/-0) vendor/linux-raw-sys/src/riscv32/system.rs (+99/-0) vendor/linux-raw-sys/src/riscv32/xdp.rs (+159/-0) vendor/linux-raw-sys/src/riscv64/bootparam.rs (+3/-0) vendor/linux-raw-sys/src/riscv64/errno.rs (+135/-0) vendor/linux-raw-sys/src/riscv64/general.rs (+2819/-0) vendor/linux-raw-sys/src/riscv64/if_arp.rs (+2665/-0) vendor/linux-raw-sys/src/riscv64/if_ether.rs (+167/-0) vendor/linux-raw-sys/src/riscv64/if_packet.rs (+307/-0) vendor/linux-raw-sys/src/riscv64/io_uring.rs (+1086/-0) vendor/linux-raw-sys/src/riscv64/ioctl.rs (+1502/-0) vendor/linux-raw-sys/src/riscv64/loop_device.rs (+131/-0) vendor/linux-raw-sys/src/riscv64/mempolicy.rs (+173/-0) vendor/linux-raw-sys/src/riscv64/net.rs (+2483/-0) vendor/linux-raw-sys/src/riscv64/netlink.rs (+2854/-0) vendor/linux-raw-sys/src/riscv64/prctl.rs (+221/-0) vendor/linux-raw-sys/src/riscv64/system.rs (+129/-0) vendor/linux-raw-sys/src/riscv64/xdp.rs (+159/-0) vendor/linux-raw-sys/src/s390x/bootparam.rs (+3/-0) vendor/linux-raw-sys/src/s390x/errno.rs (+135/-0) vendor/linux-raw-sys/src/s390x/general.rs (+2872/-0) vendor/linux-raw-sys/src/s390x/if_arp.rs (+2685/-0) vendor/linux-raw-sys/src/s390x/if_ether.rs (+187/-0) vendor/linux-raw-sys/src/s390x/if_packet.rs (+327/-0) vendor/linux-raw-sys/src/s390x/io_uring.rs (+1106/-0) vendor/linux-raw-sys/src/s390x/ioctl.rs (+1606/-0) vendor/linux-raw-sys/src/s390x/loop_device.rs (+151/-0) vendor/linux-raw-sys/src/s390x/mempolicy.rs (+173/-0) vendor/linux-raw-sys/src/s390x/net.rs (+2503/-0) vendor/linux-raw-sys/src/s390x/netlink.rs (+2874/-0) vendor/linux-raw-sys/src/s390x/prctl.rs (+241/-0) vendor/linux-raw-sys/src/s390x/system.rs (+149/-0) vendor/linux-raw-sys/src/s390x/xdp.rs (+179/-0) vendor/linux-raw-sys/src/sparc/bootparam.rs (+3/-0) vendor/linux-raw-sys/src/sparc/errno.rs (+137/-0) vendor/linux-raw-sys/src/sparc/general.rs (+2995/-0) vendor/linux-raw-sys/src/sparc/if_arp.rs (+2881/-0) vendor/linux-raw-sys/src/sparc/if_ether.rs (+167/-0) vendor/linux-raw-sys/src/sparc/if_packet.rs (+523/-0) vendor/linux-raw-sys/src/sparc/io_uring.rs (+1087/-0) vendor/linux-raw-sys/src/sparc/ioctl.rs (+3/-0) vendor/linux-raw-sys/src/sparc/loop_device.rs (+131/-0) vendor/linux-raw-sys/src/sparc/mempolicy.rs (+175/-0) vendor/linux-raw-sys/src/sparc/net.rs (+2691/-0) vendor/linux-raw-sys/src/sparc/netlink.rs (+2854/-0) vendor/linux-raw-sys/src/sparc/prctl.rs (+221/-0) vendor/linux-raw-sys/src/sparc/system.rs (+99/-0) vendor/linux-raw-sys/src/sparc/xdp.rs (+159/-0) vendor/linux-raw-sys/src/sparc64/bootparam.rs (+3/-0) vendor/linux-raw-sys/src/sparc64/errno.rs (+137/-0) vendor/linux-raw-sys/src/sparc64/general.rs (+2949/-0) vendor/linux-raw-sys/src/sparc64/if_arp.rs (+2887/-0) vendor/linux-raw-sys/src/sparc64/if_ether.rs (+173/-0) vendor/linux-raw-sys/src/sparc64/if_packet.rs (+529/-0) vendor/linux-raw-sys/src/sparc64/io_uring.rs (+1087/-0) vendor/linux-raw-sys/src/sparc64/ioctl.rs (+3/-0) vendor/linux-raw-sys/src/sparc64/loop_device.rs (+137/-0) vendor/linux-raw-sys/src/sparc64/mempolicy.rs (+175/-0) vendor/linux-raw-sys/src/sparc64/net.rs (+2705/-0) vendor/linux-raw-sys/src/sparc64/netlink.rs (+2860/-0) vendor/linux-raw-sys/src/sparc64/prctl.rs (+227/-0) vendor/linux-raw-sys/src/sparc64/system.rs (+135/-0) vendor/linux-raw-sys/src/sparc64/xdp.rs (+165/-0) vendor/linux-raw-sys/src/x32/bootparam.rs (+658/-0) vendor/linux-raw-sys/src/x32/errno.rs (+135/-0) vendor/linux-raw-sys/src/x32/general.rs (+2877/-0) vendor/linux-raw-sys/src/x32/if_arp.rs (+2665/-0) vendor/linux-raw-sys/src/x32/if_ether.rs (+167/-0) vendor/linux-raw-sys/src/x32/if_packet.rs (+307/-0) vendor/linux-raw-sys/src/x32/io_uring.rs (+1086/-0) vendor/linux-raw-sys/src/x32/ioctl.rs (+1606/-0) vendor/linux-raw-sys/src/x32/loop_device.rs (+131/-0) vendor/linux-raw-sys/src/x32/mempolicy.rs (+173/-0) vendor/linux-raw-sys/src/x32/net.rs (+2483/-0) vendor/linux-raw-sys/src/x32/netlink.rs (+2854/-0) vendor/linux-raw-sys/src/x32/prctl.rs (+221/-0) vendor/linux-raw-sys/src/x32/system.rs (+129/-0) vendor/linux-raw-sys/src/x32/xdp.rs (+159/-0) vendor/linux-raw-sys/src/x86/bootparam.rs (+658/-0) vendor/linux-raw-sys/src/x86/errno.rs (+135/-0) vendor/linux-raw-sys/src/x86/general.rs (+2981/-0) vendor/linux-raw-sys/src/x86/if_arp.rs (+2667/-0) vendor/linux-raw-sys/src/x86/if_ether.rs (+167/-0) vendor/linux-raw-sys/src/x86/if_packet.rs (+309/-0) vendor/linux-raw-sys/src/x86/io_uring.rs (+1090/-0) vendor/linux-raw-sys/src/x86/ioctl.rs (+1606/-0) vendor/linux-raw-sys/src/x86/loop_device.rs (+131/-0) vendor/linux-raw-sys/src/x86/mempolicy.rs (+173/-0) vendor/linux-raw-sys/src/x86/net.rs (+2475/-0) vendor/linux-raw-sys/src/x86/netlink.rs (+2854/-0) vendor/linux-raw-sys/src/x86/prctl.rs (+221/-0) vendor/linux-raw-sys/src/x86/system.rs (+99/-0) vendor/linux-raw-sys/src/x86/xdp.rs (+159/-0) vendor/linux-raw-sys/src/x86_64/bootparam.rs (+658/-0) vendor/linux-raw-sys/src/x86_64/errno.rs (+135/-0) vendor/linux-raw-sys/src/x86_64/general.rs (+2883/-0) vendor/linux-raw-sys/src/x86_64/if_arp.rs (+2665/-0) vendor/linux-raw-sys/src/x86_64/if_ether.rs (+167/-0) vendor/linux-raw-sys/src/x86_64/if_packet.rs (+307/-0) vendor/linux-raw-sys/src/x86_64/io_uring.rs (+1086/-0) vendor/linux-raw-sys/src/x86_64/ioctl.rs (+1606/-0) vendor/linux-raw-sys/src/x86_64/loop_device.rs (+131/-0) vendor/linux-raw-sys/src/x86_64/mempolicy.rs (+173/-0) vendor/linux-raw-sys/src/x86_64/net.rs (+2483/-0) vendor/linux-raw-sys/src/x86_64/netlink.rs (+2854/-0) vendor/linux-raw-sys/src/x86_64/prctl.rs (+221/-0) vendor/linux-raw-sys/src/x86_64/system.rs (+129/-0) vendor/linux-raw-sys/src/x86_64/xdp.rs (+159/-0) vendor/lock_api/.cargo-checksum.json (+1/-0) vendor/lock_api/Cargo.toml (+60/-0) vendor/lock_api/LICENSE-APACHE (+201/-0) vendor/lock_api/LICENSE-MIT (+25/-0) vendor/lock_api/build.rs (+7/-0) vendor/lock_api/src/lib.rs (+116/-0) vendor/lock_api/src/mutex.rs (+964/-0) vendor/lock_api/src/remutex.rs (+1057/-0) vendor/lock_api/src/rwlock.rs (+2886/-0) vendor/log/.cargo-checksum.json (+1/-0) vendor/log/CHANGELOG.md (+324/-0) vendor/log/Cargo.toml (+139/-0) vendor/log/LICENSE-APACHE (+201/-0) vendor/log/LICENSE-MIT (+25/-0) vendor/log/README.md (+130/-0) vendor/log/benches/value.rs (+27/-0) vendor/log/src/__private_api.rs (+123/-0) vendor/log/src/kv/error.rs (+94/-0) vendor/log/src/kv/key.rs (+143/-0) vendor/log/src/kv/mod.rs (+265/-0) vendor/log/src/kv/source.rs (+514/-0) vendor/log/src/kv/value.rs (+1394/-0) vendor/log/src/lib.rs (+1878/-0) vendor/log/src/macros.rs (+367/-0) vendor/log/src/serde.rs (+397/-0) vendor/log/triagebot.toml (+1/-0) vendor/matchers/.cargo-checksum.json (+1/-0) vendor/matchers/CHANGELOG.md (+26/-0) vendor/matchers/Cargo.toml (+29/-0) vendor/matchers/LICENSE (+19/-0) vendor/matchers/README.md (+38/-0) vendor/matchers/src/lib.rs (+600/-0) vendor/maybe-async/.cargo-checksum.json (+1/-0) vendor/maybe-async/CHANGELOG.md (+72/-0) vendor/maybe-async/Cargo.lock (+1072/-0) vendor/maybe-async/Cargo.toml (+70/-0) vendor/maybe-async/LICENSE (+19/-0) vendor/maybe-async/README.md (+295/-0) vendor/maybe-async/README.tpl (+3/-0) vendor/maybe-async/examples/service_client.rs (+77/-0) vendor/maybe-async/src/lib.rs (+626/-0) vendor/maybe-async/src/parse.rs (+43/-0) vendor/maybe-async/src/visit.rs (+187/-0) vendor/maybe-async/tests/test.rs (+15/-0) vendor/maybe-async/tests/ui/01-maybe-async.rs (+122/-0) vendor/maybe-async/tests/ui/02-must-be-async.rs (+134/-0) vendor/maybe-async/tests/ui/03-must-be-sync.rs (+88/-0) vendor/maybe-async/tests/ui/04-unit-test-util.rs (+38/-0) vendor/maybe-async/tests/ui/05-replace-future-generic-type-with-output.rs (+34/-0) vendor/maybe-async/tests/ui/06-sync_impl_async_impl.rs (+44/-0) vendor/maybe-async/tests/ui/test_fail/01-empty-test.rs (+17/-0) vendor/maybe-async/tests/ui/test_fail/01-empty-test.stderr (+7/-0) vendor/maybe-async/tests/ui/test_fail/02-unknown-path.rs (+17/-0) vendor/maybe-async/tests/ui/test_fail/02-unknown-path.stderr (+5/-0) vendor/maybe-async/tests/ui/test_fail/03-async-gt2.rs (+16/-0) vendor/maybe-async/tests/ui/test_fail/03-async-gt2.stderr (+5/-0) vendor/maybe-async/tests/ui/test_fail/04-bad-sync-cond.rs (+17/-0) vendor/maybe-async/tests/ui/test_fail/04-bad-sync-cond.stderr (+5/-0) vendor/maybe-async/tests/unit-test-util.rs (+30/-0) vendor/memchr/.cargo-checksum.json (+1/-0) vendor/memchr/COPYING (+3/-0) vendor/memchr/Cargo.toml (+95/-0) vendor/memchr/LICENSE-MIT (+21/-0) vendor/memchr/README.md (+196/-0) vendor/memchr/UNLICENSE (+24/-0) vendor/memchr/rustfmt.toml (+2/-0) vendor/memchr/src/arch/aarch64/memchr.rs (+137/-0) vendor/memchr/src/arch/aarch64/mod.rs (+7/-0) vendor/memchr/src/arch/aarch64/neon/memchr.rs (+1031/-0) vendor/memchr/src/arch/aarch64/neon/mod.rs (+6/-0) vendor/memchr/src/arch/aarch64/neon/packedpair.rs (+236/-0) vendor/memchr/src/arch/all/memchr.rs (+1022/-0) vendor/memchr/src/arch/all/mod.rs (+234/-0) vendor/memchr/src/arch/all/packedpair/default_rank.rs (+258/-0) vendor/memchr/src/arch/all/packedpair/mod.rs (+359/-0) vendor/memchr/src/arch/all/rabinkarp.rs (+390/-0) vendor/memchr/src/arch/all/shiftor.rs (+89/-0) vendor/memchr/src/arch/all/twoway.rs (+877/-0) vendor/memchr/src/arch/generic/memchr.rs (+1214/-0) vendor/memchr/src/arch/generic/mod.rs (+14/-0) vendor/memchr/src/arch/generic/packedpair.rs (+317/-0) vendor/memchr/src/arch/mod.rs (+16/-0) vendor/memchr/src/arch/wasm32/memchr.rs (+124/-0) vendor/memchr/src/arch/wasm32/mod.rs (+7/-0) vendor/memchr/src/arch/wasm32/simd128/memchr.rs (+1020/-0) vendor/memchr/src/arch/wasm32/simd128/mod.rs (+6/-0) vendor/memchr/src/arch/wasm32/simd128/packedpair.rs (+228/-0) vendor/memchr/src/arch/x86_64/avx2/memchr.rs (+1352/-0) vendor/memchr/src/arch/x86_64/avx2/mod.rs (+6/-0) vendor/memchr/src/arch/x86_64/avx2/packedpair.rs (+272/-0) vendor/memchr/src/arch/x86_64/memchr.rs (+335/-0) vendor/memchr/src/arch/x86_64/mod.rs (+8/-0) vendor/memchr/src/arch/x86_64/sse2/memchr.rs (+1077/-0) vendor/memchr/src/arch/x86_64/sse2/mod.rs (+6/-0) vendor/memchr/src/arch/x86_64/sse2/packedpair.rs (+232/-0) vendor/memchr/src/cow.rs (+107/-0) vendor/memchr/src/ext.rs (+54/-0) vendor/memchr/src/lib.rs (+221/-0) vendor/memchr/src/macros.rs (+20/-0) vendor/memchr/src/memchr.rs (+903/-0) vendor/memchr/src/memmem/mod.rs (+737/-0) vendor/memchr/src/memmem/searcher.rs (+1030/-0) vendor/memchr/src/tests/memchr/mod.rs (+307/-0) vendor/memchr/src/tests/memchr/naive.rs (+33/-0) vendor/memchr/src/tests/memchr/prop.rs (+321/-0) vendor/memchr/src/tests/mod.rs (+15/-0) vendor/memchr/src/tests/packedpair.rs (+216/-0) vendor/memchr/src/tests/substring/mod.rs (+232/-0) vendor/memchr/src/tests/substring/naive.rs (+45/-0) vendor/memchr/src/tests/substring/prop.rs (+126/-0) vendor/memchr/src/vector.rs (+509/-0) vendor/memmap2/.cargo-checksum.json (+1/-0) vendor/memmap2/CHANGELOG.md (+245/-0) vendor/memmap2/Cargo.lock (+182/-0) vendor/memmap2/Cargo.toml (+43/-0) vendor/memmap2/LICENSE-APACHE (+201/-0) vendor/memmap2/LICENSE-MIT (+26/-0) vendor/memmap2/README.md (+33/-0) vendor/memmap2/examples/cat.rs (+23/-0) vendor/memmap2/src/advice.rs (+422/-0) vendor/memmap2/src/lib.rs (+2212/-0) vendor/memmap2/src/stub.rs (+81/-0) vendor/memmap2/src/unix.rs (+458/-0) vendor/memmap2/src/windows.rs (+524/-0) vendor/memoffset/.cargo-checksum.json (+1/-0) vendor/memoffset/CHANGELOG.md (+32/-0) vendor/memoffset/Cargo.toml (+37/-0) vendor/memoffset/LICENSE (+19/-0) vendor/memoffset/README.md (+55/-0) vendor/memoffset/build.rs (+28/-0) vendor/memoffset/src/lib.rs (+86/-0) vendor/memoffset/src/offset_of.rs (+411/-0) vendor/memoffset/src/raw_field.rs (+226/-0) vendor/memoffset/src/span_of.rs (+261/-0) vendor/minimal-lexical/.cargo-checksum.json (+1/-0) vendor/minimal-lexical/CHANGELOG (+38/-0) vendor/minimal-lexical/CODE_OF_CONDUCT.md (+141/-0) vendor/minimal-lexical/Cargo.toml (+33/-0) vendor/minimal-lexical/LICENSE-APACHE (+201/-0) vendor/minimal-lexical/LICENSE-MIT (+23/-0) vendor/minimal-lexical/LICENSE.md (+37/-0) vendor/minimal-lexical/README.md (+102/-0) vendor/minimal-lexical/clippy.toml (+1/-0) vendor/minimal-lexical/rustfmt.toml (+16/-0) vendor/minimal-lexical/src/bellerophon.rs (+391/-0) vendor/minimal-lexical/src/bigint.rs (+788/-0) vendor/minimal-lexical/src/extended_float.rs (+24/-0) vendor/minimal-lexical/src/fpu.rs (+98/-0) vendor/minimal-lexical/src/heapvec.rs (+190/-0) vendor/minimal-lexical/src/lemire.rs (+225/-0) vendor/minimal-lexical/src/lib.rs (+68/-0) vendor/minimal-lexical/src/libm.rs (+1238/-0) vendor/minimal-lexical/src/mask.rs (+60/-0) vendor/minimal-lexical/src/num.rs (+308/-0) vendor/minimal-lexical/src/number.rs (+83/-0) vendor/minimal-lexical/src/parse.rs (+201/-0) vendor/minimal-lexical/src/rounding.rs (+131/-0) vendor/minimal-lexical/src/slow.rs (+403/-0) vendor/minimal-lexical/src/stackvec.rs (+308/-0) vendor/minimal-lexical/src/table.rs (+11/-0) vendor/minimal-lexical/src/table_bellerophon.rs (+119/-0) vendor/minimal-lexical/src/table_lemire.rs (+676/-0) vendor/minimal-lexical/src/table_small.rs (+90/-0) vendor/minimal-lexical/tests/bellerophon.rs (+59/-0) vendor/minimal-lexical/tests/bellerophon_tests.rs (+231/-0) vendor/minimal-lexical/tests/integration_tests.rs (+228/-0) vendor/minimal-lexical/tests/lemire_tests.rs (+378/-0) vendor/minimal-lexical/tests/libm_tests.rs (+289/-0) vendor/minimal-lexical/tests/mask_tests.rs (+16/-0) vendor/minimal-lexical/tests/number_tests.rs (+88/-0) vendor/minimal-lexical/tests/parse_tests.rs (+189/-0) vendor/minimal-lexical/tests/rounding_tests.rs (+64/-0) vendor/minimal-lexical/tests/slow_tests.rs (+337/-0) vendor/minimal-lexical/tests/stackvec.rs (+32/-0) vendor/minimal-lexical/tests/vec_tests.rs (+395/-0) vendor/miniz_oxide/.cargo-checksum.json (+1/-0) vendor/miniz_oxide/Cargo.toml (+86/-0) vendor/miniz_oxide/LICENSE (+21/-0) vendor/miniz_oxide/LICENSE-APACHE.md (+177/-0) vendor/miniz_oxide/LICENSE-MIT.md (+21/-0) vendor/miniz_oxide/LICENSE-ZLIB.md (+11/-0) vendor/miniz_oxide/Readme.md (+44/-0) vendor/miniz_oxide/src/deflate/buffer.rs (+58/-0) vendor/miniz_oxide/src/deflate/core.rs (+2469/-0) vendor/miniz_oxide/src/deflate/mod.rs (+226/-0) vendor/miniz_oxide/src/deflate/stream.rs (+121/-0) vendor/miniz_oxide/src/inflate/core.rs (+2052/-0) vendor/miniz_oxide/src/inflate/mod.rs (+343/-0) vendor/miniz_oxide/src/inflate/output_buffer.rs (+60/-0) vendor/miniz_oxide/src/inflate/stream.rs (+423/-0) vendor/miniz_oxide/src/lib.rs (+211/-0) vendor/miniz_oxide/src/shared.rs (+25/-0) vendor/miow/.cargo-checksum.json (+1/-0) vendor/miow/Cargo.toml (+31/-0) vendor/miow/src/lib.rs (+0/-0) vendor/nom/.cargo-checksum.json (+1/-0) vendor/nom/CHANGELOG.md (+1551/-0) vendor/nom/Cargo.lock (+282/-0) vendor/nom/Cargo.toml (+168/-0) vendor/nom/LICENSE (+20/-0) vendor/nom/README.md (+331/-0) vendor/nom/doc/nom_recipes.md (+395/-0) vendor/nom/src/bits/complete.rs (+197/-0) vendor/nom/src/bits/mod.rs (+179/-0) vendor/nom/src/bits/streaming.rs (+170/-0) vendor/nom/src/branch/mod.rs (+267/-0) vendor/nom/src/branch/tests.rs (+142/-0) vendor/nom/src/bytes/complete.rs (+756/-0) vendor/nom/src/bytes/mod.rs (+6/-0) vendor/nom/src/bytes/streaming.rs (+700/-0) vendor/nom/src/bytes/tests.rs (+636/-0) vendor/nom/src/character/complete.rs (+1227/-0) vendor/nom/src/character/mod.rs (+116/-0) vendor/nom/src/character/streaming.rs (+1182/-0) vendor/nom/src/character/tests.rs (+62/-0) vendor/nom/src/combinator/mod.rs (+809/-0) vendor/nom/src/combinator/tests.rs (+275/-0) vendor/nom/src/error.rs (+831/-0) vendor/nom/src/internal.rs (+489/-0) vendor/nom/src/lib.rs (+464/-0) vendor/nom/src/macros.rs (+23/-0) vendor/nom/src/multi/mod.rs (+1049/-0) vendor/nom/src/multi/tests.rs (+534/-0) vendor/nom/src/number/complete.rs (+2126/-0) vendor/nom/src/number/mod.rs (+15/-0) vendor/nom/src/number/streaming.rs (+2206/-0) vendor/nom/src/sequence/mod.rs (+279/-0) vendor/nom/src/sequence/tests.rs (+290/-0) vendor/nom/src/str.rs (+536/-0) vendor/nom/src/traits.rs (+1441/-0) vendor/nom/tests/arithmetic.rs (+94/-0) vendor/nom/tests/arithmetic_ast.rs (+161/-0) vendor/nom/tests/css.rs (+45/-0) vendor/nom/tests/custom_errors.rs (+48/-0) vendor/nom/tests/escaped.rs (+28/-0) vendor/nom/tests/float.rs (+46/-0) vendor/nom/tests/fnmut.rs (+39/-0) vendor/nom/tests/ini.rs (+207/-0) vendor/nom/tests/ini_str.rs (+217/-0) vendor/nom/tests/issues.rs (+242/-0) vendor/nom/tests/json.rs (+236/-0) vendor/nom/tests/mp4.rs (+320/-0) vendor/nom/tests/multiline.rs (+31/-0) vendor/nom/tests/overflow.rs (+145/-0) vendor/nom/tests/reborrow_fold.rs (+31/-0) vendor/normpath/.cargo-checksum.json (+1/-0) vendor/normpath/Cargo.toml (+61/-0) vendor/normpath/src/lib.rs (+0/-0) vendor/nu-ansi-term/.cargo-checksum.json (+1/-0) vendor/nu-ansi-term/Cargo.lock (+159/-0) vendor/nu-ansi-term/Cargo.toml (+57/-0) vendor/nu-ansi-term/LICENCE (+22/-0) vendor/nu-ansi-term/README.md (+182/-0) vendor/nu-ansi-term/examples/256_colors.rs (+72/-0) vendor/nu-ansi-term/examples/basic_colors.rs (+18/-0) vendor/nu-ansi-term/examples/gradient_colors.rs (+37/-0) vendor/nu-ansi-term/examples/rgb_colors.rs (+23/-0) vendor/nu-ansi-term/src/ansi.rs (+407/-0) vendor/nu-ansi-term/src/debug.rs (+152/-0) vendor/nu-ansi-term/src/difference.rs (+174/-0) vendor/nu-ansi-term/src/display.rs (+290/-0) vendor/nu-ansi-term/src/gradient.rs (+105/-0) vendor/nu-ansi-term/src/lib.rs (+272/-0) vendor/nu-ansi-term/src/rgb.rs (+173/-0) vendor/nu-ansi-term/src/style.rs (+629/-0) vendor/nu-ansi-term/src/util.rs (+79/-0) vendor/nu-ansi-term/src/windows.rs (+62/-0) vendor/nu-ansi-term/src/write.rs (+37/-0) vendor/num-conv/.cargo-checksum.json (+1/-0) vendor/num-conv/Cargo.toml (+55/-0) vendor/num-conv/LICENSE-Apache (+202/-0) vendor/num-conv/LICENSE-MIT (+19/-0) vendor/num-conv/src/lib.rs (+329/-0) vendor/num-traits/.cargo-checksum.json (+1/-0) vendor/num-traits/Cargo.toml (+54/-0) vendor/num-traits/LICENSE-APACHE (+201/-0) vendor/num-traits/LICENSE-MIT (+25/-0) vendor/num-traits/README.md (+58/-0) vendor/num-traits/RELEASES.md (+307/-0) vendor/num-traits/build.rs (+7/-0) vendor/num-traits/src/bounds.rs (+148/-0) vendor/num-traits/src/cast.rs (+770/-0) vendor/num-traits/src/float.rs (+2513/-0) vendor/num-traits/src/identities.rs (+238/-0) vendor/num-traits/src/int.rs (+562/-0) vendor/num-traits/src/lib.rs (+635/-0) vendor/num-traits/src/macros.rs (+44/-0) vendor/num-traits/src/ops/bytes.rs (+317/-0) vendor/num-traits/src/ops/checked.rs (+261/-0) vendor/num-traits/src/ops/euclid.rs (+278/-0) vendor/num-traits/src/ops/inv.rs (+47/-0) vendor/num-traits/src/ops/mod.rs (+8/-0) vendor/num-traits/src/ops/mul_add.rs (+149/-0) vendor/num-traits/src/ops/overflowing.rs (+96/-0) vendor/num-traits/src/ops/saturating.rs (+130/-0) vendor/num-traits/src/ops/wrapping.rs (+327/-0) vendor/num-traits/src/pow.rs (+242/-0) vendor/num-traits/src/real.rs (+834/-0) vendor/num-traits/src/sign.rs (+216/-0) vendor/num-traits/tests/cast.rs (+387/-0) vendor/num_threads/.cargo-checksum.json (+1/-0) vendor/num_threads/Cargo.toml (+41/-0) vendor/num_threads/LICENSE-Apache (+202/-0) vendor/num_threads/LICENSE-MIT (+19/-0) vendor/num_threads/src/aix.rs (+23/-0) vendor/num_threads/src/apple.rs (+57/-0) vendor/num_threads/src/freebsd.rs (+36/-0) vendor/num_threads/src/imp.rs (+7/-0) vendor/num_threads/src/lib.rs (+21/-0) vendor/num_threads/src/linux.rs (+14/-0) vendor/object/.cargo-checksum.json (+1/-0) vendor/object/CHANGELOG.md (+1071/-0) vendor/object/Cargo.toml (+197/-0) vendor/object/LICENSE-APACHE (+201/-0) vendor/object/LICENSE-MIT (+25/-0) vendor/object/README.md (+60/-0) vendor/object/src/archive.rs (+91/-0) vendor/object/src/build/bytes.rs (+146/-0) vendor/object/src/build/elf.rs (+3113/-0) vendor/object/src/build/error.rs (+41/-0) vendor/object/src/build/mod.rs (+18/-0) vendor/object/src/build/table.rs (+128/-0) vendor/object/src/common.rs (+606/-0) vendor/object/src/elf.rs (+6474/-0) vendor/object/src/endian.rs (+831/-0) vendor/object/src/lib.rs (+108/-0) vendor/object/src/macho.rs (+3303/-0) vendor/object/src/pe.rs (+3060/-0) vendor/object/src/pod.rs (+281/-0) vendor/object/src/read/any.rs (+1334/-0) vendor/object/src/read/archive.rs (+1133/-0) vendor/object/src/read/coff/comdat.rs (+220/-0) vendor/object/src/read/coff/file.rs (+381/-0) vendor/object/src/read/coff/import.rs (+223/-0) vendor/object/src/read/coff/mod.rs (+66/-0) vendor/object/src/read/coff/relocation.rs (+119/-0) vendor/object/src/read/coff/section.rs (+619/-0) vendor/object/src/read/coff/symbol.rs (+669/-0) vendor/object/src/read/elf/attributes.rs (+340/-0) vendor/object/src/read/elf/comdat.rs (+186/-0) vendor/object/src/read/elf/compression.rs (+56/-0) vendor/object/src/read/elf/dynamic.rs (+117/-0) vendor/object/src/read/elf/file.rs (+961/-0) vendor/object/src/read/elf/hash.rs (+236/-0) vendor/object/src/read/elf/mod.rs (+78/-0) vendor/object/src/read/elf/note.rs (+302/-0) vendor/object/src/read/elf/relocation.rs (+604/-0) vendor/object/src/read/elf/section.rs (+1241/-0) vendor/object/src/read/elf/segment.rs (+365/-0) vendor/object/src/read/elf/symbol.rs (+654/-0) vendor/object/src/read/elf/version.rs (+513/-0) vendor/object/src/read/gnu_compression.rs (+36/-0) vendor/object/src/read/macho/dyld_cache.rs (+384/-0) vendor/object/src/read/macho/fat.rs (+140/-0) vendor/object/src/read/macho/file.rs (+779/-0) vendor/object/src/read/macho/load_command.rs (+404/-0) vendor/object/src/read/macho/mod.rs (+72/-0) vendor/object/src/read/macho/relocation.rs (+144/-0) vendor/object/src/read/macho/section.rs (+420/-0) vendor/object/src/read/macho/segment.rs (+317/-0) vendor/object/src/read/macho/symbol.rs (+532/-0) vendor/object/src/read/mod.rs (+1035/-0) vendor/object/src/read/pe/data_directory.rs (+214/-0) vendor/object/src/read/pe/export.rs (+334/-0) vendor/object/src/read/pe/file.rs (+1033/-0) vendor/object/src/read/pe/import.rs (+381/-0) vendor/object/src/read/pe/mod.rs (+68/-0) vendor/object/src/read/pe/relocation.rs (+109/-0) vendor/object/src/read/pe/resource.rs (+210/-0) vendor/object/src/read/pe/rich.rs (+92/-0) vendor/object/src/read/pe/section.rs (+476/-0) vendor/object/src/read/read_cache.rs (+261/-0) vendor/object/src/read/read_ref.rs (+149/-0) vendor/object/src/read/traits.rs (+589/-0) vendor/object/src/read/util.rs (+425/-0) vendor/object/src/read/wasm.rs (+979/-0) vendor/object/src/read/xcoff/comdat.rs (+134/-0) vendor/object/src/read/xcoff/file.rs (+716/-0) vendor/object/src/read/xcoff/mod.rs (+63/-0) vendor/object/src/read/xcoff/relocation.rs (+138/-0) vendor/object/src/read/xcoff/section.rs (+452/-0) vendor/object/src/read/xcoff/segment.rs (+117/-0) vendor/object/src/read/xcoff/symbol.rs (+836/-0) vendor/object/src/write/coff/mod.rs (+10/-0) vendor/object/src/write/coff/object.rs (+682/-0) vendor/object/src/write/coff/writer.rs (+520/-0) vendor/object/src/write/elf/mod.rs (+9/-0) vendor/object/src/write/elf/object.rs (+810/-0) vendor/object/src/write/elf/writer.rs (+2361/-0) vendor/object/src/write/macho.rs (+1107/-0) vendor/object/src/write/mod.rs (+1023/-0) vendor/object/src/write/pe.rs (+849/-0) vendor/object/src/write/string.rs (+186/-0) vendor/object/src/write/util.rs (+261/-0) vendor/object/src/write/xcoff.rs (+588/-0) vendor/object/src/xcoff.rs (+905/-0) vendor/object/tests/build/elf.rs (+254/-0) vendor/object/tests/build/mod.rs (+3/-0) vendor/object/tests/integration.rs (+3/-0) vendor/object/tests/parse_self.rs (+25/-0) vendor/object/tests/read/coff.rs (+23/-0) vendor/object/tests/read/elf.rs (+47/-0) vendor/object/tests/read/macho.rs (+49/-0) vendor/object/tests/read/mod.rs (+5/-0) vendor/object/tests/round_trip/bss.rs (+256/-0) vendor/object/tests/round_trip/coff.rs (+58/-0) vendor/object/tests/round_trip/comdat.rs (+217/-0) vendor/object/tests/round_trip/common.rs (+241/-0) vendor/object/tests/round_trip/elf.rs (+302/-0) vendor/object/tests/round_trip/macho.rs (+64/-0) vendor/object/tests/round_trip/mod.rs (+684/-0) vendor/object/tests/round_trip/section_flags.rs (+89/-0) vendor/object/tests/round_trip/tls.rs (+308/-0) vendor/once_cell/.cargo-checksum.json (+1/-0) vendor/once_cell/CHANGELOG.md (+238/-0) vendor/once_cell/Cargo.lock (+179/-0) vendor/once_cell/Cargo.toml (+118/-0) vendor/once_cell/LICENSE-APACHE (+201/-0) vendor/once_cell/LICENSE-MIT (+23/-0) vendor/once_cell/README.md (+57/-0) vendor/once_cell/bors.toml (+2/-0) vendor/once_cell/examples/bench.rs (+28/-0) vendor/once_cell/examples/bench_acquire.rs (+39/-0) vendor/once_cell/examples/lazy_static.rs (+36/-0) vendor/once_cell/examples/reentrant_init_deadlocks.rs (+14/-0) vendor/once_cell/examples/regex.rs (+49/-0) vendor/once_cell/examples/test_synchronization.rs (+38/-0) vendor/once_cell/src/imp_cs.rs (+78/-0) vendor/once_cell/src/imp_pl.rs (+174/-0) vendor/once_cell/src/imp_std.rs (+415/-0) vendor/once_cell/src/lib.rs (+1412/-0) vendor/once_cell/src/race.rs (+419/-0) vendor/once_cell/tests/it/main.rs (+12/-0) vendor/once_cell/tests/it/race.rs (+128/-0) vendor/once_cell/tests/it/race_once_box.rs (+145/-0) vendor/once_cell/tests/it/sync_lazy.rs (+176/-0) vendor/once_cell/tests/it/sync_once_cell.rs (+309/-0) vendor/once_cell/tests/it/unsync_lazy.rs (+134/-0) vendor/once_cell/tests/it/unsync_once_cell.rs (+154/-0) vendor/opener/.cargo-checksum.json (+1/-0) vendor/opener/Cargo.toml (+77/-0) vendor/opener/Drakefile.ts (+79/-0) vendor/opener/LICENSE-APACHE (+199/-0) vendor/opener/LICENSE-MIT (+19/-0) vendor/opener/LICENSE-THIRD-PARTY (+19/-0) vendor/opener/README.md (+28/-0) vendor/opener/src/freedesktop.rs (+93/-0) vendor/opener/src/lib.rs (+268/-0) vendor/opener/src/linux_and_more.rs (+151/-0) vendor/opener/src/macos.rs (+30/-0) vendor/opener/src/windows.rs (+60/-0) vendor/opener/src/windows/reveal.rs (+87/-0) vendor/opener/src/xdg-open (+1065/-0) vendor/openssl-probe/.cargo-checksum.json (+1/-0) vendor/openssl-probe/Cargo.lock (+7/-0) vendor/openssl-probe/Cargo.toml (+20/-0) vendor/openssl-probe/LICENSE-APACHE (+201/-0) vendor/openssl-probe/LICENSE-MIT (+25/-0) vendor/openssl-probe/README.md (+33/-0) vendor/openssl-probe/examples/probe.rs (+6/-0) vendor/openssl-probe/src/lib.rs (+136/-0) vendor/openssl-sys/.cargo-checksum.json (+1/-0) vendor/openssl-sys/CHANGELOG.md (+688/-0) vendor/openssl-sys/Cargo.toml (+71/-0) vendor/openssl-sys/LICENSE-MIT (+25/-0) vendor/openssl-sys/README.md (+22/-0) vendor/openssl-sys/build/cfgs.rs (+125/-0) vendor/openssl-sys/build/expando.c (+140/-0) vendor/openssl-sys/build/find_normal.rs (+284/-0) vendor/openssl-sys/build/find_vendored.rs (+25/-0) vendor/openssl-sys/build/main.rs (+508/-0) vendor/openssl-sys/build/run_bindgen.rs (+253/-0) vendor/openssl-sys/src/aes.rs (+7/-0) vendor/openssl-sys/src/asn1.rs (+39/-0) vendor/openssl-sys/src/bio.rs (+116/-0) vendor/openssl-sys/src/bn.rs (+15/-0) vendor/openssl-sys/src/cms.rs (+46/-0) vendor/openssl-sys/src/crypto.rs (+134/-0) vendor/openssl-sys/src/dtls1.rs (+9/-0) vendor/openssl-sys/src/ec.rs (+16/-0) vendor/openssl-sys/src/err.rs (+66/-0) vendor/openssl-sys/src/evp.rs (+342/-0) vendor/openssl-sys/src/handwritten/aes.rs (+40/-0) vendor/openssl-sys/src/handwritten/asn1.rs (+115/-0) vendor/openssl-sys/src/handwritten/bio.rs (+165/-0) vendor/openssl-sys/src/handwritten/bn.rs (+176/-0) vendor/openssl-sys/src/handwritten/cmac.rs (+18/-0) vendor/openssl-sys/src/handwritten/cms.rs (+65/-0) vendor/openssl-sys/src/handwritten/conf.rs (+13/-0) vendor/openssl-sys/src/handwritten/crypto.rs (+85/-0) vendor/openssl-sys/src/handwritten/dh.rs (+52/-0) vendor/openssl-sys/src/handwritten/dsa.rs (+85/-0) vendor/openssl-sys/src/handwritten/ec.rs (+271/-0) vendor/openssl-sys/src/handwritten/err.rs (+55/-0) vendor/openssl-sys/src/handwritten/evp.rs (+660/-0) vendor/openssl-sys/src/handwritten/hmac.rs (+30/-0) vendor/openssl-sys/src/handwritten/kdf.rs (+34/-0) vendor/openssl-sys/src/handwritten/mod.rs (+77/-0) vendor/openssl-sys/src/handwritten/object.rs (+31/-0) vendor/openssl-sys/src/handwritten/ocsp.rs (+89/-0) vendor/openssl-sys/src/handwritten/params.rs (+16/-0) vendor/openssl-sys/src/handwritten/pem.rs (+191/-0) vendor/openssl-sys/src/handwritten/pkcs12.rs (+53/-0) vendor/openssl-sys/src/handwritten/pkcs7.rs (+257/-0) vendor/openssl-sys/src/handwritten/poly1305.rs (+23/-0) vendor/openssl-sys/src/handwritten/provider.rs (+20/-0) vendor/openssl-sys/src/handwritten/rand.rs (+15/-0) vendor/openssl-sys/src/handwritten/rsa.rs (+124/-0) vendor/openssl-sys/src/handwritten/safestack.rs (+1/-0) vendor/openssl-sys/src/handwritten/sha.rs (+101/-0) vendor/openssl-sys/src/handwritten/srtp.rs (+10/-0) vendor/openssl-sys/src/handwritten/ssl.rs (+1009/-0) vendor/openssl-sys/src/handwritten/stack.rs (+47/-0) vendor/openssl-sys/src/handwritten/thread.rs (+7/-0) vendor/openssl-sys/src/handwritten/tls1.rs (+28/-0) vendor/openssl-sys/src/handwritten/types.rs (+1146/-0) vendor/openssl-sys/src/handwritten/x509.rs (+781/-0) vendor/openssl-sys/src/handwritten/x509_vfy.rs (+141/-0) vendor/openssl-sys/src/handwritten/x509v3.rs (+167/-0) vendor/openssl-sys/src/lib.rs (+209/-0) vendor/openssl-sys/src/macros.rs (+280/-0) vendor/openssl-sys/src/obj_mac.rs (+1023/-0) vendor/openssl-sys/src/ocsp.rs (+35/-0) vendor/openssl-sys/src/pem.rs (+3/-0) vendor/openssl-sys/src/pkcs7.rs (+20/-0) vendor/openssl-sys/src/rsa.rs (+101/-0) vendor/openssl-sys/src/sha.rs (+103/-0) vendor/openssl-sys/src/srtp.rs (+14/-0) vendor/openssl-sys/src/ssl.rs (+716/-0) vendor/openssl-sys/src/ssl3.rs (+5/-0) vendor/openssl-sys/src/tls1.rs (+114/-0) vendor/openssl-sys/src/types.rs (+21/-0) vendor/openssl-sys/src/x509.rs (+15/-0) vendor/openssl-sys/src/x509_vfy.rs (+149/-0) vendor/openssl-sys/src/x509v3.rs (+112/-0) vendor/ordered-float/.cargo-checksum.json (+1/-0) vendor/ordered-float/Cargo.toml (+78/-0) vendor/ordered-float/LICENSE-MIT (+25/-0) vendor/ordered-float/README.md (+38/-0) vendor/ordered-float/rustfmt.toml (+3/-0) vendor/ordered-float/src/lib.rs (+2055/-0) vendor/ordered-float/tests/test.rs (+763/-0) vendor/orion/.cargo-checksum.json (+1/-0) vendor/orion/CHANGELOG.md (+634/-0) vendor/orion/CONTRIBUTING.md (+58/-0) vendor/orion/Cargo.toml (+116/-0) vendor/orion/LICENSE (+21/-0) vendor/orion/README.md (+73/-0) vendor/orion/SECURITY.md (+37/-0) vendor/orion/benches/bench.rs (+488/-0) vendor/orion/deny.toml (+25/-0) vendor/orion/src/errors.rs (+140/-0) vendor/orion/src/hazardous/aead/chacha20poly1305.rs (+421/-0) vendor/orion/src/hazardous/aead/mod.rs (+30/-0) vendor/orion/src/hazardous/aead/streaming.rs (+1515/-0) vendor/orion/src/hazardous/aead/xchacha20poly1305.rs (+153/-0) vendor/orion/src/hazardous/cae/chacha20poly1305blake2b.rs (+262/-0) vendor/orion/src/hazardous/cae/mod.rs (+33/-0) vendor/orion/src/hazardous/cae/xchacha20poly1305blake2b.rs (+246/-0) vendor/orion/src/hazardous/ecc/mod.rs (+24/-0) vendor/orion/src/hazardous/ecc/x25519.rs (+822/-0) vendor/orion/src/hazardous/hash/blake2/blake2b.rs (+414/-0) vendor/orion/src/hazardous/hash/blake2/mod.rs (+442/-0) vendor/orion/src/hazardous/hash/mod.rs (+30/-0) vendor/orion/src/hazardous/hash/sha2/mod.rs (+1058/-0) vendor/orion/src/hazardous/hash/sha2/sha256.rs (+421/-0) vendor/orion/src/hazardous/hash/sha2/sha384.rs (+403/-0) vendor/orion/src/hazardous/hash/sha2/sha512.rs (+424/-0) vendor/orion/src/hazardous/hash/sha3/mod.rs (+782/-0) vendor/orion/src/hazardous/hash/sha3/sha3_224.rs (+274/-0) vendor/orion/src/hazardous/hash/sha3/sha3_256.rs (+336/-0) vendor/orion/src/hazardous/hash/sha3/sha3_384.rs (+274/-0) vendor/orion/src/hazardous/hash/sha3/sha3_512.rs (+274/-0) vendor/orion/src/hazardous/hash/sha3/shake128.rs (+228/-0) vendor/orion/src/hazardous/hash/sha3/shake256.rs (+228/-0) vendor/orion/src/hazardous/kdf/argon2i.rs (+2600/-0) vendor/orion/src/hazardous/kdf/hkdf.rs (+522/-0) vendor/orion/src/hazardous/kdf/mod.rs (+31/-0) vendor/orion/src/hazardous/kdf/pbkdf2.rs (+579/-0) vendor/orion/src/hazardous/kem/mod.rs (+25/-0) vendor/orion/src/hazardous/kem/x25519_hkdf_sha256.rs (+289/-0) vendor/orion/src/hazardous/mac/blake2b.rs (+435/-0) vendor/orion/src/hazardous/mac/hmac.rs (+919/-0) vendor/orion/src/hazardous/mac/mod.rs (+30/-0) vendor/orion/src/hazardous/mac/poly1305.rs (+573/-0) vendor/orion/src/hazardous/mod.rs (+53/-0) vendor/orion/src/hazardous/stream/chacha20.rs (+1331/-0) vendor/orion/src/hazardous/stream/mod.rs (+27/-0) vendor/orion/src/hazardous/stream/xchacha20.rs (+176/-0) vendor/orion/src/high_level/aead.rs (+630/-0) vendor/orion/src/high_level/auth.rs (+212/-0) vendor/orion/src/high_level/hash.rs (+134/-0) vendor/orion/src/high_level/hltypes.rs (+76/-0) vendor/orion/src/high_level/kdf.rs (+222/-0) vendor/orion/src/high_level/kex.rs (+539/-0) vendor/orion/src/high_level/mod.rs (+29/-0) vendor/orion/src/high_level/pwhash.rs (+991/-0) vendor/orion/src/lib.rs (+117/-0) vendor/orion/src/test_framework/aead_interface.rs (+379/-0) vendor/orion/src/test_framework/incremental_interface.rs (+343/-0) vendor/orion/src/test_framework/mod.rs (+33/-0) vendor/orion/src/test_framework/streamcipher_interface.rs (+305/-0) vendor/orion/src/test_framework/xof_interface.rs (+321/-0) vendor/orion/src/typedefs.rs (+993/-0) vendor/orion/src/util/endianness.rs (+371/-0) vendor/orion/src/util/mod.rs (+185/-0) vendor/orion/src/util/u32x4.rs (+98/-0) vendor/orion/src/util/u64x4.rs (+114/-0) vendor/os_info/.cargo-checksum.json (+1/-0) vendor/os_info/Cargo.lock (+169/-0) vendor/os_info/Cargo.toml (+62/-0) vendor/os_info/LICENSE (+21/-0) vendor/os_info/README.md (+137/-0) vendor/os_info/examples/print_version.rs (+14/-0) vendor/os_info/src/aix/mod.rs (+47/-0) vendor/os_info/src/android/mod.rs (+23/-0) vendor/os_info/src/architecture.rs (+32/-0) vendor/os_info/src/bitness.rs (+135/-0) vendor/os_info/src/dragonfly/mod.rs (+35/-0) vendor/os_info/src/emscripten/mod.rs (+24/-0) vendor/os_info/src/freebsd/mod.rs (+60/-0) vendor/os_info/src/illumos/mod.rs (+43/-0) vendor/os_info/src/info.rs (+346/-0) vendor/os_info/src/lib.rs (+125/-0) vendor/os_info/src/linux/file_release.rs (+642/-0) vendor/os_info/src/linux/lsb_release.rs (+573/-0) vendor/os_info/src/linux/mod.rs (+67/-0) vendor/os_info/src/linux/tests/AlmaLinux-9.0/etc/os-release (+18/-0) vendor/os_info/src/linux/tests/Alpaquita/etc/os-release (+8/-0) vendor/os_info/src/linux/tests/Alpine/etc/alpine-release (+1/-0) vendor/os_info/src/linux/tests/Alpine_3_12/etc/os-release (+6/-0) vendor/os_info/src/linux/tests/Amazon_1/etc/os-release (+9/-0) vendor/os_info/src/linux/tests/Amazon_2/etc/os-release (+9/-0) vendor/os_info/src/linux/tests/Arch/etc/os-release (+11/-0) vendor/os_info/src/linux/tests/ArchARM/etc/os-release (+11/-0) vendor/os_info/src/linux/tests/Artix/etc/os-release (+11/-0) vendor/os_info/src/linux/tests/CentOS/etc/centos-release (+1/-0) vendor/os_info/src/linux/tests/CentOS_7/etc/os-release (+15/-0) vendor/os_info/src/linux/tests/CentOS_Stream/etc/os-release (+13/-0) vendor/os_info/src/linux/tests/CentOS_Unknown/etc/centos-release (+1/-0) vendor/os_info/src/linux/tests/Debian_11/etc/os-release (+9/-0) vendor/os_info/src/linux/tests/Fedora/etc/fedora-release (+1/-0) vendor/os_info/src/linux/tests/Fedora_32/etc/os-release (+21/-0) vendor/os_info/src/linux/tests/Fedora_35/etc/os-release (+21/-0) vendor/os_info/src/linux/tests/Fedora_Unknown/etc/fedora-release (+1/-0) vendor/os_info/src/linux/tests/Kali_2023_2/etc/os-release (+11/-0) vendor/os_info/src/linux/tests/Mariner/etc/mariner-release (+2/-0) vendor/os_info/src/linux/tests/Mariner_Unknown/etc/mariner-release (+1/-0) vendor/os_info/src/linux/tests/Mint/etc/os-release (+12/-0) vendor/os_info/src/linux/tests/NixOS/etc/os-release (+11/-0) vendor/os_info/src/linux/tests/OpenCloudOS/etc/os-release (+9/-0) vendor/os_info/src/linux/tests/OracleLinux/etc/os-release (+18/-0) vendor/os_info/src/linux/tests/OracleLinux/etc/redhat-release (+1/-0) vendor/os_info/src/linux/tests/RedHatEnterprise/etc/redhat-release (+1/-0) vendor/os_info/src/linux/tests/RedHatEnterprise_7/etc/os-release (+17/-0) vendor/os_info/src/linux/tests/RedHatEnterprise_8/etc/os-release (+16/-0) vendor/os_info/src/linux/tests/RedHatEnterprise_Unknown/etc/redhat-release (+0/-0) vendor/os_info/src/linux/tests/RockyLinux-9.2/etc/os-release (+17/-0) vendor/os_info/src/linux/tests/SUSE_12/etc/os-release (+7/-0) vendor/os_info/src/linux/tests/SUSE_15/etc/os-release (+8/-0) vendor/os_info/src/linux/tests/Ubuntu/etc/os-release (+12/-0) vendor/os_info/src/linux/tests/Ultramarine/etc/os-release (+21/-0) vendor/os_info/src/linux/tests/Void/etc/os-release (+8/-0) vendor/os_info/src/linux/tests/none_invalid_os_release/etc/os-release (+2/-0) vendor/os_info/src/linux/tests/openEuler/etc/os-release (+6/-0) vendor/os_info/src/linux/tests/openSUSE_Tumbleweed/etc/os-release (+13/-0) vendor/os_info/src/macos/mod.rs (+107/-0) vendor/os_info/src/matcher.rs (+148/-0) vendor/os_info/src/netbsd/mod.rs (+36/-0) vendor/os_info/src/openbsd/mod.rs (+36/-0) vendor/os_info/src/os_type.rs (+208/-0) vendor/os_info/src/redox/mod.rs (+54/-0) vendor/os_info/src/uname.rs (+32/-0) vendor/os_info/src/unknown/mod.rs (+20/-0) vendor/os_info/src/version.rs (+150/-0) vendor/os_info/src/windows/mod.rs (+26/-0) vendor/os_info/src/windows/winapi.rs (+426/-0) vendor/os_info/tests/basic.rs (+4/-0) vendor/os_info/tests/md_doc.rs (+3/-0) vendor/overload/.cargo-checksum.json (+1/-0) vendor/overload/Cargo.toml (+22/-0) vendor/overload/LICENSE (+21/-0) vendor/overload/README.md (+64/-0) vendor/overload/src/assignment.rs (+27/-0) vendor/overload/src/binary.rs (+28/-0) vendor/overload/src/lib.rs (+257/-0) vendor/overload/src/unary.rs (+20/-0) vendor/overload/tests/assignment.rs (+89/-0) vendor/overload/tests/binary.rs (+72/-0) vendor/overload/tests/unary.rs (+21/-0) vendor/p384/.cargo-checksum.json (+1/-0) vendor/p384/CHANGELOG.md (+205/-0) vendor/p384/Cargo.toml (+177/-0) vendor/p384/LICENSE-APACHE (+201/-0) vendor/p384/LICENSE-MIT (+25/-0) vendor/p384/README.md (+91/-0) vendor/p384/benches/field.rs (+54/-0) vendor/p384/benches/scalar.rs (+73/-0) vendor/p384/src/arithmetic.rs (+64/-0) vendor/p384/src/arithmetic/field.rs (+195/-0) vendor/p384/src/arithmetic/field/p384_32.rs (+9945/-0) vendor/p384/src/arithmetic/field/p384_64.rs (+3661/-0) vendor/p384/src/arithmetic/hash2curve.rs (+326/-0) vendor/p384/src/arithmetic/macros.rs (+51/-0) vendor/p384/src/arithmetic/scalar.rs (+430/-0) vendor/p384/src/arithmetic/scalar/p384_scalar_32.rs (+11535/-0) vendor/p384/src/arithmetic/scalar/p384_scalar_64.rs (+3782/-0) vendor/p384/src/ecdh.rs (+47/-0) vendor/p384/src/ecdsa.rs (+185/-0) vendor/p384/src/lib.rs (+136/-0) vendor/p384/src/test_vectors.rs (+5/-0) vendor/p384/src/test_vectors/ecdsa.rs (+150/-0) vendor/p384/src/test_vectors/group.rs (+256/-0) vendor/p384/tests/affine.rs (+82/-0) vendor/p384/tests/projective.rs (+143/-0) vendor/parking_lot/.cargo-checksum.json (+1/-0) vendor/parking_lot/CHANGELOG.md (+254/-0) vendor/parking_lot/Cargo.toml (+86/-0) vendor/parking_lot/LICENSE-APACHE (+201/-0) vendor/parking_lot/LICENSE-MIT (+25/-0) vendor/parking_lot/README.md (+151/-0) vendor/parking_lot/bors.toml (+4/-0) vendor/parking_lot/src/condvar.rs (+1270/-0) vendor/parking_lot/src/deadlock.rs (+232/-0) vendor/parking_lot/src/elision.rs (+116/-0) vendor/parking_lot/src/fair_mutex.rs (+274/-0) vendor/parking_lot/src/lib.rs (+59/-0) vendor/parking_lot/src/mutex.rs (+311/-0) vendor/parking_lot/src/once.rs (+452/-0) vendor/parking_lot/src/raw_fair_mutex.rs (+65/-0) vendor/parking_lot/src/raw_mutex.rs (+331/-0) vendor/parking_lot/src/raw_rwlock.rs (+1153/-0) vendor/parking_lot/src/remutex.rs (+171/-0) vendor/parking_lot/src/rwlock.rs (+659/-0) vendor/parking_lot/src/util.rs (+38/-0) vendor/parking_lot/tests/issue_203.rs (+26/-0) vendor/parking_lot/tests/issue_392.rs (+15/-0) vendor/parking_lot_core/.cargo-checksum.json (+1/-0) vendor/parking_lot_core/Cargo.toml (+66/-0) vendor/parking_lot_core/LICENSE-APACHE (+201/-0) vendor/parking_lot_core/LICENSE-MIT (+25/-0) vendor/parking_lot_core/build.rs (+10/-0) vendor/parking_lot_core/src/lib.rs (+67/-0) vendor/parking_lot_core/src/parking_lot.rs (+1700/-0) vendor/parking_lot_core/src/spinwait.rs (+74/-0) vendor/parking_lot_core/src/thread_parker/generic.rs (+79/-0) vendor/parking_lot_core/src/thread_parker/linux.rs (+156/-0) vendor/parking_lot_core/src/thread_parker/mod.rs (+85/-0) vendor/parking_lot_core/src/thread_parker/redox.rs (+139/-0) vendor/parking_lot_core/src/thread_parker/sgx.rs (+94/-0) vendor/parking_lot_core/src/thread_parker/unix.rs (+242/-0) vendor/parking_lot_core/src/thread_parker/wasm.rs (+54/-0) vendor/parking_lot_core/src/thread_parker/wasm_atomic.rs (+97/-0) vendor/parking_lot_core/src/thread_parker/windows/bindings.rs (+31/-0) vendor/parking_lot_core/src/thread_parker/windows/keyed_event.rs (+194/-0) vendor/parking_lot_core/src/thread_parker/windows/mod.rs (+175/-0) vendor/parking_lot_core/src/thread_parker/windows/waitaddress.rs (+125/-0) vendor/parking_lot_core/src/util.rs (+31/-0) vendor/parking_lot_core/src/word_lock.rs (+327/-0) vendor/pasetors/.cargo-checksum.json (+1/-0) vendor/pasetors/CHANGELOG.md (+157/-0) vendor/pasetors/Cargo.toml (+137/-0) vendor/pasetors/LICENSE (+21/-0) vendor/pasetors/README.md (+37/-0) vendor/pasetors/SECURITY.md (+13/-0) vendor/pasetors/src/claims.rs (+779/-0) vendor/pasetors/src/common.rs (+97/-0) vendor/pasetors/src/errors.rs (+76/-0) vendor/pasetors/src/footer.rs (+396/-0) vendor/pasetors/src/keys.rs (+144/-0) vendor/pasetors/src/lib.rs (+360/-0) vendor/pasetors/src/pae.rs (+78/-0) vendor/pasetors/src/paserk.rs (+860/-0) vendor/pasetors/src/serde.rs (+133/-0) vendor/pasetors/src/token.rs (+656/-0) vendor/pasetors/src/version.rs (+37/-0) vendor/pasetors/src/version2.rs (+828/-0) vendor/pasetors/src/version3.rs (+818/-0) vendor/pasetors/src/version4.rs (+983/-0) vendor/pasetors/test_vectors/PASERK/k2.lid.json (+30/-0) vendor/pasetors/test_vectors/PASERK/k2.local.json (+37/-0) vendor/pasetors/test_vectors/PASERK/k2.pid.json (+37/-0) vendor/pasetors/test_vectors/PASERK/k2.public.json (+30/-0) vendor/pasetors/test_vectors/PASERK/k2.secret.json (+46/-0) vendor/pasetors/test_vectors/PASERK/k2.sid.json (+33/-0) vendor/pasetors/test_vectors/PASERK/k3.pid.json (+31/-0) vendor/pasetors/test_vectors/PASERK/k3.public.json (+24/-0) vendor/pasetors/test_vectors/PASERK/k3.secret.json (+43/-0) vendor/pasetors/test_vectors/PASERK/k3.sid.json (+34/-0) vendor/pasetors/test_vectors/PASERK/k4.lid.json (+30/-0) vendor/pasetors/test_vectors/PASERK/k4.local.json (+37/-0) vendor/pasetors/test_vectors/PASERK/k4.pid.json (+37/-0) vendor/pasetors/test_vectors/PASERK/k4.public.json (+30/-0) vendor/pasetors/test_vectors/PASERK/k4.secret.json (+45/-0) vendor/pasetors/test_vectors/PASERK/k4.sid.json (+34/-0) vendor/pasetors/test_vectors/v2.json (+167/-0) vendor/pasetors/test_vectors/v3.json (+183/-0) vendor/pasetors/test_vectors/v4.json (+187/-0) vendor/pasetors/test_vectors/wycheproof/ecdsa_secp384r1_sha384_test.json (+4634/-0) vendor/pasetors/test_vectors/wycheproof/ecdsa_secp384r1_sha3_384_test.json (+4711/-0) vendor/pathdiff/.cargo-checksum.json (+1/-0) vendor/pathdiff/Cargo.toml (+44/-0) vendor/pathdiff/LICENSE-APACHE (+201/-0) vendor/pathdiff/LICENSE-MIT (+23/-0) vendor/pathdiff/src/lib.rs (+250/-0) vendor/pem-rfc7468/.cargo-checksum.json (+1/-0) vendor/pem-rfc7468/CHANGELOG.md (+115/-0) vendor/pem-rfc7468/Cargo.toml (+58/-0) vendor/pem-rfc7468/LICENSE-APACHE (+201/-0) vendor/pem-rfc7468/LICENSE-MIT (+25/-0) vendor/pem-rfc7468/README.md (+101/-0) vendor/pem-rfc7468/src/decoder.rs (+270/-0) vendor/pem-rfc7468/src/encoder.rs (+299/-0) vendor/pem-rfc7468/src/error.rs (+107/-0) vendor/pem-rfc7468/src/grammar.rs (+232/-0) vendor/pem-rfc7468/src/lib.rs (+122/-0) vendor/pem-rfc7468/tests/decode.rs (+112/-0) vendor/pem-rfc7468/tests/encode.rs (+21/-0) vendor/pem-rfc7468/tests/examples/chosen_header.pem (+31/-0) vendor/pem-rfc7468/tests/examples/ed25519_id.pem (+5/-0) vendor/pem-rfc7468/tests/examples/pkcs1.pem (+27/-0) vendor/pem-rfc7468/tests/examples/pkcs1_with_preceeding_junk.pem (+44/-0) vendor/pem-rfc7468/tests/examples/pkcs8-enc.pem (+6/-0) vendor/pem-rfc7468/tests/examples/pkcs8.pem (+3/-0) vendor/pem-rfc7468/tests/examples/ssh_rsa_pem_password.pem (+30/-0) vendor/percent-encoding/.cargo-checksum.json (+1/-0) vendor/percent-encoding/Cargo.toml (+29/-0) vendor/percent-encoding/LICENSE-APACHE (+201/-0) vendor/percent-encoding/LICENSE-MIT (+25/-0) vendor/percent-encoding/src/lib.rs (+477/-0) vendor/pin-project-lite/.cargo-checksum.json (+1/-0) vendor/pin-project-lite/CHANGELOG.md (+247/-0) vendor/pin-project-lite/Cargo.toml (+137/-0) vendor/pin-project-lite/LICENSE-APACHE (+177/-0) vendor/pin-project-lite/LICENSE-MIT (+23/-0) vendor/pin-project-lite/README.md (+130/-0) vendor/pin-project-lite/src/lib.rs (+1729/-0) vendor/pin-project-lite/tests/auxiliary/mod.rs (+14/-0) vendor/pin-project-lite/tests/compiletest.rs (+12/-0) vendor/pin-project-lite/tests/drop_order.rs (+169/-0) vendor/pin-project-lite/tests/expand/default/enum.expanded.rs (+143/-0) vendor/pin-project-lite/tests/expand/default/enum.rs (+19/-0) vendor/pin-project-lite/tests/expand/default/struct.expanded.rs (+90/-0) vendor/pin-project-lite/tests/expand/default/struct.rs (+13/-0) vendor/pin-project-lite/tests/expand/multifields/enum.expanded.rs (+89/-0) vendor/pin-project-lite/tests/expand/multifields/enum.rs (+20/-0) vendor/pin-project-lite/tests/expand/multifields/struct.expanded.rs (+151/-0) vendor/pin-project-lite/tests/expand/multifields/struct.rs (+17/-0) vendor/pin-project-lite/tests/expand/naming/enum-all.expanded.rs (+143/-0) vendor/pin-project-lite/tests/expand/naming/enum-all.rs (+19/-0) vendor/pin-project-lite/tests/expand/naming/enum-mut.expanded.rs (+64/-0) vendor/pin-project-lite/tests/expand/naming/enum-mut.rs (+17/-0) vendor/pin-project-lite/tests/expand/naming/enum-none.expanded.rs (+26/-0) vendor/pin-project-lite/tests/expand/naming/enum-none.rs (+16/-0) vendor/pin-project-lite/tests/expand/naming/enum-ref.expanded.rs (+64/-0) vendor/pin-project-lite/tests/expand/naming/enum-ref.rs (+17/-0) vendor/pin-project-lite/tests/expand/naming/struct-all.expanded.rs (+128/-0) vendor/pin-project-lite/tests/expand/naming/struct-all.rs (+16/-0) vendor/pin-project-lite/tests/expand/naming/struct-mut.expanded.rs (+90/-0) vendor/pin-project-lite/tests/expand/naming/struct-mut.rs (+14/-0) vendor/pin-project-lite/tests/expand/naming/struct-none.expanded.rs (+90/-0) vendor/pin-project-lite/tests/expand/naming/struct-none.rs (+13/-0) vendor/pin-project-lite/tests/expand/naming/struct-ref.expanded.rs (+90/-0) vendor/pin-project-lite/tests/expand/naming/struct-ref.rs (+14/-0) vendor/pin-project-lite/tests/expand/not_unpin/enum.expanded.rs (+99/-0) vendor/pin-project-lite/tests/expand/not_unpin/enum.rs (+19/-0) vendor/pin-project-lite/tests/expand/not_unpin/struct.expanded.rs (+88/-0) vendor/pin-project-lite/tests/expand/not_unpin/struct.rs (+16/-0) vendor/pin-project-lite/tests/expand/pinned_drop/enum.expanded.rs (+111/-0) vendor/pin-project-lite/tests/expand/pinned_drop/enum.rs (+23/-0) vendor/pin-project-lite/tests/expand/pinned_drop/struct.expanded.rs (+100/-0) vendor/pin-project-lite/tests/expand/pinned_drop/struct.rs (+18/-0) vendor/pin-project-lite/tests/expand/pub/enum.expanded.rs (+101/-0) vendor/pin-project-lite/tests/expand/pub/enum.rs (+18/-0) vendor/pin-project-lite/tests/expand/pub/struct.expanded.rs (+90/-0) vendor/pin-project-lite/tests/expand/pub/struct.rs (+13/-0) vendor/pin-project-lite/tests/expandtest.rs (+11/-0) vendor/pin-project-lite/tests/include/basic.rs (+42/-0) vendor/pin-project-lite/tests/proper_unpin.rs (+101/-0) vendor/pin-project-lite/tests/test.rs (+699/-0) vendor/pin-project-lite/tests/ui/pin_project/conflict-drop.rs (+17/-0) vendor/pin-project-lite/tests/ui/pin_project/conflict-drop.stderr (+16/-0) vendor/pin-project-lite/tests/ui/pin_project/conflict-unpin.rs (+66/-0) vendor/pin-project-lite/tests/ui/pin_project/conflict-unpin.stderr (+84/-0) vendor/pin-project-lite/tests/ui/pin_project/invalid-bounds.rs (+95/-0) vendor/pin-project-lite/tests/ui/pin_project/invalid-bounds.stderr (+530/-0) vendor/pin-project-lite/tests/ui/pin_project/invalid.rs (+27/-0) vendor/pin-project-lite/tests/ui/pin_project/invalid.stderr (+53/-0) vendor/pin-project-lite/tests/ui/pin_project/overlapping_lifetime_names.rs (+12/-0) vendor/pin-project-lite/tests/ui/pin_project/overlapping_lifetime_names.stderr (+75/-0) vendor/pin-project-lite/tests/ui/pin_project/overlapping_unpin_struct.rs (+22/-0) vendor/pin-project-lite/tests/ui/pin_project/overlapping_unpin_struct.stderr (+34/-0) vendor/pin-project-lite/tests/ui/pin_project/packed.rs (+21/-0) vendor/pin-project-lite/tests/ui/pin_project/packed.stderr (+101/-0) vendor/pin-project-lite/tests/ui/pin_project/unpin_sneaky.rs (+14/-0) vendor/pin-project-lite/tests/ui/pin_project/unpin_sneaky.stderr (+5/-0) vendor/pin-project-lite/tests/ui/pin_project/unsupported.rs (+29/-0) vendor/pin-project-lite/tests/ui/pin_project/unsupported.stderr (+125/-0) vendor/pin-project-lite/tests/ui/pinned_drop/call-drop-inner.rs (+19/-0) vendor/pin-project-lite/tests/ui/pinned_drop/call-drop-inner.stderr (+21/-0) vendor/pin-project-lite/tests/ui/pinned_drop/conditional-drop-impl.rs (+28/-0) vendor/pin-project-lite/tests/ui/pinned_drop/conditional-drop-impl.stderr (+36/-0) vendor/pkcs8/.cargo-checksum.json (+1/-0) vendor/pkcs8/CHANGELOG.md (+234/-0) vendor/pkcs8/Cargo.toml (+108/-0) vendor/pkcs8/LICENSE-APACHE (+201/-0) vendor/pkcs8/LICENSE-MIT (+25/-0) vendor/pkcs8/README.md (+94/-0) vendor/pkcs8/src/encrypted_private_key_info.rs (+165/-0) vendor/pkcs8/src/error.rs (+93/-0) vendor/pkcs8/src/lib.rs (+111/-0) vendor/pkcs8/src/private_key_info.rs (+295/-0) vendor/pkcs8/src/traits.rs (+140/-0) vendor/pkcs8/src/version.rs (+63/-0) vendor/pkcs8/tests/encrypted_private_key.rs (+234/-0) vendor/pkcs8/tests/examples/ed25519-encpriv-aes256-pbkdf2-sha256.pem (+6/-0) vendor/pkcs8/tests/examples/ed25519-encpriv-aes256-scrypt.pem (+6/-0) vendor/pkcs8/tests/examples/ed25519-priv-pkcs8v1.pem (+3/-0) vendor/pkcs8/tests/examples/ed25519-priv-pkcs8v2.pem (+5/-0) vendor/pkcs8/tests/examples/ed25519-pub.pem (+3/-0) vendor/pkcs8/tests/examples/p256-priv.pem (+5/-0) vendor/pkcs8/tests/examples/p256-pub.pem (+4/-0) vendor/pkcs8/tests/examples/rsa2048-priv.pem (+28/-0) vendor/pkcs8/tests/examples/rsa2048-pub.pem (+9/-0) vendor/pkcs8/tests/examples/x25519-priv.pem (+3/-0) vendor/pkcs8/tests/private_key.rs (+187/-0) vendor/pkcs8/tests/traits.rs (+102/-0) vendor/pkg-config/.cargo-checksum.json (+1/-0) vendor/pkg-config/CHANGELOG.md (+209/-0) vendor/pkg-config/Cargo.lock.msrv (+14/-0) vendor/pkg-config/Cargo.toml (+42/-0) vendor/pkg-config/LICENSE-APACHE (+201/-0) vendor/pkg-config/LICENSE-MIT (+25/-0) vendor/pkg-config/README.md (+79/-0) vendor/pkg-config/src/lib.rs (+1188/-0) vendor/pkg-config/tests/escape.pc (+5/-0) vendor/pkg-config/tests/foo.pc (+16/-0) vendor/pkg-config/tests/framework.pc (+16/-0) vendor/pkg-config/tests/rpath.pc (+7/-0) vendor/pkg-config/tests/test.rs (+317/-0) vendor/powerfmt/.cargo-checksum.json (+1/-0) vendor/powerfmt/Cargo.toml (+59/-0) vendor/powerfmt/LICENSE-Apache (+202/-0) vendor/powerfmt/LICENSE-MIT (+19/-0) vendor/powerfmt/README.md (+45/-0) vendor/powerfmt/src/buf.rs (+198/-0) vendor/powerfmt/src/ext.rs (+54/-0) vendor/powerfmt/src/lib.rs (+15/-0) vendor/powerfmt/src/smart_display.rs (+695/-0) vendor/powerfmt/src/smart_display_impls.rs (+303/-0) vendor/ppv-lite86/.cargo-checksum.json (+1/-0) vendor/ppv-lite86/CHANGELOG.md (+10/-0) vendor/ppv-lite86/Cargo.toml (+55/-0) vendor/ppv-lite86/LICENSE-APACHE (+201/-0) vendor/ppv-lite86/LICENSE-MIT (+25/-0) vendor/ppv-lite86/src/generic.rs (+861/-0) vendor/ppv-lite86/src/lib.rs (+42/-0) vendor/ppv-lite86/src/soft.rs (+475/-0) vendor/ppv-lite86/src/types.rs (+298/-0) vendor/ppv-lite86/src/x86_64/mod.rs (+439/-0) vendor/ppv-lite86/src/x86_64/sse2.rs (+1707/-0) vendor/primeorder/.cargo-checksum.json (+1/-0) vendor/primeorder/CHANGELOG.md (+93/-0) vendor/primeorder/Cargo.toml (+66/-0) vendor/primeorder/LICENSE-APACHE (+201/-0) vendor/primeorder/LICENSE-MIT (+25/-0) vendor/primeorder/README.md (+96/-0) vendor/primeorder/src/affine.rs (+489/-0) vendor/primeorder/src/dev.rs (+157/-0) vendor/primeorder/src/field.rs (+660/-0) vendor/primeorder/src/lib.rs (+53/-0) vendor/primeorder/src/point_arithmetic.rs (+318/-0) vendor/primeorder/src/projective.rs (+781/-0) vendor/proc-macro2/.cargo-checksum.json (+1/-0) vendor/proc-macro2/Cargo.toml (+105/-0) vendor/proc-macro2/LICENSE-APACHE (+176/-0) vendor/proc-macro2/LICENSE-MIT (+23/-0) vendor/proc-macro2/README.md (+94/-0) vendor/proc-macro2/build.rs (+213/-0) vendor/proc-macro2/build/probe.rs (+41/-0) vendor/proc-macro2/rust-toolchain.toml (+2/-0) vendor/proc-macro2/src/detection.rs (+75/-0) vendor/proc-macro2/src/extra.rs (+151/-0) vendor/proc-macro2/src/fallback.rs (+1226/-0) vendor/proc-macro2/src/lib.rs (+1377/-0) vendor/proc-macro2/src/location.rs (+29/-0) vendor/proc-macro2/src/marker.rs (+17/-0) vendor/proc-macro2/src/parse.rs (+996/-0) vendor/proc-macro2/src/rcvec.rs (+145/-0) vendor/proc-macro2/src/wrapper.rs (+1008/-0) vendor/proc-macro2/tests/comments.rs (+105/-0) vendor/proc-macro2/tests/features.rs (+8/-0) vendor/proc-macro2/tests/marker.rs (+100/-0) vendor/proc-macro2/tests/test.rs (+905/-0) vendor/proc-macro2/tests/test_fmt.rs (+28/-0) vendor/proc-macro2/tests/test_size.rs (+81/-0) vendor/prodash/.cargo-checksum.json (+1/-0) vendor/prodash/CHANGELOG.md (+2986/-0) vendor/prodash/Cargo.lock (+1523/-0) vendor/prodash/Cargo.toml (+224/-0) vendor/prodash/LICENSE.md (+25/-0) vendor/prodash/README.md (+120/-0) vendor/prodash/src/lib.rs (+89/-0) vendor/prodash/src/messages.rs (+126/-0) vendor/prodash/src/progress/key.rs (+256/-0) vendor/prodash/src/progress/log.rs (+160/-0) vendor/prodash/src/progress/mod.rs (+110/-0) vendor/prodash/src/progress/utils.rs (+367/-0) vendor/prodash/src/render/line/draw.rs (+343/-0) vendor/prodash/src/render/line/engine.rs (+334/-0) vendor/prodash/src/render/line/mod.rs (+10/-0) vendor/prodash/src/render/mod.rs (+11/-0) vendor/prodash/src/render/tui/draw/all.rs (+164/-0) vendor/prodash/src/render/tui/draw/information.rs (+61/-0) vendor/prodash/src/render/tui/draw/messages.rs (+150/-0) vendor/prodash/src/render/tui/draw/mod.rs (+6/-0) vendor/prodash/src/render/tui/draw/progress.rs (+506/-0) vendor/prodash/src/render/tui/engine.rs (+266/-0) vendor/prodash/src/render/tui/mod.rs (+59/-0) vendor/prodash/src/render/tui/utils.rs (+25/-0) vendor/prodash/src/throughput.rs (+124/-0) vendor/prodash/src/time.rs (+63/-0) vendor/prodash/src/traits.rs (+615/-0) vendor/prodash/src/tree/item.rs (+410/-0) vendor/prodash/src/tree/mod.rs (+89/-0) vendor/prodash/src/tree/root.rs (+179/-0) vendor/prodash/src/tree/tests.rs (+115/-0) vendor/prodash/src/unit/bytes.rs (+34/-0) vendor/prodash/src/unit/display.rs (+188/-0) vendor/prodash/src/unit/duration.rs (+29/-0) vendor/prodash/src/unit/human.rs (+47/-0) vendor/prodash/src/unit/mod.rs (+140/-0) vendor/prodash/src/unit/range.rs (+34/-0) vendor/prodash/src/unit/traits.rs (+93/-0) vendor/quote/.cargo-checksum.json (+1/-0) vendor/quote/Cargo.toml (+64/-0) vendor/quote/LICENSE-APACHE (+176/-0) vendor/quote/LICENSE-MIT (+23/-0) vendor/quote/README.md (+271/-0) vendor/quote/rust-toolchain.toml (+2/-0) vendor/quote/src/ext.rs (+110/-0) vendor/quote/src/format.rs (+168/-0) vendor/quote/src/ident_fragment.rs (+88/-0) vendor/quote/src/lib.rs (+1464/-0) vendor/quote/src/runtime.rs (+530/-0) vendor/quote/src/spanned.rs (+50/-0) vendor/quote/src/to_tokens.rs (+275/-0) vendor/quote/tests/compiletest.rs (+7/-0) vendor/quote/tests/test.rs (+565/-0) vendor/quote/tests/ui/does-not-have-iter-interpolated-dup.rs (+9/-0) vendor/quote/tests/ui/does-not-have-iter-interpolated-dup.stderr (+11/-0) vendor/quote/tests/ui/does-not-have-iter-interpolated.rs (+9/-0) vendor/quote/tests/ui/does-not-have-iter-interpolated.stderr (+11/-0) vendor/quote/tests/ui/does-not-have-iter-separated.rs (+5/-0) vendor/quote/tests/ui/does-not-have-iter-separated.stderr (+10/-0) vendor/quote/tests/ui/does-not-have-iter.rs (+5/-0) vendor/quote/tests/ui/does-not-have-iter.stderr (+10/-0) vendor/quote/tests/ui/not-quotable.rs (+7/-0) vendor/quote/tests/ui/not-quotable.stderr (+20/-0) vendor/quote/tests/ui/not-repeatable.rs (+8/-0) vendor/quote/tests/ui/not-repeatable.stderr (+34/-0) vendor/quote/tests/ui/wrong-type-span.rs (+7/-0) vendor/quote/tests/ui/wrong-type-span.stderr (+10/-0) vendor/rand/.cargo-checksum.json (+1/-0) vendor/rand/CHANGELOG.md (+699/-0) vendor/rand/COPYRIGHT (+12/-0) vendor/rand/Cargo.toml (+75/-0) vendor/rand/LICENSE-APACHE (+176/-0) vendor/rand/LICENSE-MIT (+26/-0) vendor/rand/README.md (+158/-0) vendor/rand/src/distributions/bernoulli.rs (+219/-0) vendor/rand/src/distributions/distribution.rs (+272/-0) vendor/rand/src/distributions/float.rs (+312/-0) vendor/rand/src/distributions/integer.rs (+274/-0) vendor/rand/src/distributions/mod.rs (+218/-0) vendor/rand/src/distributions/other.rs (+365/-0) vendor/rand/src/distributions/slice.rs (+117/-0) vendor/rand/src/distributions/uniform.rs (+1658/-0) vendor/rand/src/distributions/utils.rs (+429/-0) vendor/rand/src/distributions/weighted.rs (+47/-0) vendor/rand/src/distributions/weighted_index.rs (+458/-0) vendor/rand/src/lib.rs (+214/-0) vendor/rand/src/prelude.rs (+34/-0) vendor/rand/src/rng.rs (+600/-0) vendor/rand/src/rngs/adapter/mod.rs (+16/-0) vendor/rand/src/rngs/adapter/read.rs (+150/-0) vendor/rand/src/rngs/adapter/reseeding.rs (+386/-0) vendor/rand/src/rngs/mock.rs (+87/-0) vendor/rand/src/rngs/mod.rs (+119/-0) vendor/rand/src/rngs/small.rs (+117/-0) vendor/rand/src/rngs/std.rs (+98/-0) vendor/rand/src/rngs/thread.rs (+143/-0) vendor/rand/src/rngs/xoshiro128plusplus.rs (+118/-0) vendor/rand/src/rngs/xoshiro256plusplus.rs (+122/-0) vendor/rand/src/seq/index.rs (+678/-0) vendor/rand/src/seq/mod.rs (+1356/-0) vendor/rand_chacha/.cargo-checksum.json (+1/-0) vendor/rand_chacha/CHANGELOG.md (+35/-0) vendor/rand_chacha/COPYRIGHT (+12/-0) vendor/rand_chacha/Cargo.toml (+45/-0) vendor/rand_chacha/LICENSE-APACHE (+201/-0) vendor/rand_chacha/LICENSE-MIT (+26/-0) vendor/rand_chacha/README.md (+48/-0) vendor/rand_chacha/src/chacha.rs (+632/-0) vendor/rand_chacha/src/guts.rs (+273/-0) vendor/rand_chacha/src/lib.rs (+33/-0) vendor/rand_core/.cargo-checksum.json (+1/-0) vendor/rand_core/CHANGELOG.md (+94/-0) vendor/rand_core/COPYRIGHT (+12/-0) vendor/rand_core/Cargo.toml (+63/-0) vendor/rand_core/LICENSE-APACHE (+187/-0) vendor/rand_core/LICENSE-MIT (+26/-0) vendor/rand_core/README.md (+81/-0) vendor/rand_core/src/block.rs (+539/-0) vendor/rand_core/src/error.rs (+228/-0) vendor/rand_core/src/impls.rs (+207/-0) vendor/rand_core/src/le.rs (+56/-0) vendor/rand_core/src/lib.rs (+531/-0) vendor/rand_core/src/os.rs (+85/-0) vendor/rand_xoshiro/.cargo-checksum.json (+1/-0) vendor/rand_xoshiro/CHANGELOG.md (+42/-0) vendor/rand_xoshiro/COPYRIGHT (+12/-0) vendor/rand_xoshiro/Cargo.toml (+37/-0) vendor/rand_xoshiro/LICENSE-APACHE (+201/-0) vendor/rand_xoshiro/LICENSE-MIT (+25/-0) vendor/rand_xoshiro/README.md (+34/-0) vendor/rand_xoshiro/src/common.rs (+265/-0) vendor/rand_xoshiro/src/lib.rs (+114/-0) vendor/rand_xoshiro/src/splitmix64.rs (+149/-0) vendor/rand_xoshiro/src/xoroshiro128plus.rs (+129/-0) vendor/rand_xoshiro/src/xoroshiro128plusplus.rs (+126/-0) vendor/rand_xoshiro/src/xoroshiro128starstar.rs (+126/-0) vendor/rand_xoshiro/src/xoroshiro64star.rs (+101/-0) vendor/rand_xoshiro/src/xoroshiro64starstar.rs (+100/-0) vendor/rand_xoshiro/src/xoshiro128plus.rs (+112/-0) vendor/rand_xoshiro/src/xoshiro128plusplus.rs (+120/-0) vendor/rand_xoshiro/src/xoshiro128starstar.rs (+120/-0) vendor/rand_xoshiro/src/xoshiro256plus.rs (+131/-0) vendor/rand_xoshiro/src/xoshiro256plusplus.rs (+130/-0) vendor/rand_xoshiro/src/xoshiro256starstar.rs (+130/-0) vendor/rand_xoshiro/src/xoshiro512plus.rs (+137/-0) vendor/rand_xoshiro/src/xoshiro512plusplus.rs (+137/-0) vendor/rand_xoshiro/src/xoshiro512starstar.rs (+137/-0) vendor/rand_xoshiro/tests/serde.rs (+83/-0) vendor/redox_syscall/.cargo-checksum.json (+1/-0) vendor/redox_syscall/Cargo.toml (+35/-0) vendor/redox_syscall/src/lib.rs (+0/-0) vendor/regex-automata-0.1.10/.cargo-checksum.json (+1/-0) vendor/regex-automata-0.1.10/COPYING (+3/-0) vendor/regex-automata-0.1.10/Cargo.toml (+86/-0) vendor/regex-automata-0.1.10/LICENSE-MIT (+21/-0) vendor/regex-automata-0.1.10/README.md (+223/-0) vendor/regex-automata-0.1.10/TODO (+10/-0) vendor/regex-automata-0.1.10/UNLICENSE (+24/-0) vendor/regex-automata-0.1.10/data/fowler-tests/LICENSE (+19/-0) vendor/regex-automata-0.1.10/data/fowler-tests/README (+17/-0) vendor/regex-automata-0.1.10/data/fowler-tests/basic.dat (+221/-0) vendor/regex-automata-0.1.10/data/fowler-tests/nullsubexpr.dat (+79/-0) vendor/regex-automata-0.1.10/data/fowler-tests/repetition.dat (+163/-0) vendor/regex-automata-0.1.10/data/tests/crazy.toml (+177/-0) vendor/regex-automata-0.1.10/data/tests/flags.toml (+59/-0) vendor/regex-automata-0.1.10/data/tests/fowler/LICENSE (+19/-0) vendor/regex-automata-0.1.10/data/tests/fowler/README (+23/-0) vendor/regex-automata-0.1.10/data/tests/fowler/basic.dat (+221/-0) vendor/regex-automata-0.1.10/data/tests/fowler/basic.toml (+1428/-0) vendor/regex-automata-0.1.10/data/tests/fowler/fowler-to-toml (+76/-0) vendor/regex-automata-0.1.10/data/tests/fowler/nullsubexpr.dat (+79/-0) vendor/regex-automata-0.1.10/data/tests/fowler/nullsubexpr.toml (+350/-0) vendor/regex-automata-0.1.10/data/tests/fowler/repetition-long.dat (+85/-0) vendor/regex-automata-0.1.10/data/tests/fowler/repetition-long.toml (+294/-0) vendor/regex-automata-0.1.10/data/tests/fowler/repetition.dat (+83/-0) vendor/regex-automata-0.1.10/data/tests/fowler/repetition.toml (+343/-0) vendor/regex-automata-0.1.10/data/tests/iter.toml (+92/-0) vendor/regex-automata-0.1.10/data/tests/no-unicode.toml (+138/-0) vendor/regex-automata-0.1.10/data/tests/unicode.toml (+489/-0) vendor/regex-automata-0.1.10/rustfmt.toml (+2/-0) vendor/regex-automata-0.1.10/src/byteorder.rs (+76/-0) vendor/regex-automata-0.1.10/src/classes.rs (+271/-0) vendor/regex-automata-0.1.10/src/codegen.rs (+104/-0) vendor/regex-automata-0.1.10/src/dense.rs (+2332/-0) vendor/regex-automata-0.1.10/src/determinize.rs (+286/-0) vendor/regex-automata-0.1.10/src/dfa.rs (+363/-0) vendor/regex-automata-0.1.10/src/error.rs (+150/-0) vendor/regex-automata-0.1.10/src/lib.rs (+360/-0) vendor/regex-automata-0.1.10/src/minimize.rs (+373/-0) vendor/regex-automata-0.1.10/src/nfa/compiler.rs (+1193/-0) vendor/regex-automata-0.1.10/src/nfa/map.rs (+282/-0) vendor/regex-automata-0.1.10/src/nfa/mod.rs (+252/-0) vendor/regex-automata-0.1.10/src/nfa/range_trie.rs (+1048/-0) vendor/regex-automata-0.1.10/src/regex.rs (+771/-0) vendor/regex-automata-0.1.10/src/sparse.rs (+1256/-0) vendor/regex-automata-0.1.10/src/sparse_set.rs (+60/-0) vendor/regex-automata-0.1.10/src/state_id.rs (+291/-0) vendor/regex-automata-0.1.10/src/transducer.rs (+107/-0) vendor/regex-automata-0.1.10/tests/collection.rs (+461/-0) vendor/regex-automata-0.1.10/tests/regression.rs (+42/-0) vendor/regex-automata-0.1.10/tests/suite.rs (+250/-0) vendor/regex-automata-0.1.10/tests/tests.rs (+25/-0) vendor/regex-automata-0.1.10/tests/unescape.rs (+84/-0) vendor/regex-automata/.cargo-checksum.json (+1/-0) vendor/regex-automata/Cargo.toml (+189/-0) vendor/regex-automata/LICENSE-APACHE (+201/-0) vendor/regex-automata/LICENSE-MIT (+25/-0) vendor/regex-automata/README.md (+117/-0) vendor/regex-automata/src/dfa/accel.rs (+517/-0) vendor/regex-automata/src/dfa/automaton.rs (+2260/-0) vendor/regex-automata/src/dfa/dense.rs (+5153/-0) vendor/regex-automata/src/dfa/determinize.rs (+599/-0) vendor/regex-automata/src/dfa/minimize.rs (+463/-0) vendor/regex-automata/src/dfa/mod.rs (+360/-0) vendor/regex-automata/src/dfa/onepass.rs (+3192/-0) vendor/regex-automata/src/dfa/regex.rs (+871/-0) vendor/regex-automata/src/dfa/remapper.rs (+242/-0) vendor/regex-automata/src/dfa/search.rs (+644/-0) vendor/regex-automata/src/dfa/sparse.rs (+2635/-0) vendor/regex-automata/src/dfa/special.rs (+494/-0) vendor/regex-automata/src/dfa/start.rs (+74/-0) vendor/regex-automata/src/hybrid/dfa.rs (+4418/-0) vendor/regex-automata/src/hybrid/error.rs (+242/-0) vendor/regex-automata/src/hybrid/id.rs (+354/-0) vendor/regex-automata/src/hybrid/mod.rs (+144/-0) vendor/regex-automata/src/hybrid/regex.rs (+895/-0) vendor/regex-automata/src/hybrid/search.rs (+802/-0) vendor/regex-automata/src/lib.rs (+648/-0) vendor/regex-automata/src/macros.rs (+20/-0) vendor/regex-automata/src/meta/error.rs (+241/-0) vendor/regex-automata/src/meta/limited.rs (+255/-0) vendor/regex-automata/src/meta/literal.rs (+81/-0) vendor/regex-automata/src/meta/mod.rs (+62/-0) vendor/regex-automata/src/meta/regex.rs (+3649/-0) vendor/regex-automata/src/meta/reverse_inner.rs (+220/-0) vendor/regex-automata/src/meta/stopat.rs (+212/-0) vendor/regex-automata/src/meta/strategy.rs (+1914/-0) vendor/regex-automata/src/meta/wrappers.rs (+1351/-0) vendor/regex-automata/src/nfa/mod.rs (+55/-0) vendor/regex-automata/src/nfa/thompson/backtrack.rs (+1908/-0) vendor/regex-automata/src/nfa/thompson/builder.rs (+1337/-0) vendor/regex-automata/src/nfa/thompson/compiler.rs (+2346/-0) vendor/regex-automata/src/nfa/thompson/error.rs (+185/-0) vendor/regex-automata/src/nfa/thompson/literal_trie.rs (+528/-0) vendor/regex-automata/src/nfa/thompson/map.rs (+296/-0) vendor/regex-automata/src/nfa/thompson/mod.rs (+81/-0) vendor/regex-automata/src/nfa/thompson/nfa.rs (+2099/-0) vendor/regex-automata/src/nfa/thompson/pikevm.rs (+2359/-0) vendor/regex-automata/src/nfa/thompson/range_trie.rs (+1051/-0) vendor/regex-automata/src/util/alphabet.rs (+1139/-0) vendor/regex-automata/src/util/captures.rs (+2548/-0) vendor/regex-automata/src/util/determinize/mod.rs (+682/-0) vendor/regex-automata/src/util/determinize/state.rs (+907/-0) vendor/regex-automata/src/util/empty.rs (+265/-0) vendor/regex-automata/src/util/escape.rs (+84/-0) vendor/regex-automata/src/util/int.rs (+246/-0) vendor/regex-automata/src/util/interpolate.rs (+579/-0) vendor/regex-automata/src/util/iter.rs (+1027/-0) vendor/regex-automata/src/util/lazy.rs (+461/-0) vendor/regex-automata/src/util/look.rs (+2547/-0) vendor/regex-automata/src/util/memchr.rs (+93/-0) vendor/regex-automata/src/util/mod.rs (+57/-0) vendor/regex-automata/src/util/pool.rs (+1199/-0) vendor/regex-automata/src/util/prefilter/aho_corasick.rs (+149/-0) vendor/regex-automata/src/util/prefilter/byteset.rs (+58/-0) vendor/regex-automata/src/util/prefilter/memchr.rs (+186/-0) vendor/regex-automata/src/util/prefilter/memmem.rs (+88/-0) vendor/regex-automata/src/util/prefilter/mod.rs (+719/-0) vendor/regex-automata/src/util/prefilter/teddy.rs (+160/-0) vendor/regex-automata/src/util/primitives.rs (+776/-0) vendor/regex-automata/src/util/search.rs (+1993/-0) vendor/regex-automata/src/util/sparse_set.rs (+239/-0) vendor/regex-automata/src/util/start.rs (+479/-0) vendor/regex-automata/src/util/syntax.rs (+482/-0) vendor/regex-automata/src/util/unicode_data/mod.rs (+17/-0) vendor/regex-automata/src/util/unicode_data/perl_word.rs (+806/-0) vendor/regex-automata/src/util/utf8.rs (+196/-0) vendor/regex-automata/src/util/wire.rs (+958/-0) vendor/regex-automata/test (+95/-0) vendor/regex-automata/tests/dfa/api.rs (+69/-0) vendor/regex-automata/tests/dfa/mod.rs (+8/-0) vendor/regex-automata/tests/dfa/onepass/mod.rs (+2/-0) vendor/regex-automata/tests/dfa/onepass/suite.rs (+197/-0) vendor/regex-automata/tests/dfa/regression.rs (+48/-0) vendor/regex-automata/tests/dfa/suite.rs (+443/-0) vendor/regex-automata/tests/fuzz/dense.rs (+52/-0) vendor/regex-automata/tests/fuzz/mod.rs (+2/-0) vendor/regex-automata/tests/fuzz/sparse.rs (+132/-0) vendor/regex-automata/tests/gen/README.md (+65/-0) vendor/regex-automata/tests/gen/dense/mod.rs (+22/-0) vendor/regex-automata/tests/gen/dense/multi_pattern_v2.rs (+43/-0) vendor/regex-automata/tests/gen/mod.rs (+2/-0) vendor/regex-automata/tests/gen/sparse/mod.rs (+22/-0) vendor/regex-automata/tests/gen/sparse/multi_pattern_v2.rs (+37/-0) vendor/regex-automata/tests/hybrid/api.rs (+171/-0) vendor/regex-automata/tests/hybrid/mod.rs (+3/-0) vendor/regex-automata/tests/hybrid/suite.rs (+347/-0) vendor/regex-automata/tests/lib.rs (+115/-0) vendor/regex-automata/tests/meta/mod.rs (+2/-0) vendor/regex-automata/tests/meta/suite.rs (+200/-0) vendor/regex-automata/tests/nfa/mod.rs (+1/-0) vendor/regex-automata/tests/nfa/thompson/backtrack/mod.rs (+2/-0) vendor/regex-automata/tests/nfa/thompson/backtrack/suite.rs (+213/-0) vendor/regex-automata/tests/nfa/thompson/mod.rs (+4/-0) vendor/regex-automata/tests/nfa/thompson/pikevm/mod.rs (+2/-0) vendor/regex-automata/tests/nfa/thompson/pikevm/suite.rs (+162/-0) vendor/regex-syntax-0.6.29/.cargo-checksum.json (+1/-0) vendor/regex-syntax-0.6.29/Cargo.toml (+41/-0) vendor/regex-syntax-0.6.29/LICENSE-APACHE (+201/-0) vendor/regex-syntax-0.6.29/LICENSE-MIT (+25/-0) vendor/regex-syntax-0.6.29/README.md (+98/-0) vendor/regex-syntax-0.6.29/benches/bench.rs (+63/-0) vendor/regex-syntax-0.6.29/src/ast/mod.rs (+1513/-0) vendor/regex-syntax-0.6.29/src/ast/parse.rs (+5930/-0) vendor/regex-syntax-0.6.29/src/ast/print.rs (+568/-0) vendor/regex-syntax-0.6.29/src/ast/visitor.rs (+517/-0) vendor/regex-syntax-0.6.29/src/either.rs (+8/-0) vendor/regex-syntax-0.6.29/src/error.rs (+324/-0) vendor/regex-syntax-0.6.29/src/hir/interval.rs (+520/-0) vendor/regex-syntax-0.6.29/src/hir/literal/mod.rs (+1686/-0) vendor/regex-syntax-0.6.29/src/hir/mod.rs (+2299/-0) vendor/regex-syntax-0.6.29/src/hir/print.rs (+367/-0) vendor/regex-syntax-0.6.29/src/hir/translate.rs (+3207/-0) vendor/regex-syntax-0.6.29/src/hir/visitor.rs (+203/-0) vendor/regex-syntax-0.6.29/src/lib.rs (+312/-0) vendor/regex-syntax-0.6.29/src/parser.rs (+200/-0) vendor/regex-syntax-0.6.29/src/unicode.rs (+1001/-0) vendor/regex-syntax-0.6.29/src/unicode_tables/LICENSE-UNICODE (+57/-0) vendor/regex-syntax-0.6.29/src/unicode_tables/age.rs (+1791/-0) vendor/regex-syntax-0.6.29/src/unicode_tables/case_folding_simple.rs (+2888/-0) vendor/regex-syntax-0.6.29/src/unicode_tables/general_category.rs (+6552/-0) vendor/regex-syntax-0.6.29/src/unicode_tables/grapheme_cluster_break.rs (+1416/-0) vendor/regex-syntax-0.6.29/src/unicode_tables/mod.rs (+57/-0) vendor/regex-syntax-0.6.29/src/unicode_tables/perl_decimal.rs (+77/-0) vendor/regex-syntax-0.6.29/src/unicode_tables/perl_space.rs (+23/-0) vendor/regex-syntax-0.6.29/src/unicode_tables/perl_word.rs (+781/-0) vendor/regex-syntax-0.6.29/src/unicode_tables/property_bool.rs (+11367/-0) vendor/regex-syntax-0.6.29/src/unicode_tables/property_names.rs (+264/-0) vendor/regex-syntax-0.6.29/src/unicode_tables/property_values.rs (+924/-0) vendor/regex-syntax-0.6.29/src/unicode_tables/script.rs (+1263/-0) vendor/regex-syntax-0.6.29/src/unicode_tables/script_extension.rs (+1457/-0) vendor/regex-syntax-0.6.29/src/unicode_tables/sentence_break.rs (+2477/-0) vendor/regex-syntax-0.6.29/src/unicode_tables/word_break.rs (+1120/-0) vendor/regex-syntax-0.6.29/src/utf8.rs (+587/-0) vendor/regex-syntax-0.6.29/test (+22/-0) vendor/regex-syntax/.cargo-checksum.json (+1/-0) vendor/regex-syntax/Cargo.toml (+74/-0) vendor/regex-syntax/LICENSE-APACHE (+201/-0) vendor/regex-syntax/LICENSE-MIT (+25/-0) vendor/regex-syntax/README.md (+96/-0) vendor/regex-syntax/benches/bench.rs (+63/-0) vendor/regex-syntax/src/ast/mod.rs (+1809/-0) vendor/regex-syntax/src/ast/parse.rs (+6377/-0) vendor/regex-syntax/src/ast/print.rs (+577/-0) vendor/regex-syntax/src/ast/visitor.rs (+522/-0) vendor/regex-syntax/src/debug.rs (+107/-0) vendor/regex-syntax/src/either.rs (+8/-0) vendor/regex-syntax/src/error.rs (+311/-0) vendor/regex-syntax/src/hir/interval.rs (+564/-0) vendor/regex-syntax/src/hir/literal.rs (+3214/-0) vendor/regex-syntax/src/hir/mod.rs (+3873/-0) vendor/regex-syntax/src/hir/print.rs (+608/-0) vendor/regex-syntax/src/hir/translate.rs (+3744/-0) vendor/regex-syntax/src/hir/visitor.rs (+215/-0) vendor/regex-syntax/src/lib.rs (+431/-0) vendor/regex-syntax/src/parser.rs (+254/-0) vendor/regex-syntax/src/rank.rs (+258/-0) vendor/regex-syntax/src/unicode.rs (+1041/-0) vendor/regex-syntax/src/unicode_tables/LICENSE-UNICODE (+57/-0) vendor/regex-syntax/src/unicode_tables/age.rs (+1846/-0) vendor/regex-syntax/src/unicode_tables/case_folding_simple.rs (+2948/-0) vendor/regex-syntax/src/unicode_tables/general_category.rs (+6717/-0) vendor/regex-syntax/src/unicode_tables/grapheme_cluster_break.rs (+1420/-0) vendor/regex-syntax/src/unicode_tables/mod.rs (+57/-0) vendor/regex-syntax/src/unicode_tables/perl_decimal.rs (+84/-0) vendor/regex-syntax/src/unicode_tables/perl_space.rs (+23/-0) vendor/regex-syntax/src/unicode_tables/perl_word.rs (+806/-0) vendor/regex-syntax/src/unicode_tables/property_bool.rs (+12095/-0) vendor/regex-syntax/src/unicode_tables/property_names.rs (+281/-0) vendor/regex-syntax/src/unicode_tables/property_values.rs (+956/-0) vendor/regex-syntax/src/unicode_tables/script.rs (+1300/-0) vendor/regex-syntax/src/unicode_tables/script_extension.rs (+1718/-0) vendor/regex-syntax/src/unicode_tables/sentence_break.rs (+2530/-0) vendor/regex-syntax/src/unicode_tables/word_break.rs (+1152/-0) vendor/regex-syntax/src/utf8.rs (+592/-0) vendor/regex-syntax/test (+30/-0) vendor/regex/.cargo-checksum.json (+1/-0) vendor/regex/CHANGELOG.md (+1651/-0) vendor/regex/Cargo.toml (+201/-0) vendor/regex/Cross.toml (+7/-0) vendor/regex/LICENSE-APACHE (+201/-0) vendor/regex/LICENSE-MIT (+25/-0) vendor/regex/README.md (+332/-0) vendor/regex/UNICODE.md (+258/-0) vendor/regex/bench/README.md (+2/-0) vendor/regex/record/README.md (+4/-0) vendor/regex/record/compile-test/2023-04-19_1.7.3.csv (+11/-0) vendor/regex/record/compile-test/2023-04-20_master.csv (+11/-0) vendor/regex/record/compile-test/2023-07-05.csv (+37/-0) vendor/regex/record/compile-test/README.md (+27/-0) vendor/regex/record/old-bench-log/01-lazy-dfa/dynamic (+73/-0) vendor/regex/record/old-bench-log/01-lazy-dfa/dynamic-no-lazy-dfa (+85/-0) vendor/regex/record/old-bench-log/01-lazy-dfa/native (+65/-0) vendor/regex/record/old-bench-log/01-lazy-dfa/nfa (+74/-0) vendor/regex/record/old-bench-log/01-lazy-dfa/pcre (+60/-0) vendor/regex/record/old-bench-log/02-set/dynamic (+78/-0) vendor/regex/record/old-bench-log/03-bytes/onig (+68/-0) vendor/regex/record/old-bench-log/03-bytes/pcre (+66/-0) vendor/regex/record/old-bench-log/03-bytes/rust (+83/-0) vendor/regex/record/old-bench-log/03-bytes/rust-bytes (+66/-0) vendor/regex/record/old-bench-log/04/onig (+78/-0) vendor/regex/record/old-bench-log/04/pcre1-jit (+77/-0) vendor/regex/record/old-bench-log/04/pcre2-jit (+77/-0) vendor/regex/record/old-bench-log/04/re2 (+79/-0) vendor/regex/record/old-bench-log/04/rust (+81/-0) vendor/regex/record/old-bench-log/04/tcl (+72/-0) vendor/regex/record/old-bench-log/05/onig (+99/-0) vendor/regex/record/old-bench-log/05/onig-vs-rust (+95/-0) vendor/regex/record/old-bench-log/05/pcre1 (+98/-0) vendor/regex/record/old-bench-log/05/pcre1-vs-rust (+94/-0) vendor/regex/record/old-bench-log/05/pcre2 (+98/-0) vendor/regex/record/old-bench-log/05/pcre2-vs-rust (+94/-0) vendor/regex/record/old-bench-log/05/re2 (+101/-0) vendor/regex/record/old-bench-log/05/re2-vs-rust (+97/-0) vendor/regex/record/old-bench-log/05/rust (+103/-0) vendor/regex/record/old-bench-log/05/tcl (+94/-0) vendor/regex/record/old-bench-log/05/tcl-vs-rust (+90/-0) vendor/regex/record/old-bench-log/06/dphobos-dmd (+98/-0) vendor/regex/record/old-bench-log/06/dphobos-dmd-ct (+99/-0) vendor/regex/record/old-bench-log/06/dphobos-ldc (+100/-0) vendor/regex/record/old-bench-log/06/dphobos-ldc-ct (+99/-0) vendor/regex/record/old-bench-log/06/pcre1 (+98/-0) vendor/regex/record/old-bench-log/06/pcre2 (+98/-0) vendor/regex/record/old-bench-log/06/re2 (+101/-0) vendor/regex/record/old-bench-log/06/rust (+113/-0) vendor/regex/record/old-bench-log/07/boost (+97/-0) vendor/regex/record/old-bench-log/07/dphobos-dmd (+100/-0) vendor/regex/record/old-bench-log/07/dphobos-dmd-ct (+98/-0) vendor/regex/record/old-bench-log/07/oniguruma (+99/-0) vendor/regex/record/old-bench-log/07/pcre1 (+98/-0) vendor/regex/record/old-bench-log/07/pcre2 (+98/-0) vendor/regex/record/old-bench-log/07/re2 (+101/-0) vendor/regex/record/old-bench-log/07/rust (+113/-0) vendor/regex/record/old-bench-log/07/rust-bytes (+101/-0) vendor/regex/record/old-bench-log/07/stdcpp (+87/-0) vendor/regex/record/old-bench-log/07/stdcpp-libcxx (+87/-0) vendor/regex/record/old-bench-log/07/tcl (+94/-0) vendor/regex/record/old-bench-log/08-new-memmem/rust-after-01 (+124/-0) vendor/regex/record/old-bench-log/08-new-memmem/rust-after-02 (+124/-0) vendor/regex/record/old-bench-log/08-new-memmem/rust-before-01 (+124/-0) vendor/regex/record/old-bench-log/08-new-memmem/rust-before-02 (+124/-0) vendor/regex/record/old-bench-log/09-new-baseline/pcre2 (+98/-0) vendor/regex/record/old-bench-log/09-new-baseline/re2 (+101/-0) vendor/regex/record/old-bench-log/09-new-baseline/rust (+124/-0) vendor/regex/record/old-bench-log/09-new-baseline/rust-bytes (+112/-0) vendor/regex/record/old-bench-log/10-last-frontier/rust-after-literal.log (+124/-0) vendor/regex/record/old-bench-log/10-last-frontier/rust-before-literal.log (+124/-0) vendor/regex/record/old-bench-log/10-last-frontier/rust-bytes-after-literal.log (+112/-0) vendor/regex/record/old-bench-log/10-last-frontier/rust-bytes-before-literal.log (+112/-0) vendor/regex/record/old-bench-log/11-regex-1.7.3/rust (+124/-0) vendor/regex/record/old-bench-log/11-regex-1.7.3/rust-bytes (+112/-0) vendor/regex/record/old-bench-log/12-regex-1.8.1/rust (+124/-0) vendor/regex/record/old-bench-log/12-regex-1.8.1/rust-bytes (+112/-0) vendor/regex/record/old-bench-log/13-regex-1.9.0/rust (+115/-0) vendor/regex/record/old-bench-log/13-regex-1.9.0/rust-bytes (+103/-0) vendor/regex/record/old-bench-log/README.md (+11/-0) vendor/regex/record/old-bench-log/old/01-before (+28/-0) vendor/regex/record/old-bench-log/old/02-new-syntax-crate (+28/-0) vendor/regex/record/old-bench-log/old/03-new-syntax-crate (+28/-0) vendor/regex/record/old-bench-log/old/04-fixed-benchmark (+28/-0) vendor/regex/record/old-bench-log/old/05-thread-caching (+29/-0) vendor/regex/record/old-bench-log/old/06-major-dynamic (+33/-0) vendor/regex/record/old-bench-log/old/06-major-macro (+33/-0) vendor/regex/record/old-bench-log/old/07-prefix-improvements (+33/-0) vendor/regex/record/old-bench-log/old/08-case-fixes (+33/-0) vendor/regex/record/old-bench-log/old/09-before-compiler-rewrite (+33/-0) vendor/regex/record/old-bench-log/old/10-compiler-rewrite (+33/-0) vendor/regex/record/old-bench-log/old/11-compiler-rewrite (+33/-0) vendor/regex/record/old-bench-log/old/12-executor (+35/-0) vendor/regex/record/old-bench-log/old/12-executor-bytes (+35/-0) vendor/regex/record/old-bench-log/old/13-cache-byte-range-suffixes (+35/-0) vendor/regex/rustfmt.toml (+2/-0) vendor/regex/src/builders.rs (+2539/-0) vendor/regex/src/bytes.rs (+91/-0) vendor/regex/src/error.rs (+102/-0) vendor/regex/src/find_byte.rs (+17/-0) vendor/regex/src/lib.rs (+1346/-0) vendor/regex/src/pattern.rs (+63/-0) vendor/regex/src/regex/bytes.rs (+2702/-0) vendor/regex/src/regex/mod.rs (+2/-0) vendor/regex/src/regex/string.rs (+2604/-0) vendor/regex/src/regexset/bytes.rs (+728/-0) vendor/regex/src/regexset/mod.rs (+2/-0) vendor/regex/src/regexset/string.rs (+724/-0) vendor/regex/test (+46/-0) vendor/regex/testdata/README.md (+22/-0) vendor/regex/testdata/anchored.toml (+127/-0) vendor/regex/testdata/bytes.toml (+235/-0) vendor/regex/testdata/crazy.toml (+315/-0) vendor/regex/testdata/crlf.toml (+117/-0) vendor/regex/testdata/earliest.toml (+52/-0) vendor/regex/testdata/empty.toml (+113/-0) vendor/regex/testdata/expensive.toml (+23/-0) vendor/regex/testdata/flags.toml (+68/-0) vendor/regex/testdata/fowler/basic.toml (+1611/-0) vendor/regex/testdata/fowler/dat/README (+25/-0) vendor/regex/testdata/fowler/dat/basic.dat (+223/-0) vendor/regex/testdata/fowler/dat/nullsubexpr.dat (+74/-0) vendor/regex/testdata/fowler/dat/repetition.dat (+169/-0) vendor/regex/testdata/fowler/nullsubexpr.toml (+405/-0) vendor/regex/testdata/fowler/repetition.toml (+746/-0) vendor/regex/testdata/iter.toml (+143/-0) vendor/regex/testdata/leftmost-all.toml (+25/-0) vendor/regex/testdata/line-terminator.toml (+109/-0) vendor/regex/testdata/misc.toml (+99/-0) vendor/regex/testdata/multiline.toml (+845/-0) vendor/regex/testdata/no-unicode.toml (+222/-0) vendor/regex/testdata/overlapping.toml (+280/-0) vendor/regex/testdata/regex-lite.toml (+98/-0) vendor/regex/testdata/regression.toml (+830/-0) vendor/regex/testdata/set.toml (+641/-0) vendor/regex/testdata/substring.toml (+36/-0) vendor/regex/testdata/unicode.toml (+517/-0) vendor/regex/testdata/utf8.toml (+399/-0) vendor/regex/testdata/word-boundary-special.toml (+687/-0) vendor/regex/testdata/word-boundary.toml (+781/-0) vendor/regex/tests/fuzz/mod.rs (+166/-0) vendor/regex/tests/lib.rs (+58/-0) vendor/regex/tests/misc.rs (+143/-0) vendor/regex/tests/regression.rs (+94/-0) vendor/regex/tests/regression_fuzz.rs (+61/-0) vendor/regex/tests/replace.rs (+183/-0) vendor/regex/tests/searcher.rs (+93/-0) vendor/regex/tests/suite_bytes.rs (+108/-0) vendor/regex/tests/suite_bytes_set.rs (+71/-0) vendor/regex/tests/suite_string.rs (+114/-0) vendor/regex/tests/suite_string_set.rs (+79/-0) vendor/rfc6979/.cargo-checksum.json (+1/-0) vendor/rfc6979/CHANGELOG.md (+40/-0) vendor/rfc6979/Cargo.toml (+48/-0) vendor/rfc6979/LICENSE-APACHE (+201/-0) vendor/rfc6979/LICENSE-MIT (+25/-0) vendor/rfc6979/README.md (+55/-0) vendor/rfc6979/src/ct_cmp.rs (+87/-0) vendor/rfc6979/src/lib.rs (+149/-0) vendor/rfc6979/tests/lib.rs (+14/-0) vendor/rusqlite/.cargo-checksum.json (+1/-0) vendor/rusqlite/Cargo.lock (+1006/-0) vendor/rusqlite/Cargo.toml (+280/-0) vendor/rusqlite/LICENSE (+19/-0) vendor/rusqlite/README.md (+247/-0) vendor/rusqlite/benches/cache.rs (+18/-0) vendor/rusqlite/benches/exec.rs (+17/-0) vendor/rusqlite/examples/load_extension.rs (+26/-0) vendor/rusqlite/examples/loadable_extension.rs (+44/-0) vendor/rusqlite/examples/persons/README.md (+28/-0) vendor/rusqlite/examples/persons/main.rs (+42/-0) vendor/rusqlite/src/auto_extension.rs (+62/-0) vendor/rusqlite/src/backup.rs (+446/-0) vendor/rusqlite/src/blob/mod.rs (+561/-0) vendor/rusqlite/src/blob/pos_io.rs (+271/-0) vendor/rusqlite/src/busy.rs (+127/-0) vendor/rusqlite/src/cache.rs (+350/-0) vendor/rusqlite/src/collation.rs (+241/-0) vendor/rusqlite/src/column.rs (+251/-0) vendor/rusqlite/src/config.rs (+164/-0) vendor/rusqlite/src/context.rs (+84/-0) vendor/rusqlite/src/error.rs (+482/-0) vendor/rusqlite/src/functions.rs (+1172/-0) vendor/rusqlite/src/hooks/mod.rs (+904/-0) vendor/rusqlite/src/hooks/preupdate_hook.rs (+372/-0) vendor/rusqlite/src/inner_connection.rs (+446/-0) vendor/rusqlite/src/lib.rs (+2279/-0) vendor/rusqlite/src/limits.rs (+158/-0) vendor/rusqlite/src/load_extension_guard.rs (+46/-0) vendor/rusqlite/src/params.rs (+455/-0) vendor/rusqlite/src/pragma.rs (+461/-0) vendor/rusqlite/src/raw_statement.rs (+240/-0) vendor/rusqlite/src/row.rs (+641/-0) vendor/rusqlite/src/serialize.rs (+165/-0) vendor/rusqlite/src/session.rs (+970/-0) vendor/rusqlite/src/statement.rs (+1373/-0) vendor/rusqlite/src/trace.rs (+181/-0) vendor/rusqlite/src/transaction.rs (+829/-0) vendor/rusqlite/src/types/chrono.rs (+319/-0) vendor/rusqlite/src/types/from_sql.rs (+365/-0) vendor/rusqlite/src/types/mod.rs (+446/-0) vendor/rusqlite/src/types/serde_json.rs (+135/-0) vendor/rusqlite/src/types/time.rs (+427/-0) vendor/rusqlite/src/types/to_sql.rs (+561/-0) vendor/rusqlite/src/types/url.rs (+82/-0) vendor/rusqlite/src/types/value.rs (+164/-0) vendor/rusqlite/src/types/value_ref.rs (+335/-0) vendor/rusqlite/src/unlock_notify.rs (+117/-0) vendor/rusqlite/src/util/mod.rs (+9/-0) vendor/rusqlite/src/util/param_cache.rs (+60/-0) vendor/rusqlite/src/util/small_cstr.rs (+170/-0) vendor/rusqlite/src/util/sqlite_string.rs (+239/-0) vendor/rusqlite/src/version.rs (+27/-0) vendor/rusqlite/src/vtab/array.rs (+222/-0) vendor/rusqlite/src/vtab/csvtab.rs (+389/-0) vendor/rusqlite/src/vtab/mod.rs (+1332/-0) vendor/rusqlite/src/vtab/series.rs (+340/-0) vendor/rusqlite/src/vtab/vtablog.rs (+296/-0) vendor/rusqlite/test.csv (+6/-0) vendor/rusqlite/tests/auto_ext.rs (+41/-0) vendor/rusqlite/tests/config_log.rs (+34/-0) vendor/rusqlite/tests/deny_single_threaded_sqlite_config.rs (+20/-0) vendor/rusqlite/tests/vtab.rs (+100/-0) vendor/rustfix/.cargo-checksum.json (+1/-0) vendor/rustfix/CHANGELOG.md (+79/-0) vendor/rustfix/Cargo.toml (+87/-0) vendor/rustfix/LICENSE-APACHE (+201/-0) vendor/rustfix/LICENSE-MIT (+23/-0) vendor/rustfix/README.md (+29/-0) vendor/rustfix/proptest-regressions/replace.txt (+8/-0) vendor/rustfix/src/diagnostics.rs (+115/-0) vendor/rustfix/src/error.rs (+21/-0) vendor/rustfix/src/lib.rs (+279/-0) vendor/rustfix/src/replace.rs (+329/-0) vendor/rustix/.cargo-checksum.json (+1/-0) vendor/rustix/CODE_OF_CONDUCT.md (+49/-0) vendor/rustix/CONTRIBUTING.md (+27/-0) vendor/rustix/COPYRIGHT (+29/-0) vendor/rustix/Cargo.toml (+307/-0) vendor/rustix/LICENSE-APACHE (+201/-0) vendor/rustix/LICENSE-Apache-2.0_WITH_LLVM-exception (+220/-0) vendor/rustix/LICENSE-MIT (+23/-0) vendor/rustix/ORG_CODE_OF_CONDUCT.md (+143/-0) vendor/rustix/README.md (+196/-0) vendor/rustix/SECURITY.md (+29/-0) vendor/rustix/benches/mod.rs (+217/-0) vendor/rustix/build.rs (+253/-0) vendor/rustix/src/backend/libc/c.rs (+485/-0) vendor/rustix/src/backend/libc/conv.rs (+257/-0) vendor/rustix/src/backend/libc/event/epoll.rs (+75/-0) vendor/rustix/src/backend/libc/event/mod.rs (+9/-0) vendor/rustix/src/backend/libc/event/poll_fd.rs (+138/-0) vendor/rustix/src/backend/libc/event/syscalls.rs (+293/-0) vendor/rustix/src/backend/libc/event/types.rs (+37/-0) vendor/rustix/src/backend/libc/event/windows_syscalls.rs (+16/-0) vendor/rustix/src/backend/libc/fs/dir.rs (+423/-0) vendor/rustix/src/backend/libc/fs/inotify.rs (+124/-0) vendor/rustix/src/backend/libc/fs/makedev.rs (+138/-0) vendor/rustix/src/backend/libc/fs/mod.rs (+23/-0) vendor/rustix/src/backend/libc/fs/syscalls.rs (+2587/-0) vendor/rustix/src/backend/libc/fs/types.rs (+1181/-0) vendor/rustix/src/backend/libc/io/errno.rs (+1101/-0) vendor/rustix/src/backend/libc/io/mod.rs (+6/-0) vendor/rustix/src/backend/libc/io/syscalls.rs (+348/-0) vendor/rustix/src/backend/libc/io/types.rs (+65/-0) vendor/rustix/src/backend/libc/io/windows_syscalls.rs (+37/-0) vendor/rustix/src/backend/libc/io_uring/mod.rs (+1/-0) vendor/rustix/src/backend/libc/io_uring/syscalls.rs (+94/-0) vendor/rustix/src/backend/libc/mm/mod.rs (+2/-0) vendor/rustix/src/backend/libc/mm/syscalls.rs (+244/-0) vendor/rustix/src/backend/libc/mm/types.rs (+495/-0) vendor/rustix/src/backend/libc/mod.rs (+215/-0) vendor/rustix/src/backend/libc/mount/mod.rs (+2/-0) vendor/rustix/src/backend/libc/mount/syscalls.rs (+272/-0) vendor/rustix/src/backend/libc/mount/types.rs (+339/-0) vendor/rustix/src/backend/libc/net/addr.rs (+259/-0) vendor/rustix/src/backend/libc/net/ext.rs (+137/-0) vendor/rustix/src/backend/libc/net/mod.rs (+18/-0) vendor/rustix/src/backend/libc/net/msghdr.rs (+160/-0) vendor/rustix/src/backend/libc/net/netdevice.rs (+54/-0) vendor/rustix/src/backend/libc/net/read_sockaddr.rs (+337/-0) vendor/rustix/src/backend/libc/net/send_recv.rs (+112/-0) vendor/rustix/src/backend/libc/net/sockopt.rs (+1237/-0) vendor/rustix/src/backend/libc/net/syscalls.rs (+621/-0) vendor/rustix/src/backend/libc/net/write_sockaddr.rs (+128/-0) vendor/rustix/src/backend/libc/param/auxv.rs (+67/-0) vendor/rustix/src/backend/libc/param/mod.rs (+1/-0) vendor/rustix/src/backend/libc/pid/mod.rs (+1/-0) vendor/rustix/src/backend/libc/pid/syscalls.rs (+14/-0) vendor/rustix/src/backend/libc/pipe/mod.rs (+2/-0) vendor/rustix/src/backend/libc/pipe/syscalls.rs (+125/-0) vendor/rustix/src/backend/libc/pipe/types.rs (+108/-0) vendor/rustix/src/backend/libc/prctl/mod.rs (+1/-0) vendor/rustix/src/backend/libc/prctl/syscalls.rs (+14/-0) vendor/rustix/src/backend/libc/process/cpu_set.rs (+68/-0) vendor/rustix/src/backend/libc/process/mod.rs (+7/-0) vendor/rustix/src/backend/libc/process/syscalls.rs (+744/-0) vendor/rustix/src/backend/libc/process/types.rs (+172/-0) vendor/rustix/src/backend/libc/process/wait.rs (+9/-0) vendor/rustix/src/backend/libc/pty/mod.rs (+1/-0) vendor/rustix/src/backend/libc/pty/syscalls.rs (+106/-0) vendor/rustix/src/backend/libc/rand/mod.rs (+2/-0) vendor/rustix/src/backend/libc/rand/syscalls.rs (+18/-0) vendor/rustix/src/backend/libc/rand/types.rs (+24/-0) vendor/rustix/src/backend/libc/shm/mod.rs (+2/-0) vendor/rustix/src/backend/libc/shm/syscalls.rs (+25/-0) vendor/rustix/src/backend/libc/shm/types.rs (+30/-0) vendor/rustix/src/backend/libc/system/mod.rs (+3/-0) vendor/rustix/src/backend/libc/system/syscalls.rs (+121/-0) vendor/rustix/src/backend/libc/system/types.rs (+8/-0) vendor/rustix/src/backend/libc/termios/mod.rs (+1/-0) vendor/rustix/src/backend/libc/termios/syscalls.rs (+521/-0) vendor/rustix/src/backend/libc/thread/futex.rs (+93/-0) vendor/rustix/src/backend/libc/thread/mod.rs (+4/-0) vendor/rustix/src/backend/libc/thread/syscalls.rs (+648/-0) vendor/rustix/src/backend/libc/time/mod.rs (+3/-0) vendor/rustix/src/backend/libc/time/syscalls.rs (+452/-0) vendor/rustix/src/backend/libc/time/types.rs (+177/-0) vendor/rustix/src/backend/libc/ugid/mod.rs (+1/-0) vendor/rustix/src/backend/libc/ugid/syscalls.rs (+42/-0) vendor/rustix/src/backend/libc/winsock_c.rs (+59/-0) vendor/rustix/src/backend/linux_raw/arch/aarch64.rs (+268/-0) vendor/rustix/src/backend/linux_raw/arch/arm.rs (+265/-0) vendor/rustix/src/backend/linux_raw/arch/mips.rs (+543/-0) vendor/rustix/src/backend/linux_raw/arch/mips32r6.rs (+543/-0) vendor/rustix/src/backend/linux_raw/arch/mips64.rs (+466/-0) vendor/rustix/src/backend/linux_raw/arch/mips64r6.rs (+470/-0) vendor/rustix/src/backend/linux_raw/arch/mod.rs (+317/-0) vendor/rustix/src/backend/linux_raw/arch/powerpc64.rs (+413/-0) vendor/rustix/src/backend/linux_raw/arch/riscv64.rs (+265/-0) vendor/rustix/src/backend/linux_raw/arch/thumb.rs (+322/-0) vendor/rustix/src/backend/linux_raw/arch/x86.rs (+490/-0) vendor/rustix/src/backend/linux_raw/arch/x86_64.rs (+293/-0) vendor/rustix/src/backend/linux_raw/c.rs (+315/-0) vendor/rustix/src/backend/linux_raw/conv.rs (+1027/-0) vendor/rustix/src/backend/linux_raw/event/epoll.rs (+74/-0) vendor/rustix/src/backend/linux_raw/event/mod.rs (+4/-0) vendor/rustix/src/backend/linux_raw/event/poll_fd.rs (+98/-0) vendor/rustix/src/backend/linux_raw/event/syscalls.rs (+169/-0) vendor/rustix/src/backend/linux_raw/event/types.rs (+21/-0) vendor/rustix/src/backend/linux_raw/fs/dir.rs (+315/-0) vendor/rustix/src/backend/linux_raw/fs/inotify.rs (+124/-0) vendor/rustix/src/backend/linux_raw/fs/makedev.rs (+19/-0) vendor/rustix/src/backend/linux_raw/fs/mod.rs (+13/-0) vendor/rustix/src/backend/linux_raw/fs/syscalls.rs (+1660/-0) vendor/rustix/src/backend/linux_raw/fs/types.rs (+754/-0) vendor/rustix/src/backend/linux_raw/io/errno.rs (+552/-0) vendor/rustix/src/backend/linux_raw/io/mod.rs (+3/-0) vendor/rustix/src/backend/linux_raw/io/syscalls.rs (+385/-0) vendor/rustix/src/backend/linux_raw/io/types.rs (+57/-0) vendor/rustix/src/backend/linux_raw/io_uring/mod.rs (+1/-0) vendor/rustix/src/backend/linux_raw/io_uring/syscalls.rs (+79/-0) vendor/rustix/src/backend/linux_raw/mm/mod.rs (+2/-0) vendor/rustix/src/backend/linux_raw/mm/syscalls.rs (+237/-0) vendor/rustix/src/backend/linux_raw/mm/types.rs (+297/-0) vendor/rustix/src/backend/linux_raw/mod.rs (+117/-0) vendor/rustix/src/backend/linux_raw/mount/mod.rs (+2/-0) vendor/rustix/src/backend/linux_raw/mount/syscalls.rs (+239/-0) vendor/rustix/src/backend/linux_raw/mount/types.rs (+331/-0) vendor/rustix/src/backend/linux_raw/net/addr.rs (+177/-0) vendor/rustix/src/backend/linux_raw/net/mod.rs (+8/-0) vendor/rustix/src/backend/linux_raw/net/msghdr.rs (+171/-0) vendor/rustix/src/backend/linux_raw/net/netdevice.rs (+70/-0) vendor/rustix/src/backend/linux_raw/net/read_sockaddr.rs (+221/-0) vendor/rustix/src/backend/linux_raw/net/send_recv.rs (+65/-0) vendor/rustix/src/backend/linux_raw/net/sockopt.rs (+1050/-0) vendor/rustix/src/backend/linux_raw/net/syscalls.rs (+1051/-0) vendor/rustix/src/backend/linux_raw/net/write_sockaddr.rs (+82/-0) vendor/rustix/src/backend/linux_raw/param/auxv.rs (+581/-0) vendor/rustix/src/backend/linux_raw/param/init.rs (+179/-0) vendor/rustix/src/backend/linux_raw/param/libc_auxv.rs (+193/-0) vendor/rustix/src/backend/linux_raw/param/mod.rs (+15/-0) vendor/rustix/src/backend/linux_raw/pid/mod.rs (+1/-0) vendor/rustix/src/backend/linux_raw/pid/syscalls.rs (+17/-0) vendor/rustix/src/backend/linux_raw/pipe/mod.rs (+2/-0) vendor/rustix/src/backend/linux_raw/pipe/syscalls.rs (+135/-0) vendor/rustix/src/backend/linux_raw/pipe/types.rs (+84/-0) vendor/rustix/src/backend/linux_raw/prctl/mod.rs (+1/-0) vendor/rustix/src/backend/linux_raw/prctl/syscalls.rs (+21/-0) vendor/rustix/src/backend/linux_raw/process/cpu_set.rs (+51/-0) vendor/rustix/src/backend/linux_raw/process/mod.rs (+4/-0) vendor/rustix/src/backend/linux_raw/process/syscalls.rs (+622/-0) vendor/rustix/src/backend/linux_raw/process/types.rs (+104/-0) vendor/rustix/src/backend/linux_raw/process/wait.rs (+68/-0) vendor/rustix/src/backend/linux_raw/pty/mod.rs (+1/-0) vendor/rustix/src/backend/linux_raw/pty/syscalls.rs (+43/-0) vendor/rustix/src/backend/linux_raw/rand/mod.rs (+2/-0) vendor/rustix/src/backend/linux_raw/rand/syscalls.rs (+19/-0) vendor/rustix/src/backend/linux_raw/rand/types.rs (+20/-0) vendor/rustix/src/backend/linux_raw/reg.rs (+259/-0) vendor/rustix/src/backend/linux_raw/runtime/mod.rs (+2/-0) vendor/rustix/src/backend/linux_raw/runtime/syscalls.rs (+318/-0) vendor/rustix/src/backend/linux_raw/runtime/tls.rs (+98/-0) vendor/rustix/src/backend/linux_raw/shm/mod.rs (+2/-0) vendor/rustix/src/backend/linux_raw/shm/syscalls.rs (+47/-0) vendor/rustix/src/backend/linux_raw/shm/types.rs (+30/-0) vendor/rustix/src/backend/linux_raw/system/mod.rs (+2/-0) vendor/rustix/src/backend/linux_raw/system/syscalls.rs (+86/-0) vendor/rustix/src/backend/linux_raw/system/types.rs (+4/-0) vendor/rustix/src/backend/linux_raw/termios/mod.rs (+1/-0) vendor/rustix/src/backend/linux_raw/termios/syscalls.rs (+414/-0) vendor/rustix/src/backend/linux_raw/thread/futex.rs (+95/-0) vendor/rustix/src/backend/linux_raw/thread/mod.rs (+2/-0) vendor/rustix/src/backend/linux_raw/thread/syscalls.rs (+410/-0) vendor/rustix/src/backend/linux_raw/time/mod.rs (+3/-0) vendor/rustix/src/backend/linux_raw/time/syscalls.rs (+257/-0) vendor/rustix/src/backend/linux_raw/time/types.rs (+100/-0) vendor/rustix/src/backend/linux_raw/ugid/mod.rs (+1/-0) vendor/rustix/src/backend/linux_raw/ugid/syscalls.rs (+66/-0) vendor/rustix/src/backend/linux_raw/vdso.rs (+313/-0) vendor/rustix/src/backend/linux_raw/vdso_wrappers.rs (+609/-0) vendor/rustix/src/bitcast.rs (+39/-0) vendor/rustix/src/buffer.rs (+21/-0) vendor/rustix/src/check_types.rs (+91/-0) vendor/rustix/src/clockid.rs (+164/-0) vendor/rustix/src/cstr.rs (+77/-0) vendor/rustix/src/event/epoll.rs (+452/-0) vendor/rustix/src/event/eventfd.rs (+20/-0) vendor/rustix/src/event/kqueue.rs (+449/-0) vendor/rustix/src/event/mod.rs (+29/-0) vendor/rustix/src/event/pause.rs (+31/-0) vendor/rustix/src/event/poll.rs (+32/-0) vendor/rustix/src/event/port.rs (+151/-0) vendor/rustix/src/ffi.rs (+24/-0) vendor/rustix/src/fs/abs.rs (+301/-0) vendor/rustix/src/fs/at.rs (+472/-0) vendor/rustix/src/fs/constants.rs (+7/-0) vendor/rustix/src/fs/copy_file_range.rs (+20/-0) vendor/rustix/src/fs/cwd.rs (+39/-0) vendor/rustix/src/fs/dir.rs (+5/-0) vendor/rustix/src/fs/fadvise.rs (+18/-0) vendor/rustix/src/fs/fcntl.rs (+112/-0) vendor/rustix/src/fs/fcntl_apple.rs (+66/-0) vendor/rustix/src/fs/fcopyfile.rs (+88/-0) vendor/rustix/src/fs/fd.rs (+367/-0) vendor/rustix/src/fs/getpath.rs (+14/-0) vendor/rustix/src/fs/id.rs (+1/-0) vendor/rustix/src/fs/inotify.rs (+228/-0) vendor/rustix/src/fs/ioctl.rs (+167/-0) vendor/rustix/src/fs/makedev.rs (+35/-0) vendor/rustix/src/fs/memfd_create.rs (+18/-0) vendor/rustix/src/fs/mod.rs (+204/-0) vendor/rustix/src/fs/mount.rs (+55/-0) vendor/rustix/src/fs/openat2.rs (+23/-0) vendor/rustix/src/fs/raw_dir.rs (+237/-0) vendor/rustix/src/fs/seek_from.rs (+53/-0) vendor/rustix/src/fs/sendfile.rs (+19/-0) vendor/rustix/src/fs/statx.rs (+129/-0) vendor/rustix/src/fs/sync.rs (+14/-0) vendor/rustix/src/fs/xattr.rs (+202/-0) vendor/rustix/src/io/close.rs (+65/-0) vendor/rustix/src/io/dup.rs (+125/-0) vendor/rustix/src/io/errno.rs (+72/-0) vendor/rustix/src/io/fcntl.rs (+143/-0) vendor/rustix/src/io/ioctl.rs (+77/-0) vendor/rustix/src/io/is_read_write.rs (+19/-0) vendor/rustix/src/io/mod.rs (+32/-0) vendor/rustix/src/io/read_write.rs (+321/-0) vendor/rustix/src/io_uring.rs (+1603/-0) vendor/rustix/src/ioctl/bsd.rs (+27/-0) vendor/rustix/src/ioctl/linux.rs (+118/-0) vendor/rustix/src/ioctl/mod.rs (+359/-0) vendor/rustix/src/ioctl/patterns.rs (+256/-0) vendor/rustix/src/lib.rs (+397/-0) vendor/rustix/src/maybe_polyfill/no_std/io/mod.rs (+107/-0) vendor/rustix/src/maybe_polyfill/no_std/mod.rs (+16/-0) vendor/rustix/src/maybe_polyfill/no_std/net/mod.rs (+2/-0) vendor/rustix/src/maybe_polyfill/no_std/os/fd/mod.rs (+25/-0) vendor/rustix/src/maybe_polyfill/no_std/os/fd/owned.rs (+294/-0) vendor/rustix/src/maybe_polyfill/no_std/os/fd/raw.rs (+164/-0) vendor/rustix/src/maybe_polyfill/no_std/os/mod.rs (+4/-0) vendor/rustix/src/maybe_polyfill/no_std/os/windows/io/mod.rs (+5/-0) vendor/rustix/src/maybe_polyfill/no_std/os/windows/io/raw.rs (+71/-0) vendor/rustix/src/maybe_polyfill/no_std/os/windows/io/socket.rs (+199/-0) vendor/rustix/src/maybe_polyfill/no_std/os/windows/mod.rs (+19/-0) vendor/rustix/src/maybe_polyfill/std/mod.rs (+43/-0) vendor/rustix/src/mm/madvise.rs (+49/-0) vendor/rustix/src/mm/mmap.rs (+409/-0) vendor/rustix/src/mm/mod.rs (+15/-0) vendor/rustix/src/mm/msync.rs (+46/-0) vendor/rustix/src/mm/userfaultfd.rs (+30/-0) vendor/rustix/src/mount/fsopen.rs (+219/-0) vendor/rustix/src/mount/mod.rs (+19/-0) vendor/rustix/src/mount/mount_unmount.rs (+210/-0) vendor/rustix/src/mount/types.rs (+1/-0) vendor/rustix/src/net/mod.rs (+33/-0) vendor/rustix/src/net/netdevice.rs (+102/-0) vendor/rustix/src/net/send_recv/mod.rs (+430/-0) vendor/rustix/src/net/send_recv/msg.rs (+996/-0) vendor/rustix/src/net/socket.rs (+770/-0) vendor/rustix/src/net/socket_addr_any.rs (+122/-0) vendor/rustix/src/net/socketpair.rs (+36/-0) vendor/rustix/src/net/sockopt.rs (+1489/-0) vendor/rustix/src/net/types.rs (+1818/-0) vendor/rustix/src/net/wsa.rs (+49/-0) vendor/rustix/src/param/auxv.rs (+108/-0) vendor/rustix/src/param/init.rs (+23/-0) vendor/rustix/src/param/mod.rs (+14/-0) vendor/rustix/src/path/arg.rs (+1113/-0) vendor/rustix/src/path/dec_int.rs (+122/-0) vendor/rustix/src/path/mod.rs (+12/-0) vendor/rustix/src/pid.rs (+104/-0) vendor/rustix/src/pipe.rs (+220/-0) vendor/rustix/src/prctl.rs (+71/-0) vendor/rustix/src/process/chdir.rs (+97/-0) vendor/rustix/src/process/chroot.rs (+16/-0) vendor/rustix/src/process/exit.rs (+36/-0) vendor/rustix/src/process/id.rs (+212/-0) vendor/rustix/src/process/ioctl.rs (+52/-0) vendor/rustix/src/process/kill.rs (+97/-0) vendor/rustix/src/process/membarrier.rs (+92/-0) vendor/rustix/src/process/mod.rs (+84/-0) vendor/rustix/src/process/pidfd.rs (+43/-0) vendor/rustix/src/process/pidfd_getfd.rs (+56/-0) vendor/rustix/src/process/pivot_root.rs (+18/-0) vendor/rustix/src/process/prctl.rs (+1152/-0) vendor/rustix/src/process/priority.rs (+132/-0) vendor/rustix/src/process/procctl.rs (+531/-0) vendor/rustix/src/process/rlimit.rs (+53/-0) vendor/rustix/src/process/sched.rs (+161/-0) vendor/rustix/src/process/sched_yield.rs (+16/-0) vendor/rustix/src/process/umask.rs (+21/-0) vendor/rustix/src/process/wait.rs (+369/-0) vendor/rustix/src/procfs.rs (+531/-0) vendor/rustix/src/pty.rs (+207/-0) vendor/rustix/src/rand/getrandom.rs (+48/-0) vendor/rustix/src/rand/mod.rs (+7/-0) vendor/rustix/src/runtime.rs (+596/-0) vendor/rustix/src/shm.rs (+105/-0) vendor/rustix/src/signal.rs (+252/-0) vendor/rustix/src/static_assertions.rs (+36/-0) vendor/rustix/src/stdio.rs (+518/-0) vendor/rustix/src/system.rs (+261/-0) vendor/rustix/src/termios/ioctl.rs (+53/-0) vendor/rustix/src/termios/mod.rs (+27/-0) vendor/rustix/src/termios/tc.rs (+220/-0) vendor/rustix/src/termios/tty.rs (+84/-0) vendor/rustix/src/termios/types.rs (+1551/-0) vendor/rustix/src/thread/clock.rs (+115/-0) vendor/rustix/src/thread/futex.rs (+486/-0) vendor/rustix/src/thread/id.rs (+140/-0) vendor/rustix/src/thread/libcap.rs (+185/-0) vendor/rustix/src/thread/mod.rs (+92/-0) vendor/rustix/src/thread/prctl.rs (+1014/-0) vendor/rustix/src/thread/setns.rs (+139/-0) vendor/rustix/src/time/clock.rs (+108/-0) vendor/rustix/src/time/mod.rs (+11/-0) vendor/rustix/src/time/timerfd.rs (+41/-0) vendor/rustix/src/timespec.rs (+115/-0) vendor/rustix/src/ugid.rs (+98/-0) vendor/rustix/src/utils.rs (+76/-0) vendor/rustix/src/weak.rs (+287/-0) vendor/ryu/.cargo-checksum.json (+1/-0) vendor/ryu/Cargo.lock (+149/-0) vendor/ryu/Cargo.toml (+103/-0) vendor/ryu/LICENSE-APACHE (+176/-0) vendor/ryu/LICENSE-BOOST (+23/-0) vendor/ryu/README.md (+110/-0) vendor/ryu/benches/bench.rs (+62/-0) vendor/ryu/examples/upstream_benchmark.rs (+85/-0) vendor/ryu/src/buffer/mod.rs (+171/-0) vendor/ryu/src/common.rs (+95/-0) vendor/ryu/src/d2s.rs (+302/-0) vendor/ryu/src/d2s_full_table.rs (+696/-0) vendor/ryu/src/d2s_intrinsics.rs (+89/-0) vendor/ryu/src/d2s_small_table.rs (+142/-0) vendor/ryu/src/digit_table.rs (+28/-0) vendor/ryu/src/f2s.rs (+178/-0) vendor/ryu/src/f2s_intrinsics.rs (+113/-0) vendor/ryu/src/lib.rs (+125/-0) vendor/ryu/src/parse.rs (+19/-0) vendor/ryu/src/pretty/exponent.rs (+48/-0) vendor/ryu/src/pretty/mantissa.rs (+82/-0) vendor/ryu/src/pretty/mod.rs (+224/-0) vendor/ryu/src/s2d.rs (+217/-0) vendor/ryu/src/s2f.rs (+229/-0) vendor/ryu/tests/common_test.rs (+91/-0) vendor/ryu/tests/d2s_intrinsics_test.rs (+72/-0) vendor/ryu/tests/d2s_table_test.rs (+59/-0) vendor/ryu/tests/d2s_test.rs (+331/-0) vendor/ryu/tests/exhaustive.rs (+52/-0) vendor/ryu/tests/f2s_test.rs (+181/-0) vendor/ryu/tests/macros/mod.rs (+8/-0) vendor/ryu/tests/s2d_test.rs (+167/-0) vendor/ryu/tests/s2f_test.rs (+110/-0) vendor/same-file/.cargo-checksum.json (+1/-0) vendor/same-file/COPYING (+3/-0) vendor/same-file/Cargo.lock (+48/-0) vendor/same-file/Cargo.toml (+29/-0) vendor/same-file/LICENSE-MIT (+21/-0) vendor/same-file/README.md (+49/-0) vendor/same-file/UNLICENSE (+24/-0) vendor/same-file/examples/is_same_file.rs (+11/-0) vendor/same-file/examples/is_stderr.rs (+31/-0) vendor/same-file/rustfmt.toml (+2/-0) vendor/same-file/src/lib.rs (+572/-0) vendor/same-file/src/unix.rs (+112/-0) vendor/same-file/src/unknown.rs (+52/-0) vendor/same-file/src/win.rs (+172/-0) vendor/schannel/.cargo-checksum.json (+1/-0) vendor/schannel/Cargo.toml (+31/-0) vendor/schannel/src/lib.rs (+0/-0) vendor/scopeguard/.cargo-checksum.json (+1/-0) vendor/scopeguard/Cargo.lock (+7/-0) vendor/scopeguard/Cargo.toml (+43/-0) vendor/scopeguard/LICENSE-APACHE (+201/-0) vendor/scopeguard/LICENSE-MIT (+25/-0) vendor/scopeguard/README.md (+102/-0) vendor/scopeguard/examples/readme.rs (+29/-0) vendor/scopeguard/src/lib.rs (+595/-0) vendor/sec1/.cargo-checksum.json (+1/-0) vendor/sec1/CHANGELOG.md (+92/-0) vendor/sec1/Cargo.toml (+120/-0) vendor/sec1/LICENSE-APACHE (+201/-0) vendor/sec1/LICENSE-MIT (+25/-0) vendor/sec1/README.md (+58/-0) vendor/sec1/src/error.rs (+82/-0) vendor/sec1/src/lib.rs (+77/-0) vendor/sec1/src/parameters.rs (+75/-0) vendor/sec1/src/point.rs (+776/-0) vendor/sec1/src/private_key.rs (+177/-0) vendor/sec1/src/traits.rs (+122/-0) vendor/sec1/tests/examples/p256-priv.pem (+5/-0) vendor/sec1/tests/private_key.rs (+43/-0) vendor/sec1/tests/traits.rs (+100/-0) vendor/security-framework-sys/.cargo-checksum.json (+1/-0) vendor/security-framework-sys/Cargo.toml (+64/-0) vendor/security-framework-sys/src/lib.rs (+0/-0) vendor/security-framework/.cargo-checksum.json (+1/-0) vendor/security-framework/Cargo.toml (+97/-0) vendor/security-framework/src/lib.rs (+0/-0) vendor/semver/.cargo-checksum.json (+1/-0) vendor/semver/Cargo.toml (+74/-0) vendor/semver/LICENSE-APACHE (+176/-0) vendor/semver/LICENSE-MIT (+23/-0) vendor/semver/README.md (+84/-0) vendor/semver/benches/parse.rs (+24/-0) vendor/semver/build.rs (+88/-0) vendor/semver/src/backport.rs (+23/-0) vendor/semver/src/display.rs (+165/-0) vendor/semver/src/error.rs (+126/-0) vendor/semver/src/eval.rs (+181/-0) vendor/semver/src/identifier.rs (+422/-0) vendor/semver/src/impls.rs (+156/-0) vendor/semver/src/lib.rs (+580/-0) vendor/semver/src/parse.rs (+409/-0) vendor/semver/src/serde.rs (+109/-0) vendor/semver/tests/node/mod.rs (+43/-0) vendor/semver/tests/test_autotrait.rs (+14/-0) vendor/semver/tests/test_identifier.rs (+51/-0) vendor/semver/tests/test_version.rs (+250/-0) vendor/semver/tests/test_version_req.rs (+485/-0) vendor/semver/tests/util/mod.rs (+54/-0) vendor/serde-untagged/.cargo-checksum.json (+1/-0) vendor/serde-untagged/Cargo.toml (+70/-0) vendor/serde-untagged/LICENSE-APACHE (+176/-0) vendor/serde-untagged/LICENSE-MIT (+23/-0) vendor/serde-untagged/README.md (+199/-0) vendor/serde-untagged/src/any.rs (+52/-0) vendor/serde-untagged/src/error.rs (+214/-0) vendor/serde-untagged/src/int.rs (+160/-0) vendor/serde-untagged/src/lib.rs (+968/-0) vendor/serde-untagged/src/map.rs (+94/-0) vendor/serde-untagged/src/seed.rs (+38/-0) vendor/serde-untagged/src/seq.rs (+73/-0) vendor/serde-untagged/tests/test.rs (+153/-0) vendor/serde-value/.cargo-checksum.json (+1/-0) vendor/serde-value/COPYING (+19/-0) vendor/serde-value/Cargo.toml (+30/-0) vendor/serde-value/README.md (+14/-0) vendor/serde-value/src/de.rs (+541/-0) vendor/serde-value/src/lib.rs (+384/-0) vendor/serde-value/src/ser.rs (+438/-0) vendor/serde/.cargo-checksum.json (+1/-0) vendor/serde/Cargo.toml (+79/-0) vendor/serde/LICENSE-APACHE (+176/-0) vendor/serde/LICENSE-MIT (+23/-0) vendor/serde/README.md (+114/-0) vendor/serde/build.rs (+137/-0) vendor/serde/crates-io.md (+65/-0) vendor/serde/src/de/ignored_any.rs (+238/-0) vendor/serde/src/de/impls.rs (+3183/-0) vendor/serde/src/de/mod.rs (+2335/-0) vendor/serde/src/de/seed.rs (+19/-0) vendor/serde/src/de/size_hint.rs (+29/-0) vendor/serde/src/de/value.rs (+1720/-0) vendor/serde/src/format.rs (+30/-0) vendor/serde/src/integer128.rs (+9/-0) vendor/serde/src/lib.rs (+347/-0) vendor/serde/src/macros.rs (+231/-0) vendor/serde/src/private/de.rs (+2795/-0) vendor/serde/src/private/doc.rs (+162/-0) vendor/serde/src/private/mod.rs (+48/-0) vendor/serde/src/private/ser.rs (+1360/-0) vendor/serde/src/ser/fmt.rs (+170/-0) vendor/serde/src/ser/impls.rs (+1096/-0) vendor/serde/src/ser/impossible.rs (+216/-0) vendor/serde/src/ser/mod.rs (+1954/-0) vendor/serde/src/std_error.rs (+48/-0) vendor/serde_derive/.cargo-checksum.json (+1/-0) vendor/serde_derive/Cargo.toml (+79/-0) vendor/serde_derive/LICENSE-APACHE (+176/-0) vendor/serde_derive/LICENSE-MIT (+23/-0) vendor/serde_derive/README.md (+114/-0) vendor/serde_derive/crates-io.md (+65/-0) vendor/serde_derive/src/bound.rs (+408/-0) vendor/serde_derive/src/de.rs (+3172/-0) vendor/serde_derive/src/dummy.rs (+23/-0) vendor/serde_derive/src/fragment.rs (+74/-0) vendor/serde_derive/src/internals/ast.rs (+205/-0) vendor/serde_derive/src/internals/attr.rs (+1871/-0) vendor/serde_derive/src/internals/case.rs (+200/-0) vendor/serde_derive/src/internals/check.rs (+477/-0) vendor/serde_derive/src/internals/ctxt.rs (+68/-0) vendor/serde_derive/src/internals/mod.rs (+27/-0) vendor/serde_derive/src/internals/receiver.rs (+292/-0) vendor/serde_derive/src/internals/respan.rs (+16/-0) vendor/serde_derive/src/internals/symbol.rs (+71/-0) vendor/serde_derive/src/lib.rs (+102/-0) vendor/serde_derive/src/pretend.rs (+185/-0) vendor/serde_derive/src/ser.rs (+1350/-0) vendor/serde_derive/src/this.rs (+32/-0) vendor/serde_ignored/.cargo-checksum.json (+1/-0) vendor/serde_ignored/Cargo.toml (+48/-0) vendor/serde_ignored/LICENSE-APACHE (+176/-0) vendor/serde_ignored/LICENSE-MIT (+23/-0) vendor/serde_ignored/README.md (+93/-0) vendor/serde_ignored/src/lib.rs (+1376/-0) vendor/serde_ignored/tests/test.rs (+141/-0) vendor/serde_json/.cargo-checksum.json (+1/-0) vendor/serde_json/CONTRIBUTING.md (+46/-0) vendor/serde_json/Cargo.toml (+149/-0) vendor/serde_json/LICENSE-APACHE (+176/-0) vendor/serde_json/LICENSE-MIT (+23/-0) vendor/serde_json/README.md (+390/-0) vendor/serde_json/build.rs (+29/-0) vendor/serde_json/src/de.rs (+2683/-0) vendor/serde_json/src/error.rs (+541/-0) vendor/serde_json/src/io/core.rs (+79/-0) vendor/serde_json/src/io/mod.rs (+20/-0) vendor/serde_json/src/iter.rs (+70/-0) vendor/serde_json/src/lexical/algorithm.rs (+196/-0) vendor/serde_json/src/lexical/bhcomp.rs (+218/-0) vendor/serde_json/src/lexical/bignum.rs (+34/-0) vendor/serde_json/src/lexical/cached.rs (+82/-0) vendor/serde_json/src/lexical/cached_float80.rs (+206/-0) vendor/serde_json/src/lexical/digit.rs (+18/-0) vendor/serde_json/src/lexical/errors.rs (+132/-0) vendor/serde_json/src/lexical/exponent.rs (+50/-0) vendor/serde_json/src/lexical/float.rs (+183/-0) vendor/serde_json/src/lexical/large_powers.rs (+9/-0) vendor/serde_json/src/lexical/large_powers32.rs (+183/-0) vendor/serde_json/src/lexical/large_powers64.rs (+625/-0) vendor/serde_json/src/lexical/math.rs (+884/-0) vendor/serde_json/src/lexical/mod.rs (+38/-0) vendor/serde_json/src/lexical/num.rs (+421/-0) vendor/serde_json/src/lexical/parse.rs (+83/-0) vendor/serde_json/src/lexical/rounding.rs (+231/-0) vendor/serde_json/src/lexical/shift.rs (+46/-0) vendor/serde_json/src/lexical/small_powers.rs (+70/-0) vendor/serde_json/src/lib.rs (+435/-0) vendor/serde_json/src/macros.rs (+303/-0) vendor/serde_json/src/map.rs (+1139/-0) vendor/serde_json/src/number.rs (+801/-0) vendor/serde_json/src/raw.rs (+777/-0) vendor/serde_json/src/read.rs (+1076/-0) vendor/serde_json/src/ser.rs (+2249/-0) vendor/serde_json/src/value/de.rs (+1423/-0) vendor/serde_json/src/value/from.rs (+278/-0) vendor/serde_json/src/value/index.rs (+258/-0) vendor/serde_json/src/value/mod.rs (+1035/-0) vendor/serde_json/src/value/partial_eq.rs (+103/-0) vendor/serde_json/src/value/ser.rs (+1063/-0) vendor/serde_json/tests/compiletest.rs (+7/-0) vendor/serde_json/tests/debug.rs (+81/-0) vendor/serde_json/tests/lexical.rs (+48/-0) vendor/serde_json/tests/lexical/algorithm.rs (+110/-0) vendor/serde_json/tests/lexical/exponent.rs (+36/-0) vendor/serde_json/tests/lexical/float.rs (+581/-0) vendor/serde_json/tests/lexical/math.rs (+211/-0) vendor/serde_json/tests/lexical/num.rs (+75/-0) vendor/serde_json/tests/lexical/parse.rs (+204/-0) vendor/serde_json/tests/lexical/rounding.rs (+316/-0) vendor/serde_json/tests/macros/mod.rs (+61/-0) vendor/serde_json/tests/map.rs (+57/-0) vendor/serde_json/tests/regression.rs (+5/-0) vendor/serde_json/tests/regression/issue1004.rs (+12/-0) vendor/serde_json/tests/regression/issue520.rs (+20/-0) vendor/serde_json/tests/regression/issue795.rs (+62/-0) vendor/serde_json/tests/regression/issue845.rs (+74/-0) vendor/serde_json/tests/regression/issue953.rs (+9/-0) vendor/serde_json/tests/stream.rs (+182/-0) vendor/serde_json/tests/test.rs (+2560/-0) vendor/serde_json/tests/ui/missing_colon.rs (+5/-0) vendor/serde_json/tests/ui/missing_colon.stderr (+12/-0) vendor/serde_json/tests/ui/missing_comma.rs (+5/-0) vendor/serde_json/tests/ui/missing_comma.stderr (+13/-0) vendor/serde_json/tests/ui/missing_value.rs (+5/-0) vendor/serde_json/tests/ui/missing_value.stderr (+12/-0) vendor/serde_json/tests/ui/not_found.rs (+5/-0) vendor/serde_json/tests/ui/not_found.stderr (+5/-0) vendor/serde_json/tests/ui/parse_expr.rs (+5/-0) vendor/serde_json/tests/ui/parse_expr.stderr (+11/-0) vendor/serde_json/tests/ui/parse_key.rs (+5/-0) vendor/serde_json/tests/ui/parse_key.stderr (+5/-0) vendor/serde_json/tests/ui/unexpected_after_array_element.rs (+5/-0) vendor/serde_json/tests/ui/unexpected_after_array_element.stderr (+7/-0) vendor/serde_json/tests/ui/unexpected_after_map_entry.rs (+5/-0) vendor/serde_json/tests/ui/unexpected_after_map_entry.stderr (+7/-0) vendor/serde_json/tests/ui/unexpected_colon.rs (+5/-0) vendor/serde_json/tests/ui/unexpected_colon.stderr (+7/-0) vendor/serde_json/tests/ui/unexpected_comma.rs (+5/-0) vendor/serde_json/tests/ui/unexpected_comma.stderr (+7/-0) vendor/serde_spanned/.cargo-checksum.json (+1/-0) vendor/serde_spanned/Cargo.toml (+176/-0) vendor/serde_spanned/LICENSE-APACHE (+202/-0) vendor/serde_spanned/LICENSE-MIT (+19/-0) vendor/serde_spanned/README.md (+28/-0) vendor/serde_spanned/src/lib.rs (+29/-0) vendor/serde_spanned/src/spanned.rs (+244/-0) vendor/sha1/.cargo-checksum.json (+1/-0) vendor/sha1/CHANGELOG.md (+48/-0) vendor/sha1/Cargo.toml (+67/-0) vendor/sha1/LICENSE-APACHE (+201/-0) vendor/sha1/LICENSE-MIT (+27/-0) vendor/sha1/README.md (+65/-0) vendor/sha1/benches/mod.rs (+14/-0) vendor/sha1/src/compress.rs (+40/-0) vendor/sha1/src/compress/aarch64.rs (+18/-0) vendor/sha1/src/compress/loongarch64_asm.rs (+255/-0) vendor/sha1/src/compress/soft.rs (+260/-0) vendor/sha1/src/compress/x86.rs (+112/-0) vendor/sha1/src/lib.rs (+154/-0) vendor/sha1/tests/mod.rs (+15/-0) vendor/sha1_smol/.cargo-checksum.json (+1/-0) vendor/sha1_smol/AUTHORS (+2/-0) vendor/sha1_smol/Cargo.toml (+41/-0) vendor/sha1_smol/LICENSE (+60/-0) vendor/sha1_smol/Makefile (+18/-0) vendor/sha1_smol/README.md (+31/-0) vendor/sha1_smol/src/lib.rs (+791/-0) vendor/sha1_smol/src/simd.rs (+151/-0) vendor/sha2/.cargo-checksum.json (+1/-0) vendor/sha2/CHANGELOG.md (+181/-0) vendor/sha2/Cargo.toml (+71/-0) vendor/sha2/LICENSE-APACHE (+201/-0) vendor/sha2/LICENSE-MIT (+27/-0) vendor/sha2/README.md (+59/-0) vendor/sha2/benches/mod.rs (+22/-0) vendor/sha2/src/consts.rs (+107/-0) vendor/sha2/src/core_api.rs (+157/-0) vendor/sha2/src/lib.rs (+96/-0) vendor/sha2/src/sha256.rs (+40/-0) vendor/sha2/src/sha256/aarch64.rs (+159/-0) vendor/sha2/src/sha256/loongarch64_asm.rs (+227/-0) vendor/sha2/src/sha256/soft.rs (+218/-0) vendor/sha2/src/sha256/x86.rs (+112/-0) vendor/sha2/src/sha512.rs (+42/-0) vendor/sha2/src/sha512/aarch64.rs (+235/-0) vendor/sha2/src/sha512/loongarch64_asm.rs (+242/-0) vendor/sha2/src/sha512/soft.rs (+215/-0) vendor/sha2/src/sha512/x86.rs (+357/-0) vendor/sha2/tests/mod.rs (+35/-0) vendor/sharded-slab/.cargo-checksum.json (+1/-0) vendor/sharded-slab/CHANGELOG.md (+221/-0) vendor/sharded-slab/Cargo.toml (+77/-0) vendor/sharded-slab/IMPLEMENTATION.md (+135/-0) vendor/sharded-slab/LICENSE (+19/-0) vendor/sharded-slab/README.md (+218/-0) vendor/sharded-slab/benches/bench.rs (+181/-0) vendor/sharded-slab/bin/loom.sh (+14/-0) vendor/sharded-slab/flake.lock (+85/-0) vendor/sharded-slab/flake.nix (+28/-0) vendor/sharded-slab/rust-toolchain.toml (+7/-0) vendor/sharded-slab/src/cfg.rs (+215/-0) vendor/sharded-slab/src/clear.rs (+100/-0) vendor/sharded-slab/src/implementation.rs (+138/-0) vendor/sharded-slab/src/iter.rs (+45/-0) vendor/sharded-slab/src/lib.rs (+1106/-0) vendor/sharded-slab/src/macros.rs (+67/-0) vendor/sharded-slab/src/page/mod.rs (+449/-0) vendor/sharded-slab/src/page/slot.rs (+922/-0) vendor/sharded-slab/src/page/stack.rs (+124/-0) vendor/sharded-slab/src/pool.rs (+1342/-0) vendor/sharded-slab/src/shard.rs (+432/-0) vendor/sharded-slab/src/sync.rs (+140/-0) vendor/sharded-slab/src/tests/custom_config.rs (+78/-0) vendor/sharded-slab/src/tests/loom_pool.rs (+641/-0) vendor/sharded-slab/src/tests/loom_slab.rs (+760/-0) vendor/sharded-slab/src/tests/mod.rs (+75/-0) vendor/sharded-slab/src/tests/properties.rs (+244/-0) vendor/sharded-slab/src/tid.rs (+210/-0) vendor/sharded-slab/tests/reserved_bits_leak.rs (+26/-0) vendor/shell-escape/.cargo-checksum.json (+1/-0) vendor/shell-escape/Cargo.toml (+21/-0) vendor/shell-escape/LICENSE-APACHE (+201/-0) vendor/shell-escape/LICENSE-MIT (+25/-0) vendor/shell-escape/README.md (+23/-0) vendor/shell-escape/src/lib.rs (+135/-0) vendor/shell-words/.cargo-checksum.json (+1/-0) vendor/shell-words/Cargo.toml (+30/-0) vendor/shell-words/LICENSE-APACHE (+201/-0) vendor/shell-words/LICENSE-MIT (+25/-0) vendor/shell-words/README.md (+90/-0) vendor/shell-words/rustfmt.toml (+1/-0) vendor/shell-words/src/lib.rs (+507/-0) vendor/shlex/.cargo-checksum.json (+1/-0) vendor/shlex/CHANGELOG.md (+21/-0) vendor/shlex/Cargo.toml (+35/-0) vendor/shlex/LICENSE-APACHE (+13/-0) vendor/shlex/LICENSE-MIT (+21/-0) vendor/shlex/README.md (+39/-0) vendor/shlex/src/bytes.rs (+576/-0) vendor/shlex/src/lib.rs (+358/-0) vendor/shlex/src/quoting_warning.md (+365/-0) vendor/signature/.cargo-checksum.json (+1/-0) vendor/signature/CHANGELOG.md (+247/-0) vendor/signature/Cargo.toml (+69/-0) vendor/signature/LICENSE-APACHE (+201/-0) vendor/signature/LICENSE-MIT (+25/-0) vendor/signature/README.md (+71/-0) vendor/signature/src/encoding.rs (+31/-0) vendor/signature/src/error.rs (+116/-0) vendor/signature/src/hazmat.rs (+70/-0) vendor/signature/src/keypair.rs (+29/-0) vendor/signature/src/lib.rs (+158/-0) vendor/signature/src/prehash_signature.rs (+31/-0) vendor/signature/src/signer.rs (+118/-0) vendor/signature/src/verifier.rs (+41/-0) vendor/signature/tests/derive.rs (+82/-0) vendor/sized-chunks/.cargo-checksum.json (+1/-0) vendor/sized-chunks/CHANGELOG.md (+223/-0) vendor/sized-chunks/CODE_OF_CONDUCT.md (+73/-0) vendor/sized-chunks/Cargo.toml (+49/-0) vendor/sized-chunks/LICENCE.md (+355/-0) vendor/sized-chunks/README.md (+35/-0) vendor/sized-chunks/src/arbitrary.rs (+98/-0) vendor/sized-chunks/src/inline_array/iter.rs (+63/-0) vendor/sized-chunks/src/inline_array/mod.rs (+736/-0) vendor/sized-chunks/src/lib.rs (+126/-0) vendor/sized-chunks/src/ring_buffer/index.rs (+178/-0) vendor/sized-chunks/src/ring_buffer/iter.rs (+218/-0) vendor/sized-chunks/src/ring_buffer/mod.rs (+1156/-0) vendor/sized-chunks/src/ring_buffer/refpool.rs (+69/-0) vendor/sized-chunks/src/ring_buffer/slice.rs (+556/-0) vendor/sized-chunks/src/sized_chunk/iter.rs (+109/-0) vendor/sized-chunks/src/sized_chunk/mod.rs (+1411/-0) vendor/sized-chunks/src/sized_chunk/refpool.rs (+66/-0) vendor/sized-chunks/src/sparse_chunk/iter.rs (+245/-0) vendor/sized-chunks/src/sparse_chunk/mod.rs (+514/-0) vendor/sized-chunks/src/sparse_chunk/refpool.rs (+57/-0) vendor/sized-chunks/src/tests.rs (+18/-0) vendor/sized-chunks/src/types.rs (+54/-0) vendor/smallvec/.cargo-checksum.json (+1/-0) vendor/smallvec/Cargo.toml (+72/-0) vendor/smallvec/LICENSE-APACHE (+201/-0) vendor/smallvec/LICENSE-MIT (+25/-0) vendor/smallvec/README.md (+26/-0) vendor/smallvec/benches/bench.rs (+312/-0) vendor/smallvec/debug_metadata/README.md (+111/-0) vendor/smallvec/debug_metadata/smallvec.natvis (+35/-0) vendor/smallvec/scripts/run_miri.sh (+24/-0) vendor/smallvec/src/arbitrary.rs (+19/-0) vendor/smallvec/src/lib.rs (+2472/-0) vendor/smallvec/src/specialization.rs (+19/-0) vendor/smallvec/src/tests.rs (+1058/-0) vendor/smallvec/tests/debugger_visualizer.rs (+68/-0) vendor/smallvec/tests/macro.rs (+24/-0) vendor/socket2/.cargo-checksum.json (+1/-0) vendor/socket2/Cargo.toml (+87/-0) vendor/socket2/LICENSE-APACHE (+201/-0) vendor/socket2/LICENSE-MIT (+25/-0) vendor/socket2/README.md (+85/-0) vendor/socket2/src/lib.rs (+738/-0) vendor/socket2/src/sockaddr.rs (+572/-0) vendor/socket2/src/socket.rs (+2214/-0) vendor/socket2/src/sockref.rs (+123/-0) vendor/socket2/src/sys/unix.rs (+3168/-0) vendor/socket2/src/sys/windows.rs (+1023/-0) vendor/spki/.cargo-checksum.json (+1/-0) vendor/spki/CHANGELOG.md (+152/-0) vendor/spki/Cargo.toml (+87/-0) vendor/spki/LICENSE-APACHE (+201/-0) vendor/spki/LICENSE-MIT (+25/-0) vendor/spki/README.md (+56/-0) vendor/spki/src/algorithm.rs (+194/-0) vendor/spki/src/error.rs (+68/-0) vendor/spki/src/fingerprint.rs (+42/-0) vendor/spki/src/lib.rs (+71/-0) vendor/spki/src/spki.rs (+217/-0) vendor/spki/src/traits.rs (+184/-0) vendor/spki/tests/examples/ed25519-pub.pem (+3/-0) vendor/spki/tests/examples/p256-pub.pem (+4/-0) vendor/spki/tests/examples/rsa2048-pub.pem (+9/-0) vendor/spki/tests/spki.rs (+161/-0) vendor/spki/tests/traits.rs (+102/-0) vendor/static_assertions/.cargo-checksum.json (+1/-0) vendor/static_assertions/CHANGELOG.md (+181/-0) vendor/static_assertions/Cargo.toml (+39/-0) vendor/static_assertions/LICENSE-APACHE (+202/-0) vendor/static_assertions/LICENSE-MIT (+21/-0) vendor/static_assertions/README.md (+188/-0) vendor/static_assertions/src/assert_cfg.rs (+49/-0) vendor/static_assertions/src/assert_eq_align.rs (+45/-0) vendor/static_assertions/src/assert_eq_size.rs (+123/-0) vendor/static_assertions/src/assert_fields.rs (+72/-0) vendor/static_assertions/src/assert_impl.rs (+356/-0) vendor/static_assertions/src/assert_obj_safe.rs (+76/-0) vendor/static_assertions/src/assert_trait.rs (+105/-0) vendor/static_assertions/src/assert_type.rs (+101/-0) vendor/static_assertions/src/const_assert.rs (+109/-0) vendor/static_assertions/src/lib.rs (+97/-0) vendor/strsim/.cargo-checksum.json (+1/-0) vendor/strsim/CHANGELOG.md (+233/-0) vendor/strsim/Cargo.toml (+40/-0) vendor/strsim/LICENSE (+23/-0) vendor/strsim/README.md (+102/-0) vendor/strsim/SECURITY.md (+19/-0) vendor/strsim/benches/benches.rs (+95/-0) vendor/strsim/src/lib.rs (+1307/-0) vendor/strsim/tests/lib.rs (+71/-0) vendor/subtle/.cargo-checksum.json (+1/-0) vendor/subtle/CHANGELOG.md (+74/-0) vendor/subtle/CONTRIBUTING.md (+33/-0) vendor/subtle/Cargo.toml (+70/-0) vendor/subtle/LICENSE (+29/-0) vendor/subtle/README.md (+74/-0) vendor/subtle/src/lib.rs (+1008/-0) vendor/subtle/tests/mod.rs (+432/-0) vendor/supports-hyperlinks/.cargo-checksum.json (+1/-0) vendor/supports-hyperlinks/CHANGELOG.md (+57/-0) vendor/supports-hyperlinks/Cargo.toml (+23/-0) vendor/supports-hyperlinks/LICENSE (+229/-0) vendor/supports-hyperlinks/Makefile.toml (+11/-0) vendor/supports-hyperlinks/README.md (+32/-0) vendor/supports-hyperlinks/cliff.toml (+62/-0) vendor/supports-hyperlinks/src/lib.rs (+67/-0) vendor/supports-unicode/.cargo-checksum.json (+1/-0) vendor/supports-unicode/CHANGELOG.md (+49/-0) vendor/supports-unicode/Cargo.toml (+23/-0) vendor/supports-unicode/LICENSE (+229/-0) vendor/supports-unicode/Makefile.toml (+11/-0) vendor/supports-unicode/README.md (+23/-0) vendor/supports-unicode/cliff.toml (+62/-0) vendor/supports-unicode/src/lib.rs (+52/-0) vendor/syn/.cargo-checksum.json (+1/-0) vendor/syn/Cargo.toml (+264/-0) vendor/syn/LICENSE-APACHE (+176/-0) vendor/syn/LICENSE-MIT (+23/-0) vendor/syn/README.md (+284/-0) vendor/syn/benches/file.rs (+57/-0) vendor/syn/benches/rust.rs (+190/-0) vendor/syn/src/attr.rs (+824/-0) vendor/syn/src/bigint.rs (+66/-0) vendor/syn/src/buffer.rs (+431/-0) vendor/syn/src/classify.rs (+389/-0) vendor/syn/src/custom_keyword.rs (+260/-0) vendor/syn/src/custom_punctuation.rs (+304/-0) vendor/syn/src/data.rs (+501/-0) vendor/syn/src/derive.rs (+259/-0) vendor/syn/src/discouraged.rs (+225/-0) vendor/syn/src/drops.rs (+58/-0) vendor/syn/src/error.rs (+467/-0) vendor/syn/src/export.rs (+73/-0) vendor/syn/src/expr.rs (+3932/-0) vendor/syn/src/ext.rs (+136/-0) vendor/syn/src/file.rs (+125/-0) vendor/syn/src/fixup.rs (+347/-0) vendor/syn/src/gen/clone.rs (+2208/-0) vendor/syn/src/gen/debug.rs (+3159/-0) vendor/syn/src/gen/eq.rs (+2241/-0) vendor/syn/src/gen/fold.rs (+3779/-0) vendor/syn/src/gen/hash.rs (+2806/-0) vendor/syn/src/gen/visit.rs (+3858/-0) vendor/syn/src/gen/visit_mut.rs (+3855/-0) vendor/syn/src/generics.rs (+1284/-0) vendor/syn/src/group.rs (+291/-0) vendor/syn/src/ident.rs (+108/-0) vendor/syn/src/item.rs (+3445/-0) vendor/syn/src/lib.rs (+1018/-0) vendor/syn/src/lifetime.rs (+156/-0) vendor/syn/src/lit.rs (+1869/-0) vendor/syn/src/lookahead.rs (+165/-0) vendor/syn/src/mac.rs (+225/-0) vendor/syn/src/macros.rs (+182/-0) vendor/syn/src/meta.rs (+427/-0) vendor/syn/src/op.rs (+219/-0) vendor/syn/src/parse.rs (+1414/-0) vendor/syn/src/parse_macro_input.rs (+128/-0) vendor/syn/src/parse_quote.rs (+211/-0) vendor/syn/src/pat.rs (+955/-0) vendor/syn/src/path.rs (+956/-0) vendor/syn/src/precedence.rs (+162/-0) vendor/syn/src/print.rs (+16/-0) vendor/syn/src/punctuated.rs (+1155/-0) vendor/syn/src/restriction.rs (+178/-0) vendor/syn/src/sealed.rs (+4/-0) vendor/syn/src/span.rs (+63/-0) vendor/syn/src/spanned.rs (+118/-0) vendor/syn/src/stmt.rs (+481/-0) vendor/syn/src/thread.rs (+60/-0) vendor/syn/src/token.rs (+1092/-0) vendor/syn/src/tt.rs (+107/-0) vendor/syn/src/ty.rs (+1217/-0) vendor/syn/src/verbatim.rs (+33/-0) vendor/syn/src/whitespace.rs (+65/-0) vendor/syn/tests/common/eq.rs (+914/-0) vendor/syn/tests/common/mod.rs (+5/-0) vendor/syn/tests/common/parse.rs (+46/-0) vendor/syn/tests/debug/gen.rs (+5163/-0) vendor/syn/tests/debug/mod.rs (+147/-0) vendor/syn/tests/macros/mod.rs (+93/-0) vendor/syn/tests/regression.rs (+5/-0) vendor/syn/tests/regression/issue1108.rs (+5/-0) vendor/syn/tests/regression/issue1235.rs (+32/-0) vendor/syn/tests/repo/mod.rs (+510/-0) vendor/syn/tests/repo/progress.rs (+37/-0) vendor/syn/tests/test_asyncness.rs (+43/-0) vendor/syn/tests/test_attribute.rs (+225/-0) vendor/syn/tests/test_derive_input.rs (+781/-0) vendor/syn/tests/test_expr.rs (+718/-0) vendor/syn/tests/test_generics.rs (+282/-0) vendor/syn/tests/test_grouping.rs (+53/-0) vendor/syn/tests/test_ident.rs (+87/-0) vendor/syn/tests/test_item.rs (+332/-0) vendor/syn/tests/test_iterators.rs (+89/-0) vendor/syn/tests/test_lit.rs (+331/-0) vendor/syn/tests/test_meta.rs (+154/-0) vendor/syn/tests/test_parse_buffer.rs (+103/-0) vendor/syn/tests/test_parse_quote.rs (+166/-0) vendor/syn/tests/test_parse_stream.rs (+187/-0) vendor/syn/tests/test_pat.rs (+152/-0) vendor/syn/tests/test_path.rs (+130/-0) vendor/syn/tests/test_precedence.rs (+532/-0) vendor/syn/tests/test_receiver.rs (+321/-0) vendor/syn/tests/test_round_trip.rs (+256/-0) vendor/syn/tests/test_shebang.rs (+67/-0) vendor/syn/tests/test_size.rs (+54/-0) vendor/syn/tests/test_stmt.rs (+322/-0) vendor/syn/tests/test_token_trees.rs (+32/-0) vendor/syn/tests/test_ty.rs (+444/-0) vendor/syn/tests/test_unparenthesize.rs (+63/-0) vendor/syn/tests/test_visibility.rs (+185/-0) vendor/syn/tests/zzz_stable.rs (+33/-0) vendor/tar/.cargo-checksum.json (+1/-0) vendor/tar/Cargo.lock (+210/-0) vendor/tar/Cargo.toml (+82/-0) vendor/tar/LICENSE-APACHE (+201/-0) vendor/tar/LICENSE-MIT (+25/-0) vendor/tar/README.md (+76/-0) vendor/tar/examples/extract_file.rs (+25/-0) vendor/tar/examples/list.rs (+17/-0) vendor/tar/examples/raw_list.rs (+48/-0) vendor/tar/examples/write.rs (+13/-0) vendor/tar/src/archive.rs (+624/-0) vendor/tar/src/builder.rs (+1306/-0) vendor/tar/src/entry.rs (+973/-0) vendor/tar/src/entry_type.rs (+199/-0) vendor/tar/src/error.rs (+41/-0) vendor/tar/src/header.rs (+1683/-0) vendor/tar/src/lib.rs (+44/-0) vendor/tar/src/pax.rs (+147/-0) vendor/tar/tests/all.rs (+1683/-0) vendor/tar/tests/entry.rs (+410/-0) vendor/tar/tests/header/mod.rs (+256/-0) vendor/tempfile/.cargo-checksum.json (+1/-0) vendor/tempfile/CHANGELOG.md (+295/-0) vendor/tempfile/Cargo.toml (+90/-0) vendor/tempfile/LICENSE-APACHE (+201/-0) vendor/tempfile/LICENSE-MIT (+25/-0) vendor/tempfile/README.md (+46/-0) vendor/tempfile/deny.toml (+33/-0) vendor/tempfile/src/dir/imp/any.rs (+24/-0) vendor/tempfile/src/dir/imp/mod.rs (+9/-0) vendor/tempfile/src/dir/imp/unix.rs (+26/-0) vendor/tempfile/src/dir/mod.rs (+495/-0) vendor/tempfile/src/env.rs (+43/-0) vendor/tempfile/src/error.rs (+45/-0) vendor/tempfile/src/file/imp/mod.rs (+12/-0) vendor/tempfile/src/file/imp/other.rs (+34/-0) vendor/tempfile/src/file/imp/unix.rs (+155/-0) vendor/tempfile/src/file/imp/windows.rs (+115/-0) vendor/tempfile/src/file/mod.rs (+1065/-0) vendor/tempfile/src/lib.rs (+692/-0) vendor/tempfile/src/spooled.rs (+197/-0) vendor/tempfile/src/util.rs (+51/-0) vendor/tempfile/tests/env.rs (+15/-0) vendor/tempfile/tests/namedtempfile.rs (+496/-0) vendor/tempfile/tests/spooled.rs (+322/-0) vendor/tempfile/tests/tempdir.rs (+191/-0) vendor/tempfile/tests/tempfile.rs (+68/-0) vendor/terminal_size/.cargo-checksum.json (+1/-0) vendor/terminal_size/Cargo.lock (+134/-0) vendor/terminal_size/Cargo.toml (+53/-0) vendor/terminal_size/LICENSE-APACHE (+202/-0) vendor/terminal_size/LICENSE-MIT (+19/-0) vendor/terminal_size/README.md (+41/-0) vendor/terminal_size/examples/get_size.rs (+19/-0) vendor/terminal_size/src/lib.rs (+41/-0) vendor/terminal_size/src/unix.rs (+130/-0) vendor/terminal_size/src/windows.rs (+85/-0) vendor/thiserror-impl/.cargo-checksum.json (+1/-0) vendor/thiserror-impl/Cargo.toml (+44/-0) vendor/thiserror-impl/LICENSE-APACHE (+176/-0) vendor/thiserror-impl/LICENSE-MIT (+23/-0) vendor/thiserror-impl/src/ast.rs (+161/-0) vendor/thiserror-impl/src/attr.rs (+275/-0) vendor/thiserror-impl/src/expand.rs (+570/-0) vendor/thiserror-impl/src/fmt.rs (+173/-0) vendor/thiserror-impl/src/generics.rs (+83/-0) vendor/thiserror-impl/src/lib.rs (+36/-0) vendor/thiserror-impl/src/prop.rs (+147/-0) vendor/thiserror-impl/src/span.rs (+15/-0) vendor/thiserror-impl/src/valid.rs (+237/-0) vendor/thiserror/.cargo-checksum.json (+1/-0) vendor/thiserror/Cargo.toml (+109/-0) vendor/thiserror/LICENSE-APACHE (+176/-0) vendor/thiserror/LICENSE-MIT (+23/-0) vendor/thiserror/README.md (+238/-0) vendor/thiserror/build.rs (+124/-0) vendor/thiserror/build/probe.rs (+32/-0) vendor/thiserror/rust-toolchain.toml (+2/-0) vendor/thiserror/src/aserror.rs (+50/-0) vendor/thiserror/src/display.rs (+40/-0) vendor/thiserror/src/lib.rs (+290/-0) vendor/thiserror/src/provide.rs (+20/-0) vendor/thiserror/tests/compiletest.rs (+7/-0) vendor/thiserror/tests/test_backtrace.rs (+277/-0) vendor/thiserror/tests/test_deprecated.rs (+10/-0) vendor/thiserror/tests/test_display.rs (+370/-0) vendor/thiserror/tests/test_error.rs (+56/-0) vendor/thiserror/tests/test_expr.rs (+88/-0) vendor/thiserror/tests/test_from.rs (+64/-0) vendor/thiserror/tests/test_generics.rs (+161/-0) vendor/thiserror/tests/test_lints.rs (+20/-0) vendor/thiserror/tests/test_option.rs (+108/-0) vendor/thiserror/tests/test_path.rs (+37/-0) vendor/thiserror/tests/test_source.rs (+65/-0) vendor/thiserror/tests/test_transparent.rs (+78/-0) vendor/thiserror/tests/ui/bad-field-attr.rs (+7/-0) vendor/thiserror/tests/ui/bad-field-attr.stderr (+5/-0) vendor/thiserror/tests/ui/concat-display.rs (+15/-0) vendor/thiserror/tests/ui/concat-display.stderr (+10/-0) vendor/thiserror/tests/ui/duplicate-enum-source.rs (+13/-0) vendor/thiserror/tests/ui/duplicate-enum-source.stderr (+5/-0) vendor/thiserror/tests/ui/duplicate-fmt.rs (+8/-0) vendor/thiserror/tests/ui/duplicate-fmt.stderr (+5/-0) vendor/thiserror/tests/ui/duplicate-struct-source.rs (+11/-0) vendor/thiserror/tests/ui/duplicate-struct-source.stderr (+5/-0) vendor/thiserror/tests/ui/duplicate-transparent.rs (+8/-0) vendor/thiserror/tests/ui/duplicate-transparent.stderr (+5/-0) vendor/thiserror/tests/ui/fallback-impl-with-display.rs (+14/-0) vendor/thiserror/tests/ui/fallback-impl-with-display.stderr (+16/-0) vendor/thiserror/tests/ui/from-backtrace-backtrace.rs (+15/-0) vendor/thiserror/tests/ui/from-backtrace-backtrace.stderr (+5/-0) vendor/thiserror/tests/ui/from-not-source.rs (+11/-0) vendor/thiserror/tests/ui/from-not-source.stderr (+5/-0) vendor/thiserror/tests/ui/invalid-input-impl-anyway.rs (+11/-0) vendor/thiserror/tests/ui/invalid-input-impl-anyway.stderr (+5/-0) vendor/thiserror/tests/ui/lifetime.rs (+24/-0) vendor/thiserror/tests/ui/lifetime.stderr (+11/-0) vendor/thiserror/tests/ui/missing-display.rs (+9/-0) vendor/thiserror/tests/ui/missing-display.stderr (+13/-0) vendor/thiserror/tests/ui/missing-fmt.rs (+10/-0) vendor/thiserror/tests/ui/missing-fmt.stderr (+5/-0) vendor/thiserror/tests/ui/no-display.rs (+12/-0) vendor/thiserror/tests/ui/no-display.stderr (+20/-0) vendor/thiserror/tests/ui/source-enum-not-error.rs (+12/-0) vendor/thiserror/tests/ui/source-enum-not-error.stderr (+22/-0) vendor/thiserror/tests/ui/source-enum-unnamed-field-not-error.rs (+12/-0) vendor/thiserror/tests/ui/source-enum-unnamed-field-not-error.stderr (+22/-0) vendor/thiserror/tests/ui/source-struct-not-error.rs (+12/-0) vendor/thiserror/tests/ui/source-struct-not-error.stderr (+20/-0) vendor/thiserror/tests/ui/source-struct-unnamed-field-not-error.rs (+10/-0) vendor/thiserror/tests/ui/source-struct-unnamed-field-not-error.stderr (+20/-0) vendor/thiserror/tests/ui/transparent-display.rs (+8/-0) vendor/thiserror/tests/ui/transparent-display.stderr (+5/-0) vendor/thiserror/tests/ui/transparent-enum-many.rs (+9/-0) vendor/thiserror/tests/ui/transparent-enum-many.stderr (+6/-0) vendor/thiserror/tests/ui/transparent-enum-not-error.rs (+9/-0) vendor/thiserror/tests/ui/transparent-enum-not-error.stderr (+20/-0) vendor/thiserror/tests/ui/transparent-enum-source.rs (+9/-0) vendor/thiserror/tests/ui/transparent-enum-source.stderr (+5/-0) vendor/thiserror/tests/ui/transparent-enum-unnamed-field-not-error.rs (+9/-0) vendor/thiserror/tests/ui/transparent-enum-unnamed-field-not-error.stderr (+20/-0) vendor/thiserror/tests/ui/transparent-struct-many.rs (+10/-0) vendor/thiserror/tests/ui/transparent-struct-many.stderr (+5/-0) vendor/thiserror/tests/ui/transparent-struct-not-error.rs (+9/-0) vendor/thiserror/tests/ui/transparent-struct-not-error.stderr (+18/-0) vendor/thiserror/tests/ui/transparent-struct-source.rs (+7/-0) vendor/thiserror/tests/ui/transparent-struct-source.stderr (+5/-0) vendor/thiserror/tests/ui/transparent-struct-unnamed-field-not-error.rs (+7/-0) vendor/thiserror/tests/ui/transparent-struct-unnamed-field-not-error.stderr (+18/-0) vendor/thiserror/tests/ui/unexpected-field-fmt.rs (+11/-0) vendor/thiserror/tests/ui/unexpected-field-fmt.stderr (+5/-0) vendor/thiserror/tests/ui/unexpected-struct-source.rs (+7/-0) vendor/thiserror/tests/ui/unexpected-struct-source.stderr (+5/-0) vendor/thiserror/tests/ui/union.rs (+9/-0) vendor/thiserror/tests/ui/union.stderr (+8/-0) vendor/thread_local/.cargo-checksum.json (+1/-0) vendor/thread_local/Cargo.toml (+43/-0) vendor/thread_local/LICENSE-APACHE (+201/-0) vendor/thread_local/LICENSE-MIT (+25/-0) vendor/thread_local/README.md (+39/-0) vendor/thread_local/benches/thread_local.rs (+25/-0) vendor/thread_local/src/cached.rs (+161/-0) vendor/thread_local/src/lib.rs (+683/-0) vendor/thread_local/src/thread_id.rs (+206/-0) vendor/thread_local/src/unreachable.rs (+57/-0) vendor/time-core/.cargo-checksum.json (+1/-0) vendor/time-core/Cargo.toml (+35/-0) vendor/time-core/LICENSE-Apache (+202/-0) vendor/time-core/LICENSE-MIT (+19/-0) vendor/time-core/src/convert.rs (+104/-0) vendor/time-core/src/lib.rs (+11/-0) vendor/time-core/src/util.rs (+52/-0) vendor/time-macros/.cargo-checksum.json (+1/-0) vendor/time-macros/Cargo.toml (+135/-0) vendor/time-macros/LICENSE-Apache (+202/-0) vendor/time-macros/LICENSE-MIT (+19/-0) vendor/time-macros/src/date.rs (+140/-0) vendor/time-macros/src/datetime.rs (+57/-0) vendor/time-macros/src/error.rs (+123/-0) vendor/time-macros/src/format_description/ast.rs (+252/-0) vendor/time-macros/src/format_description/format_item.rs (+438/-0) vendor/time-macros/src/format_description/lexer.rs (+248/-0) vendor/time-macros/src/format_description/mod.rs (+169/-0) vendor/time-macros/src/format_description/public/component.rs (+50/-0) vendor/time-macros/src/format_description/public/mod.rs (+54/-0) vendor/time-macros/src/format_description/public/modifier.rs (+251/-0) vendor/time-macros/src/helpers/mod.rs (+131/-0) vendor/time-macros/src/helpers/string.rs (+188/-0) vendor/time-macros/src/lib.rs (+254/-0) vendor/time-macros/src/offset.rs (+99/-0) vendor/time-macros/src/quote.rs (+138/-0) vendor/time-macros/src/serde_format_description.rs (+172/-0) vendor/time-macros/src/time.rs (+121/-0) vendor/time-macros/src/to_tokens.rs (+79/-0) vendor/time/.cargo-checksum.json (+1/-0) vendor/time/Cargo.toml (+281/-0) vendor/time/LICENSE-Apache (+202/-0) vendor/time/LICENSE-MIT (+19/-0) vendor/time/README.md (+51/-0) vendor/time/src/date.rs (+1493/-0) vendor/time/src/duration.rs (+1576/-0) vendor/time/src/error/component_range.rs (+92/-0) vendor/time/src/error/conversion_range.rs (+36/-0) vendor/time/src/error/different_variant.rs (+34/-0) vendor/time/src/error/format.rs (+92/-0) vendor/time/src/error/indeterminate_offset.rs (+35/-0) vendor/time/src/error/invalid_format_description.rs (+128/-0) vendor/time/src/error/invalid_variant.rs (+34/-0) vendor/time/src/error/mod.rs (+130/-0) vendor/time/src/error/parse.rs (+106/-0) vendor/time/src/error/parse_from_description.rs (+53/-0) vendor/time/src/error/try_from_parsed.rs (+71/-0) vendor/time/src/ext/digit_count.rs (+26/-0) vendor/time/src/ext/instant.rs (+100/-0) vendor/time/src/ext/mod.rs (+13/-0) vendor/time/src/ext/numerical_duration.rs (+140/-0) vendor/time/src/ext/numerical_std_duration.rs (+192/-0) vendor/time/src/format_description/borrowed_format_item.rs (+119/-0) vendor/time/src/format_description/component.rs (+44/-0) vendor/time/src/format_description/mod.rs (+38/-0) vendor/time/src/format_description/modifier.rs (+418/-0) vendor/time/src/format_description/owned_format_item.rs (+164/-0) vendor/time/src/format_description/parse/ast.rs (+384/-0) vendor/time/src/format_description/parse/format_item.rs (+541/-0) vendor/time/src/format_description/parse/lexer.rs (+299/-0) vendor/time/src/format_description/parse/mod.rs (+242/-0) vendor/time/src/format_description/well_known/iso8601.rs (+257/-0) vendor/time/src/format_description/well_known/iso8601/adt_hack.rs (+249/-0) vendor/time/src/format_description/well_known/rfc2822.rs (+30/-0) vendor/time/src/format_description/well_known/rfc3339.rs (+30/-0) vendor/time/src/formatting/formattable.rs (+317/-0) vendor/time/src/formatting/iso8601.rs (+142/-0) vendor/time/src/formatting/mod.rs (+488/-0) vendor/time/src/instant.rs (+289/-0) vendor/time/src/internal_macros.rs (+200/-0) vendor/time/src/lib.rs (+140/-0) vendor/time/src/macros.rs (+132/-0) vendor/time/src/month.rs (+263/-0) vendor/time/src/offset_date_time.rs (+1618/-0) vendor/time/src/parsing/combinator/mod.rs (+194/-0) vendor/time/src/parsing/combinator/rfc/iso8601.rs (+175/-0) vendor/time/src/parsing/combinator/rfc/mod.rs (+10/-0) vendor/time/src/parsing/combinator/rfc/rfc2234.rs (+13/-0) vendor/time/src/parsing/combinator/rfc/rfc2822.rs (+115/-0) vendor/time/src/parsing/component.rs (+346/-0) vendor/time/src/parsing/iso8601.rs (+326/-0) vendor/time/src/parsing/mod.rs (+57/-0) vendor/time/src/parsing/parsable.rs (+787/-0) vendor/time/src/parsing/parsed.rs (+903/-0) vendor/time/src/parsing/shim.rs (+50/-0) vendor/time/src/primitive_date_time.rs (+1049/-0) vendor/time/src/quickcheck.rs (+211/-0) vendor/time/src/rand.rs (+87/-0) vendor/time/src/serde/iso8601.rs (+77/-0) vendor/time/src/serde/mod.rs (+503/-0) vendor/time/src/serde/rfc2822.rs (+72/-0) vendor/time/src/serde/rfc3339.rs (+72/-0) vendor/time/src/serde/timestamp/microseconds.rs (+63/-0) vendor/time/src/serde/timestamp/milliseconds.rs (+63/-0) vendor/time/src/serde/timestamp/mod.rs (+64/-0) vendor/time/src/serde/timestamp/nanoseconds.rs (+61/-0) vendor/time/src/serde/visitor.rs (+323/-0) vendor/time/src/sys/local_offset_at/imp.rs (+8/-0) vendor/time/src/sys/local_offset_at/mod.rs (+28/-0) vendor/time/src/sys/local_offset_at/unix.rs (+154/-0) vendor/time/src/sys/local_offset_at/wasm_js.rs (+16/-0) vendor/time/src/sys/local_offset_at/windows.rs (+113/-0) vendor/time/src/sys/mod.rs (+9/-0) vendor/time/src/tests.rs (+106/-0) vendor/time/src/time.rs (+952/-0) vendor/time/src/utc_offset.rs (+477/-0) vendor/time/src/util.rs (+99/-0) vendor/time/src/weekday.rs (+220/-0) vendor/tinyvec/.cargo-checksum.json (+1/-0) vendor/tinyvec/CHANGELOG.md (+89/-0) vendor/tinyvec/Cargo.toml (+144/-0) vendor/tinyvec/LICENSE-APACHE.md (+202/-0) vendor/tinyvec/LICENSE-MIT.md (+5/-0) vendor/tinyvec/LICENSE-ZLIB.md (+11/-0) vendor/tinyvec/README.md (+34/-0) vendor/tinyvec/benches/macros.rs (+52/-0) vendor/tinyvec/benches/smallvec.rs (+500/-0) vendor/tinyvec/debug_metadata/README.md (+111/-0) vendor/tinyvec/debug_metadata/tinyvec.natvis (+24/-0) vendor/tinyvec/rustfmt.toml (+14/-0) vendor/tinyvec/src/array.rs (+48/-0) vendor/tinyvec/src/array/const_generic_impl.rs (+23/-0) vendor/tinyvec/src/array/generated_impl.rs (+9616/-0) vendor/tinyvec/src/arrayvec.rs (+2006/-0) vendor/tinyvec/src/arrayvec_drain.rs (+99/-0) vendor/tinyvec/src/lib.rs (+108/-0) vendor/tinyvec/src/slicevec.rs (+1082/-0) vendor/tinyvec/src/tinyvec.rs (+1748/-0) vendor/tinyvec/tests/arrayvec.rs (+478/-0) vendor/tinyvec/tests/debugger_visualizer.rs (+91/-0) vendor/tinyvec/tests/tinyvec.rs (+468/-0) vendor/tinyvec_macros/.cargo-checksum.json (+1/-0) vendor/tinyvec_macros/Cargo.toml (+19/-0) vendor/tinyvec_macros/LICENSE-APACHE.md (+202/-0) vendor/tinyvec_macros/LICENSE-MIT.md (+21/-0) vendor/tinyvec_macros/LICENSE-ZLIB.md (+20/-0) vendor/tinyvec_macros/src/lib.rs (+25/-0) vendor/toml/.cargo-checksum.json (+1/-0) vendor/toml/Cargo.lock (+779/-0) vendor/toml/Cargo.toml (+266/-0) vendor/toml/LICENSE-APACHE (+202/-0) vendor/toml/LICENSE-MIT (+19/-0) vendor/toml/README.md (+29/-0) vendor/toml/examples/decode.rs (+54/-0) vendor/toml/examples/enum_external.rs (+45/-0) vendor/toml/examples/toml2json.rs (+43/-0) vendor/toml/src/de.rs (+307/-0) vendor/toml/src/edit.rs (+91/-0) vendor/toml/src/fmt.rs (+66/-0) vendor/toml/src/lib.rs (+181/-0) vendor/toml/src/macros.rs (+455/-0) vendor/toml/src/map.rs (+609/-0) vendor/toml/src/ser.rs (+1074/-0) vendor/toml/src/table.rs (+117/-0) vendor/toml/src/value.rs (+1526/-0) vendor/toml/tests/decoder.rs (+69/-0) vendor/toml/tests/decoder_compliance.rs (+13/-0) vendor/toml/tests/encoder.rs (+85/-0) vendor/toml/tests/encoder_compliance.rs (+14/-0) vendor/toml/tests/testsuite/de_errors.rs (+483/-0) vendor/toml/tests/testsuite/display.rs (+116/-0) vendor/toml/tests/testsuite/display_tricky.rs (+55/-0) vendor/toml/tests/testsuite/enum_external_deserialize.rs (+345/-0) vendor/toml/tests/testsuite/float.rs (+80/-0) vendor/toml/tests/testsuite/formatting.rs (+54/-0) vendor/toml/tests/testsuite/macros.rs (+377/-0) vendor/toml/tests/testsuite/main.rs (+15/-0) vendor/toml/tests/testsuite/pretty.rs (+185/-0) vendor/toml/tests/testsuite/serde.rs (+1550/-0) vendor/toml/tests/testsuite/spanned.rs (+266/-0) vendor/toml/tests/testsuite/spanned_impls.rs (+41/-0) vendor/toml/tests/testsuite/tables_last.rs (+162/-0) vendor/toml_datetime/.cargo-checksum.json (+1/-0) vendor/toml_datetime/Cargo.toml (+168/-0) vendor/toml_datetime/LICENSE-APACHE (+202/-0) vendor/toml_datetime/LICENSE-MIT (+19/-0) vendor/toml_datetime/README.md (+21/-0) vendor/toml_datetime/src/datetime.rs (+684/-0) vendor/toml_datetime/src/lib.rs (+29/-0) vendor/toml_edit/.cargo-checksum.json (+1/-0) vendor/toml_edit/Cargo.lock (+981/-0) vendor/toml_edit/Cargo.toml (+268/-0) vendor/toml_edit/LICENSE-APACHE (+202/-0) vendor/toml_edit/LICENSE-MIT (+19/-0) vendor/toml_edit/README.md (+56/-0) vendor/toml_edit/examples/visit.rs (+284/-0) vendor/toml_edit/src/array.rs (+462/-0) vendor/toml_edit/src/array_of_tables.rs (+169/-0) vendor/toml_edit/src/de/array.rs (+97/-0) vendor/toml_edit/src/de/datetime.rs (+43/-0) vendor/toml_edit/src/de/key.rs (+151/-0) vendor/toml_edit/src/de/mod.rs (+321/-0) vendor/toml_edit/src/de/spanned.rs (+70/-0) vendor/toml_edit/src/de/table.rs (+214/-0) vendor/toml_edit/src/de/table_enum.rs (+176/-0) vendor/toml_edit/src/de/value.rs (+257/-0) vendor/toml_edit/src/document.rs (+211/-0) vendor/toml_edit/src/encode.rs (+597/-0) vendor/toml_edit/src/error.rs (+256/-0) vendor/toml_edit/src/index.rs (+142/-0) vendor/toml_edit/src/inline_table.rs (+745/-0) vendor/toml_edit/src/internal_string.rs (+183/-0) vendor/toml_edit/src/item.rs (+414/-0) vendor/toml_edit/src/key.rs (+449/-0) vendor/toml_edit/src/lib.rs (+143/-0) vendor/toml_edit/src/parser/array.rs (+134/-0) vendor/toml_edit/src/parser/datetime.rs (+472/-0) vendor/toml_edit/src/parser/document.rs (+130/-0) vendor/toml_edit/src/parser/error.rs (+87/-0) vendor/toml_edit/src/parser/inline_table.rs (+188/-0) vendor/toml_edit/src/parser/key.rs (+139/-0) vendor/toml_edit/src/parser/mod.rs (+273/-0) vendor/toml_edit/src/parser/numbers.rs (+399/-0) vendor/toml_edit/src/parser/state.rs (+316/-0) vendor/toml_edit/src/parser/strings.rs (+479/-0) vendor/toml_edit/src/parser/table.rs (+89/-0) vendor/toml_edit/src/parser/trivia.rs (+167/-0) vendor/toml_edit/src/parser/value.rs (+154/-0) vendor/toml_edit/src/raw_string.rs (+188/-0) vendor/toml_edit/src/repr.rs (+275/-0) vendor/toml_edit/src/ser/array.rs (+84/-0) vendor/toml_edit/src/ser/key.rs (+169/-0) vendor/toml_edit/src/ser/map.rs (+640/-0) vendor/toml_edit/src/ser/mod.rs (+168/-0) vendor/toml_edit/src/ser/pretty.rs (+45/-0) vendor/toml_edit/src/ser/value.rs (+257/-0) vendor/toml_edit/src/table.rs (+794/-0) vendor/toml_edit/src/value.rs (+387/-0) vendor/toml_edit/src/visit.rs (+239/-0) vendor/toml_edit/src/visit_mut.rs (+256/-0) vendor/toml_edit/tests/decoder.rs (+100/-0) vendor/toml_edit/tests/decoder_compliance.rs (+9/-0) vendor/toml_edit/tests/encoder.rs (+111/-0) vendor/toml_edit/tests/encoder_compliance.rs (+10/-0) vendor/toml_edit/tests/fixtures/invalid/array/array.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/double-comma-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/double-comma-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/extend-defined-aot.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/array/extending-table.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/missing-separator-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/missing-separator-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/no-close-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/no-close-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/no-close-3.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/no-close-4.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/no-close-5.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/no-close-6.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/no-close-7.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/no-close-8.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/no-close-table-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/no-close-table-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/no-comma-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/no-comma-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/no-comma-3.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/only-comma-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/only-comma-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/tables-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/tables-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/text-after-array-entries.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/text-before-array-separator.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/array/text-in-array.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/bool/almost-false-with-extra.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/bool/almost-false.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/bool/almost-true-with-extra.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/bool/almost-true.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/bool/bool.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/bool/capitalized-false.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/bool/capitalized-true.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/bool/just-f.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/bool/just-t.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/bool/mixed-case-false.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/bool/mixed-case-true.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/bool/mixed-case.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/bool/starting-same-false.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/bool/starting-same-true.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/bool/wrong-case-false.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/bool/wrong-case-true.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/control/bare-cr.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/bare-formfeed.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/control/bare-vertical-tab.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/control/comment-cr.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/control/comment-del.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/comment-ff.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/comment-lf.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/comment-us.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/control.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/multi-cr.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/control/multi-del.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/multi-lf.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/multi-us.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/rawmulti-cd.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/control/rawmulti-del.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/rawmulti-lf.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/rawmulti-us.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/rawstring-cr.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/control/rawstring-del.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/rawstring-lf.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/rawstring-us.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/string-bs.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/string-cr.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/control/string-del.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/string-lf.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/control/string-us.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/feb-29.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/feb-30.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/hour-over.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/mday-over.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/mday-under.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/minute-over.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/month-over.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/month-under.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/no-leads-month.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/no-leads-with-milli.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/no-leads.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/no-secs.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/no-t.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/offset-overflow-hour.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/offset-overflow-minute.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/second-over.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/time-no-leads.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/datetime/y10k.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/encoding/bad-codepoint.stderr (+1/-0) vendor/toml_edit/tests/fixtures/invalid/encoding/bad-utf8-at-end.stderr (+1/-0) vendor/toml_edit/tests/fixtures/invalid/encoding/bad-utf8-in-comment.stderr (+1/-0) vendor/toml_edit/tests/fixtures/invalid/encoding/bad-utf8-in-multiline-literal.stderr (+1/-0) vendor/toml_edit/tests/fixtures/invalid/encoding/bad-utf8-in-multiline.stderr (+1/-0) vendor/toml_edit/tests/fixtures/invalid/encoding/bad-utf8-in-string-literal.stderr (+1/-0) vendor/toml_edit/tests/fixtures/invalid/encoding/bad-utf8-in-string.stderr (+1/-0) vendor/toml_edit/tests/fixtures/invalid/encoding/bom-not-at-start-1.stderr (+1/-0) vendor/toml_edit/tests/fixtures/invalid/encoding/bom-not-at-start-2.stderr (+1/-0) vendor/toml_edit/tests/fixtures/invalid/encoding/utf16-bom.stderr (+1/-0) vendor/toml_edit/tests/fixtures/invalid/float/double-point-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/double-point-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/float/exp-double-e-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/float/exp-double-e-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/float/exp-double-us.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/float/exp-leading-us.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/float/exp-point-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/float/exp-point-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/exp-point-3.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/exp-trailing-us-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/exp-trailing-us-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/exp-trailing-us.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/float.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/float/inf-capital.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/inf-incomplete-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/inf-incomplete-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/float/inf-incomplete-3.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/float/inf_underscore.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/leading-point-neg.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/float/leading-point-plus.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/float/leading-point.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/leading-us.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/leading-zero-neg.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/float/leading-zero-plus.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/float/leading-zero.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/float/nan-capital.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/nan-incomplete-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/nan-incomplete-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/float/nan-incomplete-3.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/float/nan_underscore.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/trailing-point-min.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/trailing-point-plus.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/trailing-point.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/trailing-us-exp-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/trailing-us-exp-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/trailing-us.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/us-after-point.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/float/us-before-point.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/bad-key-syntax.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/double-comma.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/duplicate-key-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/duplicate-key-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/duplicate-key-3.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/duplicate-key-4.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/empty-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/empty-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/empty-3.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/linebreak-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/linebreak-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/linebreak-3.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/linebreak-4.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/no-close-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/no-close-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/no-comma-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/no-comma-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/overwrite-01.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/overwrite-02.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/overwrite-03.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/overwrite-04.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/overwrite-05.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/overwrite-06.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/overwrite-07.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/overwrite-08.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/overwrite-09.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/overwrite-10.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/inline-table/trailing-comma.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/integer/capital-bin.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/capital-hex.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/capital-oct.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/double-sign-nex.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/double-sign-plus.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/double-us.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/integer/incomplete-bin.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/incomplete-hex.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/incomplete-oct.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/integer.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/invalid-bin.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/invalid-hex-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/invalid-hex-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/invalid-hex.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/invalid-oct.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/leading-us-bin.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/integer/leading-us-hex.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/integer/leading-us-oct.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/integer/leading-us.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/integer/leading-zero-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/leading-zero-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/leading-zero-3.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/leading-zero-sign-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/leading-zero-sign-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/leading-zero-sign-3.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/negative-bin.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/negative-hex.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/negative-oct.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/positive-bin.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/positive-hex.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/positive-oct.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/text-after-integer.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/trailing-us-bin.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/integer/trailing-us-hex.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/integer/trailing-us-oct.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/integer/trailing-us.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/integer/us-after-bin.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/us-after-hex.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/integer/us-after-oct.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/after-array.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/key/after-table.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/key/after-value.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/bare-invalid-character.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/dotted-redefine-table-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/dotted-redefine-table-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/duplicate-keys-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/duplicate-keys-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/duplicate-keys-3.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/duplicate-keys-4.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/empty.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/end-in-escape.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/key/escape.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/hash.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/newline-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/newline-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/newline-3.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/newline-4.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/newline-5.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/no-eol.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/open-bracket.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/key/partial-quoted.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/quoted-unclosed-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/quoted-unclosed-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/single-open-bracket.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/space.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/special-character.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/start-bracket.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/key/start-dot.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/two-equals-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/key/two-equals-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/key/two-equals-3.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/key/without-value-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/without-value-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/key/without-value-3.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/without-value-4.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/key/without-value-5.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/key/without-value-6.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/key/without-value-7.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/local-date/feb-29.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/local-date/feb-30.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/local-date/mday-over.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/local-date/mday-under.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/local-date/month-over.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/local-date/month-under.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/local-date/no-leads-with-milli.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/local-date/no-leads.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/local-date/trailing-t.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/local-date/y10k.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/local-datetime/feb-29.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/local-datetime/feb-30.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/local-datetime/hour-over.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/local-datetime/mday-over.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/local-datetime/mday-under.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/local-datetime/minute-over.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/local-datetime/month-over.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/local-datetime/month-under.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/local-datetime/no-leads-with-milli.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/local-datetime/no-leads.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/local-datetime/no-secs.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/local-datetime/no-t.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/local-datetime/second-over.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/local-datetime/time-no-leads.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/local-datetime/y10k.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/local-time/hour-over.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/local-time/minute-over.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/local-time/no-secs.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/local-time/second-over.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/local-time/time-no-leads-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/local-time/time-no-leads.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/spec/inline-table-2-0.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/spec/inline-table-3-0.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/spec/key-value-pair-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/spec/keys-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/spec/string-4-0.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/spec/string-7-0.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/spec/table-9-0.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/spec/table-9-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-byte-escape.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-concat.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-escape-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-escape-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-escape-3.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-hex-esc-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-hex-esc-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-hex-esc-3.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-hex-esc-4.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-hex-esc-5.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-multiline.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-slash-escape.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-uni-esc-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-uni-esc-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-uni-esc-3.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-uni-esc-4.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-uni-esc-5.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-uni-esc-6.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/bad-uni-esc-7.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/basic-byte-escapes.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/basic-multiline-out-of-range-unicode-escape-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/basic-multiline-out-of-range-unicode-escape-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/basic-multiline-quotes.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/basic-multiline-unknown-escape.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/basic-out-of-range-unicode-escape-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/basic-out-of-range-unicode-escape-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/basic-unknown-escape.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/literal-multiline-quotes-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/literal-multiline-quotes-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/missing-quotes.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/multiline-bad-escape-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/multiline-bad-escape-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/multiline-bad-escape-3.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/multiline-bad-escape-4.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/multiline-escape-space-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/multiline-escape-space-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/multiline-lit-no-close-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/multiline-lit-no-close-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/multiline-lit-no-close-3.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/multiline-lit-no-close-4.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/multiline-no-close-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/multiline-no-close-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/multiline-no-close-3.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/multiline-no-close-4.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/multiline-no-close-5.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/multiline-quotes-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/no-close-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/no-close-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/no-close-3.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/no-close-4.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/string.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/string/text-after-string.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/string/wrong-close.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/table/append-to-array-with-dotted-keys.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/table/append-with-dotted-keys-1.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/table/append-with-dotted-keys-2.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/table/array-empty.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/table/array-implicit.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/array-no-close-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/array-no-close-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/duplicate-key-dotted-array.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/duplicate-key-dotted-table.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/duplicate-key-dotted-table2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/duplicate-key-table.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/duplicate-table-array.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/duplicate-table-array2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/duplicate.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/empty-implicit-table.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/empty.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/table/equals-sign.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/llbrace.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/table/nested-brackets-close.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/nested-brackets-open.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/no-close-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/no-close-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/no-close-3.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/table/no-close-4.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/table/no-close-5.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/overwrite-array-in-parent.stderr (+5/-0) vendor/toml_edit/tests/fixtures/invalid/table/overwrite-bool-with-array.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/overwrite-with-deep-table.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/redefine-1.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/redefine-2.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/redefine-3.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/rrbrace.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/super-twice.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/text-after-table.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/whitespace.stderr (+6/-0) vendor/toml_edit/tests/fixtures/invalid/table/with-pound.stderr (+6/-0) vendor/toml_edit/tests/invalid.rs (+26/-0) vendor/toml_edit/tests/testsuite/convert.rs (+88/-0) vendor/toml_edit/tests/testsuite/datetime.rs (+298/-0) vendor/toml_edit/tests/testsuite/edit.rs (+1028/-0) vendor/toml_edit/tests/testsuite/float.rs (+60/-0) vendor/toml_edit/tests/testsuite/invalid.rs (+302/-0) vendor/toml_edit/tests/testsuite/main.rs (+9/-0) vendor/toml_edit/tests/testsuite/parse.rs (+1858/-0) vendor/toml_edit/tests/testsuite/stackoverflow.rs (+54/-0) vendor/tracing-attributes/.cargo-checksum.json (+1/-0) vendor/tracing-attributes/CHANGELOG.md (+420/-0) vendor/tracing-attributes/Cargo.toml (+87/-0) vendor/tracing-attributes/LICENSE (+25/-0) vendor/tracing-attributes/README.md (+91/-0) vendor/tracing-attributes/src/attr.rs (+457/-0) vendor/tracing-attributes/src/expand.rs (+827/-0) vendor/tracing-attributes/src/lib.rs (+695/-0) vendor/tracing-attributes/tests/async_fn.rs (+487/-0) vendor/tracing-attributes/tests/destructuring.rs (+213/-0) vendor/tracing-attributes/tests/err.rs (+327/-0) vendor/tracing-attributes/tests/fields.rs (+159/-0) vendor/tracing-attributes/tests/follows_from.rs (+101/-0) vendor/tracing-attributes/tests/instrument.rs (+252/-0) vendor/tracing-attributes/tests/levels.rs (+142/-0) vendor/tracing-attributes/tests/names.rs (+63/-0) vendor/tracing-attributes/tests/parents.rs (+102/-0) vendor/tracing-attributes/tests/ret.rs (+307/-0) vendor/tracing-attributes/tests/targets.rs (+109/-0) vendor/tracing-attributes/tests/ui.rs (+14/-0) vendor/tracing-attributes/tests/ui/async_instrument.rs (+46/-0) vendor/tracing-attributes/tests/ui/async_instrument.stderr (+98/-0) vendor/tracing-attributes/tests/ui/const_instrument.rs (+8/-0) vendor/tracing-attributes/tests/ui/const_instrument.stderr (+15/-0) vendor/tracing-chrome/.cargo-checksum.json (+1/-0) vendor/tracing-chrome/Cargo.lock (+730/-0) vendor/tracing-chrome/Cargo.toml (+55/-0) vendor/tracing-chrome/LICENSE (+9/-0) vendor/tracing-chrome/README.md (+36/-0) vendor/tracing-chrome/benches/overhead.rs (+87/-0) vendor/tracing-chrome/examples/fibonacci.rs (+57/-0) vendor/tracing-chrome/src/lib.rs (+611/-0) vendor/tracing-core/.cargo-checksum.json (+1/-0) vendor/tracing-core/CHANGELOG.md (+541/-0) vendor/tracing-core/Cargo.toml (+66/-0) vendor/tracing-core/LICENSE (+25/-0) vendor/tracing-core/README.md (+121/-0) vendor/tracing-core/src/callsite.rs (+619/-0) vendor/tracing-core/src/dispatcher.rs (+1071/-0) vendor/tracing-core/src/event.rs (+128/-0) vendor/tracing-core/src/field.rs (+1255/-0) vendor/tracing-core/src/lazy.rs (+76/-0) vendor/tracing-core/src/lib.rs (+293/-0) vendor/tracing-core/src/metadata.rs (+1115/-0) vendor/tracing-core/src/parent.rs (+11/-0) vendor/tracing-core/src/span.rs (+341/-0) vendor/tracing-core/src/spin/LICENSE (+21/-0) vendor/tracing-core/src/spin/mod.rs (+7/-0) vendor/tracing-core/src/spin/mutex.rs (+118/-0) vendor/tracing-core/src/spin/once.rs (+158/-0) vendor/tracing-core/src/stdlib.rs (+78/-0) vendor/tracing-core/src/subscriber.rs (+878/-0) vendor/tracing-core/tests/common/mod.rs (+30/-0) vendor/tracing-core/tests/dispatch.rs (+56/-0) vendor/tracing-core/tests/global_dispatch.rs (+34/-0) vendor/tracing-core/tests/local_dispatch_before_init.rs (+43/-0) vendor/tracing-core/tests/macros.rs (+48/-0) vendor/tracing-log/.cargo-checksum.json (+1/-0) vendor/tracing-log/CHANGELOG.md (+101/-0) vendor/tracing-log/Cargo.toml (+83/-0) vendor/tracing-log/LICENSE (+25/-0) vendor/tracing-log/README.md (+83/-0) vendor/tracing-log/benches/logging.rs (+91/-0) vendor/tracing-log/src/interest_cache.rs (+538/-0) vendor/tracing-log/src/lib.rs (+600/-0) vendor/tracing-log/src/log_tracer.rs (+307/-0) vendor/tracing-log/tests/log_tracer.rs (+123/-0) vendor/tracing-log/tests/reexport_log_crate.rs (+10/-0) vendor/tracing-subscriber/.cargo-checksum.json (+1/-0) vendor/tracing-subscriber/CHANGELOG.md (+1363/-0) vendor/tracing-subscriber/Cargo.toml (+246/-0) vendor/tracing-subscriber/LICENSE (+25/-0) vendor/tracing-subscriber/README.md (+61/-0) vendor/tracing-subscriber/benches/enter.rs (+64/-0) vendor/tracing-subscriber/benches/filter.rs (+308/-0) vendor/tracing-subscriber/benches/filter_log.rs (+315/-0) vendor/tracing-subscriber/benches/fmt.rs (+331/-0) vendor/tracing-subscriber/benches/support/mod.rs (+49/-0) vendor/tracing-subscriber/src/field/debug.rs (+111/-0) vendor/tracing-subscriber/src/field/delimited.rs (+184/-0) vendor/tracing-subscriber/src/field/display.rs (+117/-0) vendor/tracing-subscriber/src/field/mod.rs (+365/-0) vendor/tracing-subscriber/src/filter/directive.rs (+457/-0) vendor/tracing-subscriber/src/filter/env/builder.rs (+326/-0) vendor/tracing-subscriber/src/filter/env/directive.rs (+867/-0) vendor/tracing-subscriber/src/filter/env/field.rs (+626/-0) vendor/tracing-subscriber/src/filter/env/mod.rs (+991/-0) vendor/tracing-subscriber/src/filter/filter_fn.rs (+749/-0) vendor/tracing-subscriber/src/filter/layer_filters/combinator.rs (+542/-0) vendor/tracing-subscriber/src/filter/layer_filters/mod.rs (+1319/-0) vendor/tracing-subscriber/src/filter/level.rs (+27/-0) vendor/tracing-subscriber/src/filter/mod.rs (+66/-0) vendor/tracing-subscriber/src/filter/targets.rs (+834/-0) vendor/tracing-subscriber/src/fmt/fmt_layer.rs (+1590/-0) vendor/tracing-subscriber/src/fmt/format/json.rs (+885/-0) vendor/tracing-subscriber/src/fmt/format/mod.rs (+2179/-0) vendor/tracing-subscriber/src/fmt/format/pretty.rs (+511/-0) vendor/tracing-subscriber/src/fmt/mod.rs (+1370/-0) vendor/tracing-subscriber/src/fmt/time/chrono_crate.rs (+177/-0) vendor/tracing-subscriber/src/fmt/time/datetime.rs (+410/-0) vendor/tracing-subscriber/src/fmt/time/mod.rs (+151/-0) vendor/tracing-subscriber/src/fmt/time/time_crate.rs (+470/-0) vendor/tracing-subscriber/src/fmt/writer.rs (+1463/-0) vendor/tracing-subscriber/src/layer/context.rs (+434/-0) vendor/tracing-subscriber/src/layer/layered.rs (+554/-0) vendor/tracing-subscriber/src/layer/mod.rs (+1909/-0) vendor/tracing-subscriber/src/layer/tests.rs (+308/-0) vendor/tracing-subscriber/src/lib.rs (+250/-0) vendor/tracing-subscriber/src/macros.rs (+28/-0) vendor/tracing-subscriber/src/prelude.rs (+19/-0) vendor/tracing-subscriber/src/registry/extensions.rs (+274/-0) vendor/tracing-subscriber/src/registry/mod.rs (+598/-0) vendor/tracing-subscriber/src/registry/sharded.rs (+908/-0) vendor/tracing-subscriber/src/registry/stack.rs (+77/-0) vendor/tracing-subscriber/src/reload.rs (+384/-0) vendor/tracing-subscriber/src/sync.rs (+57/-0) vendor/tracing-subscriber/src/util.rs (+153/-0) vendor/tracing-subscriber/tests/cached_layer_filters_dont_break_other_layers.rs (+126/-0) vendor/tracing-subscriber/tests/duplicate_spans.rs (+47/-0) vendor/tracing-subscriber/tests/env_filter/main.rs (+545/-0) vendor/tracing-subscriber/tests/env_filter/per_layer.rs (+306/-0) vendor/tracing-subscriber/tests/event_enabling.rs (+81/-0) vendor/tracing-subscriber/tests/field_filter.rs (+115/-0) vendor/tracing-subscriber/tests/filter_log.rs (+63/-0) vendor/tracing-subscriber/tests/fmt_max_level_hint.rs (+10/-0) vendor/tracing-subscriber/tests/hinted_layer_filters_dont_break_other_layers.rs (+134/-0) vendor/tracing-subscriber/tests/layer_filter_interests_are_cached.rs (+67/-0) vendor/tracing-subscriber/tests/layer_filters/boxed.rs (+43/-0) vendor/tracing-subscriber/tests/layer_filters/combinators.rs (+42/-0) vendor/tracing-subscriber/tests/layer_filters/downcast_raw.rs (+68/-0) vendor/tracing-subscriber/tests/layer_filters/filter_scopes.rs (+132/-0) vendor/tracing-subscriber/tests/layer_filters/main.rs (+189/-0) vendor/tracing-subscriber/tests/layer_filters/option.rs (+143/-0) vendor/tracing-subscriber/tests/layer_filters/per_event.rs (+61/-0) vendor/tracing-subscriber/tests/layer_filters/targets.rs (+60/-0) vendor/tracing-subscriber/tests/layer_filters/trees.rs (+158/-0) vendor/tracing-subscriber/tests/layer_filters/vec.rs (+121/-0) vendor/tracing-subscriber/tests/multiple_layer_filter_interests_cached.rs (+129/-0) vendor/tracing-subscriber/tests/option.rs (+262/-0) vendor/tracing-subscriber/tests/option_filter_interest_caching.rs (+53/-0) vendor/tracing-subscriber/tests/registry_max_level_hint.rs (+11/-0) vendor/tracing-subscriber/tests/registry_with_subscriber.rs (+25/-0) vendor/tracing-subscriber/tests/reload.rs (+155/-0) vendor/tracing-subscriber/tests/same_len_filters.rs (+81/-0) vendor/tracing-subscriber/tests/unhinted_layer_filters_dont_break_other_layers.rs (+126/-0) vendor/tracing-subscriber/tests/utils.rs (+39/-0) vendor/tracing-subscriber/tests/vec.rs (+19/-0) vendor/tracing-subscriber/tests/vec_subscriber_filter_interests_cached.rs (+115/-0) vendor/tracing/.cargo-checksum.json (+1/-0) vendor/tracing/CHANGELOG.md (+941/-0) vendor/tracing/Cargo.toml (+143/-0) vendor/tracing/LICENSE (+25/-0) vendor/tracing/README.md (+467/-0) vendor/tracing/benches/baseline.rs (+24/-0) vendor/tracing/benches/dispatch_get_clone.rs (+15/-0) vendor/tracing/benches/dispatch_get_ref.rs (+16/-0) vendor/tracing/benches/empty_span.rs (+43/-0) vendor/tracing/benches/enter_span.rs (+16/-0) vendor/tracing/benches/event.rs (+12/-0) vendor/tracing/benches/shared.rs (+160/-0) vendor/tracing/benches/span_fields.rs (+23/-0) vendor/tracing/benches/span_no_fields.rs (+13/-0) vendor/tracing/benches/span_repeated.rs (+20/-0) vendor/tracing/src/dispatcher.rs (+145/-0) vendor/tracing/src/field.rs (+170/-0) vendor/tracing/src/instrument.rs (+429/-0) vendor/tracing/src/level_filters.rs (+98/-0) vendor/tracing/src/lib.rs (+1125/-0) vendor/tracing/src/macros.rs (+3165/-0) vendor/tracing/src/span.rs (+1623/-0) vendor/tracing/src/stdlib.rs (+55/-0) vendor/tracing/src/subscriber.rs (+65/-0) vendor/tracing/tests/enabled.rs (+54/-0) vendor/tracing/tests/event.rs (+554/-0) vendor/tracing/tests/filter_caching_is_lexically_scoped.rs (+65/-0) vendor/tracing/tests/filters_are_not_reevaluated_for_the_same_span.rs (+70/-0) vendor/tracing/tests/filters_are_reevaluated_for_different_call_sites.rs (+80/-0) vendor/tracing/tests/filters_dont_leak.rs (+81/-0) vendor/tracing/tests/future_send.rs (+22/-0) vendor/tracing/tests/instrument.rs (+59/-0) vendor/tracing/tests/macro_imports.rs (+23/-0) vendor/tracing/tests/macros.rs (+1271/-0) vendor/tracing/tests/macros_incompatible_concat.rs (+24/-0) vendor/tracing/tests/max_level_hint.rs (+37/-0) vendor/tracing/tests/multiple_max_level_hints.rs (+69/-0) vendor/tracing/tests/no_subscriber.rs (+16/-0) vendor/tracing/tests/register_callsite_deadlock.rs (+47/-0) vendor/tracing/tests/scoped_clobbers_default.rs (+35/-0) vendor/tracing/tests/span.rs (+868/-0) vendor/tracing/tests/subscriber.rs (+129/-0) vendor/typeid/.cargo-checksum.json (+1/-0) vendor/typeid/Cargo.toml (+43/-0) vendor/typeid/LICENSE-APACHE (+176/-0) vendor/typeid/LICENSE-MIT (+23/-0) vendor/typeid/README.md (+123/-0) vendor/typeid/build.rs (+33/-0) vendor/typeid/src/lib.rs (+222/-0) vendor/typeid/tests/test.rs (+25/-0) vendor/typenum/.cargo-checksum.json (+1/-0) vendor/typenum/CHANGELOG.md (+117/-0) vendor/typenum/Cargo.toml (+63/-0) vendor/typenum/LICENSE (+1/-0) vendor/typenum/LICENSE-APACHE (+201/-0) vendor/typenum/LICENSE-MIT (+21/-0) vendor/typenum/README.md (+67/-0) vendor/typenum/build/generic_const_mappings.rs (+98/-0) vendor/typenum/build/main.rs (+203/-0) vendor/typenum/build/op.rs (+558/-0) vendor/typenum/build/tests.rs (+328/-0) vendor/typenum/clippy.toml (+1/-0) vendor/typenum/rustfmt.toml (+1/-0) vendor/typenum/src/array.rs (+340/-0) vendor/typenum/src/bit.rs (+337/-0) vendor/typenum/src/int.rs (+1401/-0) vendor/typenum/src/lib.rs (+198/-0) vendor/typenum/src/marker_traits.rs (+189/-0) vendor/typenum/src/operator_aliases.rs (+109/-0) vendor/typenum/src/private.rs (+587/-0) vendor/typenum/src/type_operators.rs (+600/-0) vendor/typenum/src/uint.rs (+2663/-0) vendor/typenum/tests/test.rs (+2/-0) vendor/unicase/.cargo-checksum.json (+1/-0) vendor/unicase/Cargo.toml (+40/-0) vendor/unicase/LICENSE-APACHE (+201/-0) vendor/unicase/LICENSE-MIT (+20/-0) vendor/unicase/README.md (+32/-0) vendor/unicase/build.rs (+23/-0) vendor/unicase/src/ascii.rs (+186/-0) vendor/unicase/src/lib.rs (+457/-0) vendor/unicase/src/unicode/map.rs (+1965/-0) vendor/unicase/src/unicode/mod.rs (+200/-0) vendor/unicode-bidi/.cargo-checksum.json (+1/-0) vendor/unicode-bidi/AUTHORS (+4/-0) vendor/unicode-bidi/COPYRIGHT (+8/-0) vendor/unicode-bidi/Cargo.toml (+90/-0) vendor/unicode-bidi/LICENSE-APACHE (+201/-0) vendor/unicode-bidi/LICENSE-MIT (+25/-0) vendor/unicode-bidi/README.md (+12/-0) vendor/unicode-bidi/src/char_data/mod.rs (+170/-0) vendor/unicode-bidi/src/char_data/tables.rs (+563/-0) vendor/unicode-bidi/src/data_source.rs (+46/-0) vendor/unicode-bidi/src/deprecated.rs (+89/-0) vendor/unicode-bidi/src/explicit.rs (+229/-0) vendor/unicode-bidi/src/format_chars.rs (+42/-0) vendor/unicode-bidi/src/implicit.rs (+606/-0) vendor/unicode-bidi/src/level.rs (+401/-0) vendor/unicode-bidi/src/lib.rs (+2311/-0) vendor/unicode-bidi/src/prepare.rs (+543/-0) vendor/unicode-bidi/src/utf16.rs (+795/-0) vendor/unicode-bom/.cargo-checksum.json (+1/-0) vendor/unicode-bom/CONTRIBUTING.md (+21/-0) vendor/unicode-bom/Cargo.toml (+41/-0) vendor/unicode-bom/HISTORY.md (+136/-0) vendor/unicode-bom/LICENSE (+201/-0) vendor/unicode-bom/README.md (+134/-0) vendor/unicode-bom/fixtures/ascii.txt (+1/-0) vendor/unicode-bom/rust-toolchain (+1/-0) vendor/unicode-bom/src/lib.rs (+309/-0) vendor/unicode-bom/src/test.rs (+209/-0) vendor/unicode-ident/.cargo-checksum.json (+1/-0) vendor/unicode-ident/Cargo.toml (+79/-0) vendor/unicode-ident/LICENSE-APACHE (+176/-0) vendor/unicode-ident/LICENSE-MIT (+23/-0) vendor/unicode-ident/LICENSE-UNICODE (+46/-0) vendor/unicode-ident/README.md (+283/-0) vendor/unicode-ident/benches/xid.rs (+127/-0) vendor/unicode-ident/src/lib.rs (+269/-0) vendor/unicode-ident/src/tables.rs (+671/-0) vendor/unicode-ident/tests/compare.rs (+71/-0) vendor/unicode-ident/tests/fst/mod.rs (+11/-0) vendor/unicode-ident/tests/roaring/mod.rs (+21/-0) vendor/unicode-ident/tests/static_size.rs (+95/-0) vendor/unicode-ident/tests/tables/mod.rs (+7/-0) vendor/unicode-ident/tests/tables/tables.rs (+357/-0) vendor/unicode-ident/tests/trie/mod.rs (+7/-0) vendor/unicode-ident/tests/trie/trie.rs (+452/-0) vendor/unicode-normalization/.cargo-checksum.json (+1/-0) vendor/unicode-normalization/COPYRIGHT (+7/-0) vendor/unicode-normalization/Cargo.toml (+66/-0) vendor/unicode-normalization/LICENSE-APACHE (+201/-0) vendor/unicode-normalization/LICENSE-MIT (+25/-0) vendor/unicode-normalization/README.md (+39/-0) vendor/unicode-normalization/benches/bench.rs (+127/-0) vendor/unicode-normalization/scripts/unicode.py (+617/-0) vendor/unicode-normalization/src/__test_api.rs (+18/-0) vendor/unicode-normalization/src/decompose.rs (+173/-0) vendor/unicode-normalization/src/lib.rs (+227/-0) vendor/unicode-normalization/src/lookups.rs (+138/-0) vendor/unicode-normalization/src/normalize.rs (+224/-0) vendor/unicode-normalization/src/perfect_hash.rs (+50/-0) vendor/unicode-normalization/src/quick_check.rs (+190/-0) vendor/unicode-normalization/src/recompose.rs (+169/-0) vendor/unicode-normalization/src/replace.rs (+66/-0) vendor/unicode-normalization/src/stream_safe.rs (+174/-0) vendor/unicode-normalization/src/tables.rs (+22803/-0) vendor/unicode-normalization/src/test.rs (+130/-0) vendor/unicode-width/.cargo-checksum.json (+1/-0) vendor/unicode-width/COPYRIGHT (+7/-0) vendor/unicode-width/Cargo.toml (+80/-0) vendor/unicode-width/LICENSE-APACHE (+201/-0) vendor/unicode-width/LICENSE-MIT (+25/-0) vendor/unicode-width/README.md (+57/-0) vendor/unicode-width/benches/benches.rs (+114/-0) vendor/unicode-width/scripts/unicode.py (+2156/-0) vendor/unicode-width/src/lib.rs (+258/-0) vendor/unicode-width/src/tables.rs (+21762/-0) vendor/unicode-width/tests/emoji-test.txt (+5325/-0) vendor/unicode-width/tests/tests.rs (+631/-0) vendor/unicode-xid/.cargo-checksum.json (+1/-0) vendor/unicode-xid/COPYRIGHT (+7/-0) vendor/unicode-xid/Cargo.toml (+65/-0) vendor/unicode-xid/LICENSE-APACHE (+201/-0) vendor/unicode-xid/LICENSE-MIT (+25/-0) vendor/unicode-xid/README.md (+61/-0) vendor/unicode-xid/benches/xid.rs (+60/-0) vendor/unicode-xid/src/lib.rs (+90/-0) vendor/unicode-xid/src/tables.rs (+1537/-0) vendor/unicode-xid/src/tests.rs (+95/-0) vendor/unicode-xid/tests/exhaustive_tests.rs (+25/-0) vendor/url/.cargo-checksum.json (+1/-0) vendor/url/Cargo.toml (+86/-0) vendor/url/LICENSE-APACHE (+201/-0) vendor/url/LICENSE-MIT (+25/-0) vendor/url/README.md (+14/-0) vendor/url/src/host.rs (+496/-0) vendor/url/src/lib.rs (+3072/-0) vendor/url/src/origin.rs (+112/-0) vendor/url/src/parser.rs (+1644/-0) vendor/url/src/path_segments.rs (+246/-0) vendor/url/src/quirks.rs (+331/-0) vendor/url/src/slicing.rs (+217/-0) vendor/url/tests/expected_failures.txt (+50/-0) vendor/url/tests/setters_tests.json (+2381/-0) vendor/url/tests/unit.rs (+1318/-0) vendor/url/tests/urltestdata.json (+9519/-0) vendor/url/tests/wpt.rs (+523/-0) vendor/utf8parse/.cargo-checksum.json (+1/-0) vendor/utf8parse/Cargo.toml (+51/-0) vendor/utf8parse/LICENSE-APACHE (+176/-0) vendor/utf8parse/LICENSE-MIT (+25/-0) vendor/utf8parse/src/lib.rs (+132/-0) vendor/utf8parse/src/types.rs (+100/-0) vendor/utf8parse/tests/UTF-8-demo.txt (+212/-0) vendor/utf8parse/tests/utf-8-demo.rs (+31/-0) vendor/valuable/.cargo-checksum.json (+1/-0) vendor/valuable/Cargo.toml (+31/-0) vendor/valuable/src/lib.rs (+0/-0) vendor/vcpkg/.cargo-checksum.json (+1/-0) vendor/vcpkg/CHANGELOG.md (+112/-0) vendor/vcpkg/Cargo.toml (+30/-0) vendor/vcpkg/LICENSE-APACHE (+202/-0) vendor/vcpkg/LICENSE-MIT (+26/-0) vendor/vcpkg/README.md (+23/-0) vendor/vcpkg/notes.md (+81/-0) vendor/vcpkg/rustfmt.toml (+2/-0) vendor/vcpkg/setup_vcp.sh (+32/-0) vendor/vcpkg/src/lib.rs (+1946/-0) vendor/vcpkg/test-data/multiline-description/installed/vcpkg/info/graphite2_1.3.10_x86-windows.list (+0/-0) vendor/vcpkg/test-data/multiline-description/installed/vcpkg/updates/status (+8/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-algorithm_1.67.0_x64-windows.list (+98/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-any_1.67.0_x64-windows.list (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-array_1.67.0_x64-windows.list (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-assert_1.67.0_x64-windows.list (+8/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-atomic_1.67.0_x64-windows.list (+104/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-bimap_1.67.0_x64-windows.list (+119/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-bind_1.67.0_x64-windows.list (+25/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-build_1.67.0_x64-windows.list (+1389/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-chrono_1.67.0_x64-windows.list (+78/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-compatibility_1.67.0_x64-windows.list (+25/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-concept-check_1.67.0_x64-windows.list (+25/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-config_1.67.0_x64-windows.list (+115/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-container-hash_1.67.0_x64-windows.list (+21/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-container_1.67.0_x64-windows.list (+120/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-conversion_1.67.0_x64-windows.list (+9/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-core_1.67.0_x64-windows.list (+45/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-date-time_1.67.0_x64-windows.list (+125/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-detail_1.67.0_x64-windows.list (+31/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-endian_1.67.0_x64-windows.list (+19/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-exception_1.67.0_x64-windows.list (+40/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-filesystem_1.67.0_x64-windows.list (+30/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-foreach_1.67.0_x64-windows.list (+8/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-format_1.67.0_x64-windows.list (+27/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-function-types_1.67.0_x64-windows.list (+93/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-function_1.67.0_x64-windows.list (+30/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-functional_1.67.0_x64-windows.list (+18/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-fusion_1.67.0_x64-windows.list (+1125/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-geometry_1.67.0_x64-windows.list (+986/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-graph_1.67.0_x64-windows.list (+216/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-integer_1.67.0_x64-windows.list (+19/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-intrusive_1.67.0_x64-windows.list (+100/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-io_1.67.0_x64-windows.list (+11/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-iostreams_1.67.0-1_x64-windows.list (+151/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-iterator_1.67.0_x64-windows.list (+48/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-lambda_1.67.0_x64-windows.list (+41/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-lexical-cast_1.67.0_x64-windows.list (+23/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-locale_1.67.0_x64-windows.list (+48/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-math_1.67.0_x64-windows.list (+398/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-modular-build-helper_2018-05-14_x64-windows.list (+8/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-move_1.67.0_x64-windows.list (+53/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-mpl_1.67.0_x64-windows.list (+1093/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-multi-index_1.67.0_x64-windows.list (+83/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-multiprecision_1.67.0_x64-windows.list (+68/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-numeric-conversion_1.67.0_x64-windows.list (+36/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-optional_1.67.0_x64-windows.list (+24/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-parameter_1.67.0_x64-windows.list (+41/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-phoenix_1.67.0_x64-windows.list (+393/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-polygon_1.67.0_x64-windows.list (+71/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-pool_1.67.0_x64-windows.list (+25/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-predef_1.67.0_x64-windows.list (+176/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-preprocessor_1.67.0_x64-windows.list (+318/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-property-map_1.67.0_x64-windows.list (+30/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-property-tree_1.67.0_x64-windows.list (+44/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-proto_1.67.0_x64-windows.list (+169/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-qvm_1.67.0_x64-windows.list (+87/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-random_1.67.0_x64-windows.list (+90/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-range_1.67.0_x64-windows.list (+173/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-ratio_1.67.0_x64-windows.list (+42/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-rational_1.67.0_x64-windows.list (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-regex_1.67.0_x64-windows.list (+80/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-serialization_1.67.0_x64-windows.list (+220/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-smart-ptr_1.67.0_x64-windows.list (+103/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-spirit_1.67.0_x64-windows.list (+1207/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-static-assert_1.67.0_x64-windows.list (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-system_1.67.0_x64-windows.list (+29/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-test_1.67.0-2_x64-windows.list (+195/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-thread_1.67.0_x64-windows.list (+197/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-throw-exception_1.67.0_x64-windows.list (+9/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-timer_1.67.0_x64-windows.list (+22/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-tokenizer_1.67.0_x64-windows.list (+9/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-tti_1.67.0_x64-windows.list (+51/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-tuple_1.67.0_x64-windows.list (+12/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-type-index_1.67.0_x64-windows.list (+24/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-type-traits_1.67.0_x64-windows.list (+190/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-typeof_1.67.0_x64-windows.list (+60/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-unordered_1.67.0_x64-windows.list (+18/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-utility_1.67.0_x64-windows.list (+33/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-variant_1.67.0_x64-windows.list (+45/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-vcpkg-helpers_4_x64-windows.list (+4/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-winapi_1.67.0_x64-windows.list (+126/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/boost-xpressive_1.67.0_x64-windows.list (+141/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/bzip2_1.0.6-2_x64-windows.list (+21/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/icu_61.1-1_x64-windows.list (+217/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/libevent_2.1.8-3_x64-windows.list (+51/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/liblzma_5.2.3-2_x64-windows.list (+33/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/libmysql_8.0.4-2_x64-windows.list (+31/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/lz4_1.8.2_x64-windows.list (+19/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/openssl_1.0.2o-3_x64-windows.list (+105/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/info/zlib_1.2.11-3_x64-windows.list (+19/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000000 (+6/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000001 (+6/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000002 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000003 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000004 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000005 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000006 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000007 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000008 (+5/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000009 (+5/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000010 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000011 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000012 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000013 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000014 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000015 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000016 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000017 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000018 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000019 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000020 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000021 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000022 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000023 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000024 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000025 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000026 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000027 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000028 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000029 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000030 (+6/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000031 (+6/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000032 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000033 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000034 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000035 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000036 (+6/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000037 (+6/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000038 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000039 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000040 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000041 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000042 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000043 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000044 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000045 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000046 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000047 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000048 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000049 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000050 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000051 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000052 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000053 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000054 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000055 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000056 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000057 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000058 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000059 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000060 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000061 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000062 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000063 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000064 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000065 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000066 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000067 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000068 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000069 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000070 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000071 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000072 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000073 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000074 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000075 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000076 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000077 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000078 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000079 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000080 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000081 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000082 (+6/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000083 (+6/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000084 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000085 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000086 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000087 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000088 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000089 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000090 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000091 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000092 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000093 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000094 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000095 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000096 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000097 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000098 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000099 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000100 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000101 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000102 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000103 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000104 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000105 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000106 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000107 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000108 (+6/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000109 (+6/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000110 (+6/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000111 (+6/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000112 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000113 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000114 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000115 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000116 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000117 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000118 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000119 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000120 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000121 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000122 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000123 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000124 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000125 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000126 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000127 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000128 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000129 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000130 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000131 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000132 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000133 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000134 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000135 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000136 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000137 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000138 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000139 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000140 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000141 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000142 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000143 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000144 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000145 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000146 (+6/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000147 (+6/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000148 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000149 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000150 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000151 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000152 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000153 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000154 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000155 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000156 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000157 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000158 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000159 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000160 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000161 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000162 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000163 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000164 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000165 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000166 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000167 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000168 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000169 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000170 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000171 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000172 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000173 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000174 (+6/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000175 (+6/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000176 (+7/-0) vendor/vcpkg/test-data/no-status/installed/vcpkg/updates/0000000177 (+7/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_atomic-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_chrono-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_container-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_date_time-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_filesystem-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_graph-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_iostreams-vc141-mt-x32-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_locale-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_math_c99-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_math_c99f-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_math_c99l-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_math_tr1-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_math_tr1f-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_math_tr1l-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_prg_exec_monitor-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_random-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_regex-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_serialization-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_system-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_thread-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_timer-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_unit_test_framework-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/boost_wserialization-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/icudt61.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/icuin61.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/icuio61.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/icutu61.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/icuuc61.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/libbz2.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/libeay32.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/libmysql.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/lz4.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/lzma.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/ssleay32.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/bin/zlib1.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_atomic-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_chrono-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_container-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_date_time-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_exception-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_filesystem-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_graph-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_iostreams-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_locale-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_math_c99-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_math_c99f-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_math_c99l-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_math_tr1-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_math_tr1f-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_math_tr1l-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_random-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_regex-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_serialization-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_system-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_thread-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_timer-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_unit_test_framework-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/boost_wserialization-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/bz2.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/event.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/event_core.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/event_extra.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/icudt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/icuin.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/icuio.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/icutu.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/icuuc.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/libeay32.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/libmysql.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/lz4.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/lzma.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/manual-link/boost_prg_exec_monitor-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/manual-link/boost_test_exec_monitor-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/ssleay32.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/lib/zlib.lib (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/tools/openssl/LIBEAY32.dll (+0/-0) vendor/vcpkg/test-data/no-status/installed/x64-windows/tools/openssl/SSLEAY32.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/arm64-ios/lib/libbz2.a (+0/-0) vendor/vcpkg/test-data/normalized/installed/arm64-ios/lib/libfreetype.a (+0/-0) vendor/vcpkg/test-data/normalized/installed/arm64-ios/lib/libharfbuzz.a (+0/-0) vendor/vcpkg/test-data/normalized/installed/arm64-ios/lib/libpng16.a (+0/-0) vendor/vcpkg/test-data/normalized/installed/arm64-ios/lib/libz.a (+0/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-algorithm_1.67.0_x64-windows-static.list (+98/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-algorithm_1.67.0_x64-windows.list (+98/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-any_1.67.0_x64-windows-static.list (+7/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-any_1.67.0_x64-windows.list (+7/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-array_1.67.0_x64-windows-static.list (+7/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-array_1.67.0_x64-windows.list (+7/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-assert_1.67.0_x64-windows-static.list (+8/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-assert_1.67.0_x64-windows.list (+8/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-atomic_1.67.0_x64-windows-static.list (+98/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-atomic_1.67.0_x64-windows.list (+104/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-bimap_1.67.0_x64-windows-static.list (+119/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-bimap_1.67.0_x64-windows.list (+119/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-bind_1.67.0_x64-windows-static.list (+25/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-bind_1.67.0_x64-windows.list (+25/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-build_1.67.0_x64-windows-static.list (+1389/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-build_1.67.0_x64-windows.list (+1389/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-chrono_1.67.0_x64-windows-static.list (+72/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-chrono_1.67.0_x64-windows.list (+78/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-compatibility_1.67.0_x64-windows-static.list (+25/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-compatibility_1.67.0_x64-windows.list (+25/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-concept-check_1.67.0_x64-windows-static.list (+25/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-concept-check_1.67.0_x64-windows.list (+25/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-config_1.67.0_x64-windows-static.list (+115/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-config_1.67.0_x64-windows.list (+115/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-container-hash_1.67.0_x64-windows-static.list (+21/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-container-hash_1.67.0_x64-windows.list (+21/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-container_1.67.0_x64-windows-static.list (+114/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-container_1.67.0_x64-windows.list (+120/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-conversion_1.67.0_x64-windows-static.list (+9/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-conversion_1.67.0_x64-windows.list (+9/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-core_1.67.0_x64-windows-static.list (+45/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-core_1.67.0_x64-windows.list (+45/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-date-time_1.67.0_x64-windows-static.list (+119/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-date-time_1.67.0_x64-windows.list (+125/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-detail_1.67.0_x64-windows-static.list (+31/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-detail_1.67.0_x64-windows.list (+31/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-endian_1.67.0_x64-windows-static.list (+19/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-endian_1.67.0_x64-windows.list (+19/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-exception_1.67.0_x64-windows-static.list (+40/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-exception_1.67.0_x64-windows.list (+40/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-filesystem_1.67.0_x64-windows-static.list (+24/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-filesystem_1.67.0_x64-windows.list (+30/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-foreach_1.67.0_x64-windows-static.list (+8/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-foreach_1.67.0_x64-windows.list (+8/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-format_1.67.0_x64-windows-static.list (+27/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-format_1.67.0_x64-windows.list (+27/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-function-types_1.67.0_x64-windows-static.list (+93/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-function-types_1.67.0_x64-windows.list (+93/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-function_1.67.0_x64-windows-static.list (+30/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-function_1.67.0_x64-windows.list (+30/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-functional_1.67.0_x64-windows-static.list (+18/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-functional_1.67.0_x64-windows.list (+18/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-fusion_1.67.0_x64-windows-static.list (+1125/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-fusion_1.67.0_x64-windows.list (+1125/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-geometry_1.67.0_x64-windows-static.list (+986/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-geometry_1.67.0_x64-windows.list (+986/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-graph_1.67.0_x64-windows-static.list (+210/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-graph_1.67.0_x64-windows.list (+216/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-integer_1.67.0_x64-windows-static.list (+19/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-integer_1.67.0_x64-windows.list (+19/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-intrusive_1.67.0_x64-windows-static.list (+100/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-intrusive_1.67.0_x64-windows.list (+100/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-io_1.67.0_x64-windows-static.list (+11/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-io_1.67.0_x64-windows.list (+11/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-iostreams_1.67.0-1_x64-windows-static.list (+145/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-iostreams_1.67.0-1_x64-windows.list (+151/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-iterator_1.67.0_x64-windows-static.list (+48/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-iterator_1.67.0_x64-windows.list (+48/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-lambda_1.67.0_x64-windows-static.list (+41/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-lambda_1.67.0_x64-windows.list (+41/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-lexical-cast_1.67.0_x64-windows-static.list (+23/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-lexical-cast_1.67.0_x64-windows.list (+23/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-locale_1.67.0_x64-windows-static.list (+42/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-locale_1.67.0_x64-windows.list (+48/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-math_1.67.0_x64-windows-static.list (+372/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-math_1.67.0_x64-windows.list (+398/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-modular-build-helper_2018-05-14_x64-windows-static.list (+8/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-modular-build-helper_2018-05-14_x64-windows.list (+8/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-move_1.67.0_x64-windows-static.list (+53/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-move_1.67.0_x64-windows.list (+53/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-mpl_1.67.0_x64-windows-static.list (+1093/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-mpl_1.67.0_x64-windows.list (+1093/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-multi-index_1.67.0_x64-windows-static.list (+83/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-multi-index_1.67.0_x64-windows.list (+83/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-multiprecision_1.67.0_x64-windows-static.list (+68/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-multiprecision_1.67.0_x64-windows.list (+68/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-numeric-conversion_1.67.0_x64-windows-static.list (+36/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-numeric-conversion_1.67.0_x64-windows.list (+36/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-optional_1.67.0_x64-windows-static.list (+24/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-optional_1.67.0_x64-windows.list (+24/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-parameter_1.67.0_x64-windows-static.list (+41/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-parameter_1.67.0_x64-windows.list (+41/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-phoenix_1.67.0_x64-windows-static.list (+393/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-phoenix_1.67.0_x64-windows.list (+393/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-polygon_1.67.0_x64-windows-static.list (+71/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-polygon_1.67.0_x64-windows.list (+71/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-pool_1.67.0_x64-windows-static.list (+25/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-pool_1.67.0_x64-windows.list (+25/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-predef_1.67.0_x64-windows-static.list (+176/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-predef_1.67.0_x64-windows.list (+176/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-preprocessor_1.67.0_x64-windows-static.list (+318/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-preprocessor_1.67.0_x64-windows.list (+318/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-property-map_1.67.0_x64-windows-static.list (+30/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-property-map_1.67.0_x64-windows.list (+30/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-property-tree_1.67.0_x64-windows-static.list (+44/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-property-tree_1.67.0_x64-windows.list (+44/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-proto_1.67.0_x64-windows-static.list (+169/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-proto_1.67.0_x64-windows.list (+169/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-qvm_1.67.0_x64-windows-static.list (+87/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-qvm_1.67.0_x64-windows.list (+87/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-random_1.67.0_x64-windows-static.list (+84/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-random_1.67.0_x64-windows.list (+90/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-range_1.67.0_x64-windows-static.list (+173/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-range_1.67.0_x64-windows.list (+173/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-ratio_1.67.0_x64-windows-static.list (+42/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-ratio_1.67.0_x64-windows.list (+42/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-rational_1.67.0_x64-windows-static.list (+7/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-rational_1.67.0_x64-windows.list (+7/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-regex_1.67.0_x64-windows-static.list (+74/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-regex_1.67.0_x64-windows.list (+80/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-serialization_1.67.0_x64-windows-static.list (+210/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-serialization_1.67.0_x64-windows.list (+220/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-smart-ptr_1.67.0_x64-windows-static.list (+103/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-smart-ptr_1.67.0_x64-windows.list (+103/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-spirit_1.67.0_x64-windows-static.list (+1207/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-spirit_1.67.0_x64-windows.list (+1207/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-static-assert_1.67.0_x64-windows-static.list (+7/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-static-assert_1.67.0_x64-windows.list (+7/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-system_1.67.0_x64-windows-static.list (+23/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-system_1.67.0_x64-windows.list (+29/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-test_1.67.0-2_x64-windows-static.list (+185/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-test_1.67.0-2_x64-windows.list (+195/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-thread_1.67.0_x64-windows-static.list (+191/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-thread_1.67.0_x64-windows.list (+197/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-throw-exception_1.67.0_x64-windows-static.list (+9/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-throw-exception_1.67.0_x64-windows.list (+9/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-timer_1.67.0_x64-windows-static.list (+16/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-timer_1.67.0_x64-windows.list (+22/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-tokenizer_1.67.0_x64-windows-static.list (+9/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-tokenizer_1.67.0_x64-windows.list (+9/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-tti_1.67.0_x64-windows-static.list (+51/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-tti_1.67.0_x64-windows.list (+51/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-tuple_1.67.0_x64-windows-static.list (+12/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-tuple_1.67.0_x64-windows.list (+12/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-type-index_1.67.0_x64-windows-static.list (+24/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-type-index_1.67.0_x64-windows.list (+24/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-type-traits_1.67.0_x64-windows-static.list (+190/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-type-traits_1.67.0_x64-windows.list (+190/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-typeof_1.67.0_x64-windows-static.list (+60/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-typeof_1.67.0_x64-windows.list (+60/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-unordered_1.67.0_x64-windows-static.list (+18/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-unordered_1.67.0_x64-windows.list (+18/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-utility_1.67.0_x64-windows-static.list (+33/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-utility_1.67.0_x64-windows.list (+33/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-variant_1.67.0_x64-windows-static.list (+45/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-variant_1.67.0_x64-windows.list (+45/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-vcpkg-helpers_4_x64-windows-static.list (+4/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-vcpkg-helpers_4_x64-windows.list (+4/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-winapi_1.67.0_x64-windows-static.list (+126/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-winapi_1.67.0_x64-windows.list (+126/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-xpressive_1.67.0_x64-windows-static.list (+141/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/boost-xpressive_1.67.0_x64-windows.list (+141/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/bzip2_1.0.6-2_arm64-ios.list (+15/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/bzip2_1.0.6-2_x64-osx.list (+15/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/bzip2_1.0.6-2_x64-windows-static.list (+15/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/bzip2_1.0.6-2_x64-windows.list (+21/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/bzip2_1.0.6-2_x86-windows.list (+21/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/freetype_2.8.1-3_arm64-ios.list (+71/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/freetype_2.8.1-3_x64-osx.list (+71/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/freetype_2.8.1-3_x86-windows.list (+76/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/graphite2_1.3.10_x86-windows.list (+29/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/harfbuzz_1.8.4_arm64-ios.list (+33/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/harfbuzz_1.8.4_x64-osx.list (+33/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/harfbuzz_1.8.4_x86-windows.list (+39/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/icu_61.1-1_x64-windows-static.list (+197/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/icu_61.1-1_x64-windows.list (+217/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/icu_61.1-1_x86-windows.list (+217/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/icu_61.1-2_x64-osx.list (+216/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/libevent_2.1.8-3_x64-windows-static.list (+51/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/libevent_2.1.8-3_x64-windows.list (+51/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/liblzma_5.2.3-2_x64-windows-static.list (+27/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/liblzma_5.2.3-2_x64-windows.list (+33/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/libmysql_8.0.4-2_x64-windows-static.list (+25/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/libmysql_8.0.4-2_x64-windows.list (+31/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/libpng_1.6.35_arm64-ios.list (+20/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/libpng_1.6.35_x64-osx.list (+20/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/libpng_1.6.35_x86-windows.list (+24/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/lz4_1.8.2_x64-windows-static.list (+13/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/lz4_1.8.2_x64-windows.list (+19/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/openssl_1.0.2o-3_x64-windows-static.list (+92/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/openssl_1.0.2o-3_x64-windows.list (+105/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/ragel_6.10-1_arm64-ios.list (+6/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/ragel_6.10-1_x64-osx.list (+6/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/ragel_6.10-1_x86-windows.list (+6/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/zlib_1.2.11-3_arm64-ios.list (+13/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/zlib_1.2.11-3_x64-osx.list (+13/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/zlib_1.2.11-3_x64-windows-static.list (+13/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/zlib_1.2.11-3_x64-windows.list (+19/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/info/zlib_1.2.11-3_x86-windows.list (+19/-0) vendor/vcpkg/test-data/normalized/installed/vcpkg/updates/status (+1574/-0) vendor/vcpkg/test-data/normalized/installed/x64-osx/lib/libbz2.a (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-osx/lib/libfreetype.a (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-osx/lib/libharfbuzz.a (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-osx/lib/libpng16.a (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-osx/lib/libz.a (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_atomic-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_chrono-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_container-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_date_time-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_exception-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_filesystem-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_graph-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_iostreams-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_locale-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_math_c99-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_math_c99f-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_math_c99l-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_math_tr1-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_math_tr1f-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_math_tr1l-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_random-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_regex-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_serialization-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_system-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_thread-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_timer-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_unit_test_framework-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/boost_wserialization-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/bz2d.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/event.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/event_core.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/event_extra.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/icudtd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/icuind.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/icuiod.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/icutud.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/icuucd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/libeay32.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/lz4d.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/lzma.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/manual-link/boost_prg_exec_monitor-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/manual-link/boost_test_exec_monitor-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/mysqlclient.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/ssleay32.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/debug/lib/zlibd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_atomic-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_chrono-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_container-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_date_time-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_exception-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_filesystem-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_graph-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_iostreams-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_locale-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_math_c99-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_math_c99f-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_math_c99l-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_math_tr1-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_math_tr1f-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_math_tr1l-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_random-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_regex-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_serialization-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_system-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_thread-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_timer-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_unit_test_framework-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/boost_wserialization-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/bz2.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/event.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/event_core.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/event_extra.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/icudt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/icuin.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/icuio.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/icutu.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/icuuc.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/libeay32.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/lz4.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/lzma.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/manual-link/boost_prg_exec_monitor-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/manual-link/boost_test_exec_monitor-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/mysqlclient.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/ssleay32.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows-static/lib/zlib.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_atomic-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_chrono-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_container-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_date_time-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_filesystem-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_graph-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_iostreams-vc141-mt-x32-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_locale-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_math_c99-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_math_c99f-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_math_c99l-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_math_tr1-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_math_tr1f-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_math_tr1l-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_prg_exec_monitor-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_random-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_regex-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_serialization-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_system-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_thread-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_timer-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_unit_test_framework-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/boost_wserialization-vc141-mt-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/icudt61.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/icuin61.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/icuio61.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/icutu61.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/icuuc61.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/libbz2.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/libeay32.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/libmysql.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/lz4.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/lzma.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/ssleay32.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/bin/zlib1.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_atomic-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_chrono-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_container-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_date_time-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_filesystem-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_graph-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_iostreams-vc141-mt-gd-x32-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_locale-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_math_c99-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_math_c99f-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_math_c99l-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_math_tr1-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_math_tr1f-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_math_tr1l-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_prg_exec_monitor-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_random-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_regex-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_serialization-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_system-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_thread-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_timer-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_unit_test_framework-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/boost_wserialization-vc141-mt-gd-x64-1_67.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/icudtd61.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/icuind61.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/icuiod61.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/icutud61.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/icuucd61.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/libbz2d.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/libeay32.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/libmysql.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/lz4d.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/lzma.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/ssleay32.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/bin/zlibd1.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_atomic-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_chrono-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_container-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_date_time-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_exception-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_filesystem-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_graph-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_iostreams-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_locale-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_math_c99-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_math_c99f-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_math_c99l-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_math_tr1-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_math_tr1f-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_math_tr1l-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_random-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_regex-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_serialization-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_system-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_thread-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_timer-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_unit_test_framework-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/boost_wserialization-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/bz2d.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/event.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/event_core.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/event_extra.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/icudtd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/icuind.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/icuiod.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/icutud.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/icuucd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/libeay32.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/libmysql.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/lz4d.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/lzma.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/manual-link/boost_prg_exec_monitor-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/manual-link/boost_test_exec_monitor-vc140-mt-gd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/ssleay32.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/debug/lib/zlibd.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_atomic-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_chrono-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_container-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_date_time-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_exception-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_filesystem-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_graph-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_iostreams-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_locale-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_math_c99-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_math_c99f-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_math_c99l-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_math_tr1-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_math_tr1f-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_math_tr1l-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_random-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_regex-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_serialization-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_system-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_thread-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_timer-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_unit_test_framework-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/boost_wserialization-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/bz2.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/event.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/event_core.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/event_extra.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/icudt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/icuin.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/icuio.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/icutu.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/icuuc.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/libeay32.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/libmysql.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/lz4.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/lzma.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/manual-link/boost_prg_exec_monitor-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/manual-link/boost_test_exec_monitor-vc140-mt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/ssleay32.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/lib/zlib.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/tools/openssl/LIBEAY32.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x64-windows/tools/openssl/SSLEAY32.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/bin/freetype.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/bin/graphite2.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/bin/harfbuzz.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/bin/icudt61.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/bin/icuin61.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/bin/icuio61.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/bin/icutu61.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/bin/icuuc61.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/bin/libbz2.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/bin/libpng16.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/bin/zlib1.dll (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/lib/bz2.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/lib/freetype.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/lib/graphite2.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/lib/harfbuzz.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/lib/icudt.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/lib/icuin.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/lib/icuio.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/lib/icutu.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/lib/icuuc.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/lib/libpng16.lib (+0/-0) vendor/vcpkg/test-data/normalized/installed/x86-windows/lib/zlib.lib (+0/-0) vendor/vcpkg/tests/README.md (+5/-0) vendor/vcpkg/tests/run.sh (+20/-0) vendor/vcpkg/tests/vcpkgrs_target.sh (+22/-0) vendor/version_check/.cargo-checksum.json (+1/-0) vendor/version_check/Cargo.toml (+38/-0) vendor/version_check/LICENSE-APACHE (+201/-0) vendor/version_check/LICENSE-MIT (+19/-0) vendor/version_check/README.md (+80/-0) vendor/version_check/src/channel.rs (+195/-0) vendor/version_check/src/date.rs (+203/-0) vendor/version_check/src/lib.rs (+528/-0) vendor/version_check/src/version.rs (+316/-0) vendor/walkdir/.cargo-checksum.json (+1/-0) vendor/walkdir/COPYING (+3/-0) vendor/walkdir/Cargo.toml (+49/-0) vendor/walkdir/LICENSE-MIT (+21/-0) vendor/walkdir/README.md (+139/-0) vendor/walkdir/UNLICENSE (+24/-0) vendor/walkdir/compare/nftw.c (+25/-0) vendor/walkdir/compare/walk.py (+10/-0) vendor/walkdir/rustfmt.toml (+2/-0) vendor/walkdir/src/dent.rs (+352/-0) vendor/walkdir/src/error.rs (+262/-0) vendor/walkdir/src/lib.rs (+1194/-0) vendor/walkdir/src/tests/mod.rs (+4/-0) vendor/walkdir/src/tests/recursive.rs (+1092/-0) vendor/walkdir/src/tests/util.rs (+252/-0) vendor/walkdir/src/util.rs (+25/-0) vendor/wasi/.cargo-checksum.json (+1/-0) vendor/wasi/Cargo.toml (+33/-0) vendor/wasi/src/lib.rs (+0/-0) vendor/wasm-bindgen-backend/.cargo-checksum.json (+1/-0) vendor/wasm-bindgen-backend/Cargo.toml (+49/-0) vendor/wasm-bindgen-backend/src/lib.rs (+0/-0) vendor/wasm-bindgen-macro-support/.cargo-checksum.json (+1/-0) vendor/wasm-bindgen-macro-support/Cargo.toml (+44/-0) vendor/wasm-bindgen-macro-support/src/lib.rs (+0/-0) vendor/wasm-bindgen-macro/.cargo-checksum.json (+1/-0) vendor/wasm-bindgen-macro/Cargo.toml (+43/-0) vendor/wasm-bindgen-macro/src/lib.rs (+0/-0) vendor/wasm-bindgen-shared/.cargo-checksum.json (+1/-0) vendor/wasm-bindgen-shared/Cargo.toml (+24/-0) vendor/wasm-bindgen-shared/src/lib.rs (+0/-0) vendor/wasm-bindgen/.cargo-checksum.json (+1/-0) vendor/wasm-bindgen/Cargo.toml (+65/-0) vendor/wasm-bindgen/src/lib.rs (+0/-0) vendor/winapi-i686-pc-windows-gnu/.cargo-checksum.json (+1/-0) vendor/winapi-i686-pc-windows-gnu/Cargo.toml (+9/-0) vendor/winapi-i686-pc-windows-gnu/src/lib.rs (+0/-0) vendor/winapi-util/.cargo-checksum.json (+1/-0) vendor/winapi-util/Cargo.toml (+28/-0) vendor/winapi-util/src/lib.rs (+0/-0) vendor/winapi-x86_64-pc-windows-gnu/.cargo-checksum.json (+1/-0) vendor/winapi-x86_64-pc-windows-gnu/Cargo.toml (+9/-0) vendor/winapi-x86_64-pc-windows-gnu/src/lib.rs (+0/-0) vendor/winapi/.cargo-checksum.json (+1/-0) vendor/winapi/Cargo.toml (+424/-0) vendor/winapi/src/lib.rs (+0/-0) vendor/windows-sys-0.48.0/.cargo-checksum.json (+1/-0) vendor/windows-sys-0.48.0/Cargo.toml (+299/-0) vendor/windows-sys-0.48.0/src/lib.rs (+0/-0) vendor/windows-sys-0.52.0/.cargo-checksum.json (+1/-0) vendor/windows-sys-0.52.0/Cargo.toml (+254/-0) vendor/windows-sys-0.52.0/src/lib.rs (+0/-0) vendor/windows-sys/.cargo-checksum.json (+1/-0) vendor/windows-sys/Cargo.toml (+286/-0) vendor/windows-sys/src/lib.rs (+0/-0) vendor/windows-targets-0.48.5/.cargo-checksum.json (+1/-0) vendor/windows-targets-0.48.5/Cargo.toml (+30/-0) vendor/windows-targets-0.48.5/src/lib.rs (+0/-0) vendor/windows-targets/.cargo-checksum.json (+1/-0) vendor/windows-targets/Cargo.toml (+54/-0) vendor/windows-targets/src/lib.rs (+0/-0) vendor/windows_aarch64_gnullvm-0.48.5/.cargo-checksum.json (+1/-0) vendor/windows_aarch64_gnullvm-0.48.5/Cargo.toml (+12/-0) vendor/windows_aarch64_gnullvm-0.48.5/src/lib.rs (+0/-0) vendor/windows_aarch64_gnullvm/.cargo-checksum.json (+1/-0) vendor/windows_aarch64_gnullvm/Cargo.toml (+22/-0) vendor/windows_aarch64_gnullvm/src/lib.rs (+0/-0) vendor/windows_aarch64_msvc-0.48.5/.cargo-checksum.json (+1/-0) vendor/windows_aarch64_msvc-0.48.5/Cargo.toml (+12/-0) vendor/windows_aarch64_msvc-0.48.5/src/lib.rs (+0/-0) vendor/windows_aarch64_msvc/.cargo-checksum.json (+1/-0) vendor/windows_aarch64_msvc/Cargo.toml (+22/-0) vendor/windows_aarch64_msvc/src/lib.rs (+0/-0) vendor/windows_i686_gnu-0.48.5/.cargo-checksum.json (+1/-0) vendor/windows_i686_gnu-0.48.5/Cargo.toml (+12/-0) vendor/windows_i686_gnu-0.48.5/src/lib.rs (+0/-0) vendor/windows_i686_gnu/.cargo-checksum.json (+1/-0) vendor/windows_i686_gnu/Cargo.toml (+22/-0) vendor/windows_i686_gnu/src/lib.rs (+0/-0) vendor/windows_i686_gnullvm/.cargo-checksum.json (+1/-0) vendor/windows_i686_gnullvm/Cargo.toml (+22/-0) vendor/windows_i686_gnullvm/src/lib.rs (+0/-0) vendor/windows_i686_msvc-0.48.5/.cargo-checksum.json (+1/-0) vendor/windows_i686_msvc-0.48.5/Cargo.toml (+12/-0) vendor/windows_i686_msvc-0.48.5/src/lib.rs (+0/-0) vendor/windows_i686_msvc/.cargo-checksum.json (+1/-0) vendor/windows_i686_msvc/Cargo.toml (+22/-0) vendor/windows_i686_msvc/src/lib.rs (+0/-0) vendor/windows_x86_64_gnu-0.48.5/.cargo-checksum.json (+1/-0) vendor/windows_x86_64_gnu-0.48.5/Cargo.toml (+12/-0) vendor/windows_x86_64_gnu-0.48.5/src/lib.rs (+0/-0) vendor/windows_x86_64_gnu/.cargo-checksum.json (+1/-0) vendor/windows_x86_64_gnu/Cargo.toml (+22/-0) vendor/windows_x86_64_gnu/src/lib.rs (+0/-0) vendor/windows_x86_64_gnullvm-0.48.5/.cargo-checksum.json (+1/-0) vendor/windows_x86_64_gnullvm-0.48.5/Cargo.toml (+12/-0) vendor/windows_x86_64_gnullvm-0.48.5/src/lib.rs (+0/-0) vendor/windows_x86_64_gnullvm/.cargo-checksum.json (+1/-0) vendor/windows_x86_64_gnullvm/Cargo.toml (+22/-0) vendor/windows_x86_64_gnullvm/src/lib.rs (+0/-0) vendor/windows_x86_64_msvc-0.48.5/.cargo-checksum.json (+1/-0) vendor/windows_x86_64_msvc-0.48.5/Cargo.toml (+12/-0) vendor/windows_x86_64_msvc-0.48.5/src/lib.rs (+0/-0) vendor/windows_x86_64_msvc/.cargo-checksum.json (+1/-0) vendor/windows_x86_64_msvc/Cargo.toml (+22/-0) vendor/windows_x86_64_msvc/src/lib.rs (+0/-0) vendor/winnow/.cargo-checksum.json (+1/-0) vendor/winnow/Cargo.lock (+1567/-0) vendor/winnow/Cargo.toml (+360/-0) vendor/winnow/LICENSE-MIT (+18/-0) vendor/winnow/README.md (+27/-0) vendor/winnow/benches/contains_token.rs (+114/-0) vendor/winnow/benches/find_slice.rs (+50/-0) vendor/winnow/benches/iter.rs (+120/-0) vendor/winnow/benches/next_slice.rs (+133/-0) vendor/winnow/benches/number.rs (+70/-0) vendor/winnow/examples/arithmetic/bench.rs (+33/-0) vendor/winnow/examples/arithmetic/main.rs (+86/-0) vendor/winnow/examples/arithmetic/parser.rs (+135/-0) vendor/winnow/examples/arithmetic/parser_ast.rs (+182/-0) vendor/winnow/examples/arithmetic/parser_lexer.rs (+300/-0) vendor/winnow/examples/css/main.rs (+62/-0) vendor/winnow/examples/css/parser.rs (+35/-0) vendor/winnow/examples/custom_error.rs (+70/-0) vendor/winnow/examples/http/bench.rs (+36/-0) vendor/winnow/examples/http/main.rs (+47/-0) vendor/winnow/examples/http/parser.rs (+137/-0) vendor/winnow/examples/http/parser_streaming.rs (+138/-0) vendor/winnow/examples/ini/bench.rs (+61/-0) vendor/winnow/examples/ini/main.rs (+60/-0) vendor/winnow/examples/ini/parser.rs (+148/-0) vendor/winnow/examples/ini/parser_str.rs (+208/-0) vendor/winnow/examples/iterator.rs (+74/-0) vendor/winnow/examples/json/bench.rs (+65/-0) vendor/winnow/examples/json/json.rs (+11/-0) vendor/winnow/examples/json/main.rs (+98/-0) vendor/winnow/examples/json/parser.rs (+323/-0) vendor/winnow/examples/json/parser_dispatch.rs (+330/-0) vendor/winnow/examples/json/parser_partial.rs (+350/-0) vendor/winnow/examples/json_iterator.rs (+311/-0) vendor/winnow/examples/ndjson/example.ndjson (+158/-0) vendor/winnow/examples/ndjson/main.rs (+117/-0) vendor/winnow/examples/ndjson/parser.rs (+340/-0) vendor/winnow/examples/s_expression/main.rs (+20/-0) vendor/winnow/examples/s_expression/parser.rs (+361/-0) vendor/winnow/examples/string/main.rs (+70/-0) vendor/winnow/examples/string/parser.rs (+167/-0) vendor/winnow/src/_topic/arithmetic.rs (+19/-0) vendor/winnow/src/_topic/error.rs (+44/-0) vendor/winnow/src/_topic/fromstr.rs (+8/-0) vendor/winnow/src/_topic/http.rs (+5/-0) vendor/winnow/src/_topic/ini.rs (+5/-0) vendor/winnow/src/_topic/json.rs (+5/-0) vendor/winnow/src/_topic/language.rs (+326/-0) vendor/winnow/src/_topic/mod.rs (+40/-0) vendor/winnow/src/_topic/nom.rs (+49/-0) vendor/winnow/src/_topic/partial.rs (+46/-0) vendor/winnow/src/_topic/performance.rs (+55/-0) vendor/winnow/src/_topic/s_expression.rs (+5/-0) vendor/winnow/src/_topic/stream.rs (+65/-0) vendor/winnow/src/_topic/why.rs (+102/-0) vendor/winnow/src/_tutorial/chapter_0.rs (+38/-0) vendor/winnow/src/_tutorial/chapter_1.rs (+88/-0) vendor/winnow/src/_tutorial/chapter_2.rs (+305/-0) vendor/winnow/src/_tutorial/chapter_3.rs (+375/-0) vendor/winnow/src/_tutorial/chapter_4.rs (+107/-0) vendor/winnow/src/_tutorial/chapter_5.rs (+282/-0) vendor/winnow/src/_tutorial/chapter_6.rs (+121/-0) vendor/winnow/src/_tutorial/chapter_7.rs (+728/-0) vendor/winnow/src/_tutorial/chapter_8.rs (+35/-0) vendor/winnow/src/_tutorial/mod.rs (+14/-0) vendor/winnow/src/ascii/mod.rs (+1895/-0) vendor/winnow/src/ascii/tests.rs (+1534/-0) vendor/winnow/src/binary/bits/mod.rs (+414/-0) vendor/winnow/src/binary/bits/tests.rs (+191/-0) vendor/winnow/src/binary/mod.rs (+2527/-0) vendor/winnow/src/binary/tests.rs (+1348/-0) vendor/winnow/src/combinator/branch.rs (+358/-0) vendor/winnow/src/combinator/core.rs (+564/-0) vendor/winnow/src/combinator/debug/internals.rs (+301/-0) vendor/winnow/src/combinator/debug/mod.rs (+96/-0) vendor/winnow/src/combinator/mod.rs (+176/-0) vendor/winnow/src/combinator/multi.rs (+1316/-0) vendor/winnow/src/combinator/parser.rs (+1093/-0) vendor/winnow/src/combinator/sequence.rs (+166/-0) vendor/winnow/src/combinator/tests.rs (+1393/-0) vendor/winnow/src/error.rs (+1410/-0) vendor/winnow/src/lib.rs (+164/-0) vendor/winnow/src/macros/dispatch.rs (+55/-0) vendor/winnow/src/macros/mod.rs (+5/-0) vendor/winnow/src/macros/seq.rs (+275/-0) vendor/winnow/src/macros/test.rs (+415/-0) vendor/winnow/src/parser.rs (+1235/-0) vendor/winnow/src/stream/impls.rs (+541/-0) vendor/winnow/src/stream/mod.rs (+3784/-0) vendor/winnow/src/stream/tests.rs (+228/-0) vendor/winnow/src/token/mod.rs (+1092/-0) vendor/winnow/src/token/tests.rs (+836/-0) vendor/zerocopy-derive/.cargo-checksum.json (+1/-0) vendor/zerocopy-derive/Cargo.toml (+43/-0) vendor/zerocopy-derive/LICENSE-APACHE (+202/-0) vendor/zerocopy-derive/LICENSE-BSD (+24/-0) vendor/zerocopy-derive/LICENSE-MIT (+26/-0) vendor/zerocopy-derive/src/ext.rs (+53/-0) vendor/zerocopy-derive/src/lib.rs (+887/-0) vendor/zerocopy-derive/src/repr.rs (+311/-0) vendor/zerocopy-derive/tests/enum_as_bytes.rs (+101/-0) vendor/zerocopy-derive/tests/enum_from_zeroes.rs (+35/-0) vendor/zerocopy-derive/tests/enum_known_layout.rs (+46/-0) vendor/zerocopy-derive/tests/enum_unaligned.rs (+47/-0) vendor/zerocopy-derive/tests/hygiene.rs (+43/-0) vendor/zerocopy-derive/tests/paths_and_modules.rs (+38/-0) vendor/zerocopy-derive/tests/priv_in_pub.rs (+24/-0) vendor/zerocopy-derive/tests/struct_as_bytes.rs (+161/-0) vendor/zerocopy-derive/tests/struct_from_bytes.rs (+79/-0) vendor/zerocopy-derive/tests/struct_from_zeroes.rs (+77/-0) vendor/zerocopy-derive/tests/struct_known_layout.rs (+65/-0) vendor/zerocopy-derive/tests/struct_unaligned.rs (+100/-0) vendor/zerocopy-derive/tests/trybuild.rs (+19/-0) vendor/zerocopy-derive/tests/ui-msrv/derive_transparent.rs (+40/-0) vendor/zerocopy-derive/tests/ui-msrv/derive_transparent.stderr (+71/-0) vendor/zerocopy-derive/tests/ui-msrv/enum.rs (+194/-0) vendor/zerocopy-derive/tests/ui-msrv/enum.stderr (+199/-0) vendor/zerocopy-derive/tests/ui-msrv/enum_from_bytes_u8_too_few.rs (+272/-0) vendor/zerocopy-derive/tests/ui-msrv/enum_from_bytes_u8_too_few.stderr (+11/-0) vendor/zerocopy-derive/tests/ui-msrv/late_compile_pass.rs (+75/-0) vendor/zerocopy-derive/tests/ui-msrv/late_compile_pass.stderr (+74/-0) vendor/zerocopy-derive/tests/ui-msrv/mid_compile_pass.rs (+61/-0) vendor/zerocopy-derive/tests/ui-msrv/mid_compile_pass.stderr (+104/-0) vendor/zerocopy-derive/tests/ui-msrv/struct.rs (+99/-0) vendor/zerocopy-derive/tests/ui-msrv/struct.stderr (+113/-0) vendor/zerocopy-derive/tests/ui-msrv/union.rs (+73/-0) vendor/zerocopy-derive/tests/ui-msrv/union.stderr (+42/-0) vendor/zerocopy-derive/tests/ui-nightly/derive_transparent.rs (+40/-0) vendor/zerocopy-derive/tests/ui-nightly/derive_transparent.stderr (+111/-0) vendor/zerocopy-derive/tests/ui-nightly/enum.rs (+194/-0) vendor/zerocopy-derive/tests/ui-nightly/enum.stderr (+201/-0) vendor/zerocopy-derive/tests/ui-nightly/enum_from_bytes_u8_too_few.rs (+272/-0) vendor/zerocopy-derive/tests/ui-nightly/enum_from_bytes_u8_too_few.stderr (+11/-0) vendor/zerocopy-derive/tests/ui-nightly/late_compile_pass.rs (+75/-0) vendor/zerocopy-derive/tests/ui-nightly/late_compile_pass.stderr (+168/-0) vendor/zerocopy-derive/tests/ui-nightly/mid_compile_pass.rs (+61/-0) vendor/zerocopy-derive/tests/ui-nightly/mid_compile_pass.stderr (+104/-0) vendor/zerocopy-derive/tests/ui-nightly/struct.rs (+99/-0) vendor/zerocopy-derive/tests/ui-nightly/struct.stderr (+161/-0) vendor/zerocopy-derive/tests/ui-nightly/union.rs (+73/-0) vendor/zerocopy-derive/tests/ui-nightly/union.stderr (+51/-0) vendor/zerocopy-derive/tests/ui-stable/derive_transparent.rs (+40/-0) vendor/zerocopy-derive/tests/ui-stable/derive_transparent.stderr (+111/-0) vendor/zerocopy-derive/tests/ui-stable/enum.rs (+194/-0) vendor/zerocopy-derive/tests/ui-stable/enum.stderr (+201/-0) vendor/zerocopy-derive/tests/ui-stable/enum_from_bytes_u8_too_few.rs (+272/-0) vendor/zerocopy-derive/tests/ui-stable/enum_from_bytes_u8_too_few.stderr (+11/-0) vendor/zerocopy-derive/tests/ui-stable/late_compile_pass.rs (+75/-0) vendor/zerocopy-derive/tests/ui-stable/late_compile_pass.stderr (+144/-0) vendor/zerocopy-derive/tests/ui-stable/mid_compile_pass.rs (+61/-0) vendor/zerocopy-derive/tests/ui-stable/mid_compile_pass.stderr (+104/-0) vendor/zerocopy-derive/tests/ui-stable/struct.rs (+99/-0) vendor/zerocopy-derive/tests/ui-stable/struct.stderr (+137/-0) vendor/zerocopy-derive/tests/ui-stable/union.rs (+73/-0) vendor/zerocopy-derive/tests/ui-stable/union.stderr (+47/-0) vendor/zerocopy-derive/tests/union_as_bytes.rs (+75/-0) vendor/zerocopy-derive/tests/union_from_bytes.rs (+72/-0) vendor/zerocopy-derive/tests/union_from_zeroes.rs (+72/-0) vendor/zerocopy-derive/tests/union_known_layout.rs (+65/-0) vendor/zerocopy-derive/tests/union_unaligned.rs (+77/-0) vendor/zerocopy-derive/tests/util.rs (+20/-0) vendor/zerocopy/.cargo-checksum.json (+1/-0) vendor/zerocopy/CONTRIBUTING.md (+215/-0) vendor/zerocopy/Cargo.toml (+101/-0) vendor/zerocopy/INTERNAL.md (+44/-0) vendor/zerocopy/LICENSE-APACHE (+202/-0) vendor/zerocopy/LICENSE-BSD (+24/-0) vendor/zerocopy/LICENSE-MIT (+26/-0) vendor/zerocopy/POLICIES.md (+114/-0) vendor/zerocopy/README.md (+154/-0) vendor/zerocopy/cargo.sh (+120/-0) vendor/zerocopy/clippy.toml (+10/-0) vendor/zerocopy/generate-readme.sh (+50/-0) vendor/zerocopy/rustfmt.toml (+19/-0) vendor/zerocopy/src/byteorder.rs (+1071/-0) vendor/zerocopy/src/lib.rs (+8284/-0) vendor/zerocopy/src/macro_util.rs (+673/-0) vendor/zerocopy/src/macros.rs (+416/-0) vendor/zerocopy/src/post_monomorphization_compile_fail_tests.rs (+118/-0) vendor/zerocopy/src/third_party/rust/LICENSE-APACHE (+176/-0) vendor/zerocopy/src/third_party/rust/LICENSE-MIT (+23/-0) vendor/zerocopy/src/third_party/rust/README.fuchsia (+7/-0) vendor/zerocopy/src/third_party/rust/layout.rs (+45/-0) vendor/zerocopy/src/util.rs (+810/-0) vendor/zerocopy/src/wrappers.rs (+503/-0) vendor/zerocopy/testdata/include_value/data (+1/-0) vendor/zerocopy/tests/trybuild.rs (+41/-0) vendor/zerocopy/tests/ui-msrv/include_value_not_from_bytes.rs (+12/-0) vendor/zerocopy/tests/ui-msrv/include_value_not_from_bytes.stderr (+12/-0) vendor/zerocopy/tests/ui-msrv/include_value_wrong_size.rs (+11/-0) vendor/zerocopy/tests/ui-msrv/include_value_wrong_size.stderr (+9/-0) vendor/zerocopy/tests/ui-msrv/invalid-impls/invalid-impls.rs (+29/-0) vendor/zerocopy/tests/ui-msrv/invalid-impls/invalid-impls.stderr (+127/-0) vendor/zerocopy/tests/ui-msrv/max-align.rs (+99/-0) vendor/zerocopy/tests/ui-msrv/max-align.stderr (+5/-0) vendor/zerocopy/tests/ui-msrv/transmute-dst-not-frombytes.rs (+18/-0) vendor/zerocopy/tests/ui-msrv/transmute-dst-not-frombytes.stderr (+12/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-alignment-increase.rs (+19/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-alignment-increase.stderr (+36/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-const.rs (+20/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-const.stderr (+41/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-dst-generic.rs (+18/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-dst-generic.stderr (+19/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-dst-not-a-reference.rs (+17/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-dst-not-a-reference.stderr (+39/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-dst-not-asbytes.rs (+24/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-dst-not-asbytes.stderr (+12/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-dst-not-frombytes.rs (+24/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-dst-not-frombytes.stderr (+12/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-dst-unsized.rs (+17/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-dst-unsized.stderr (+108/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-illegal-lifetime.rs (+15/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-illegal-lifetime.stderr (+9/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-size-decrease.rs (+17/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-size-decrease.stderr (+36/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-size-increase.rs (+17/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-size-increase.stderr (+36/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-dst-generic.rs (+19/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-dst-generic.stderr (+19/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-dst-not-references.rs (+17/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-dst-not-references.stderr (+12/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-dst-unsized.rs (+17/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-dst-unsized.stderr (+237/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-generic.rs (+18/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-generic.stderr (+10/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-immutable.rs (+18/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-immutable.stderr (+11/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-not-a-reference.rs (+17/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-not-a-reference.stderr (+12/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-not-asbytes.rs (+24/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-not-asbytes.stderr (+25/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-not-frombytes.rs (+24/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-not-frombytes.stderr (+25/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-unsized.rs (+16/-0) vendor/zerocopy/tests/ui-msrv/transmute-mut-src-unsized.stderr (+198/-0) vendor/zerocopy/tests/ui-msrv/transmute-ptr-to-usize.rs (+20/-0) vendor/zerocopy/tests/ui-msrv/transmute-ptr-to-usize.stderr (+37/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-alignment-increase.rs (+19/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-alignment-increase.stderr (+9/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-dst-generic.rs (+18/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-dst-generic.stderr (+19/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-dst-mutable.rs (+19/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-dst-mutable.stderr (+29/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-dst-not-a-reference.rs (+17/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-dst-not-a-reference.stderr (+29/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-dst-not-frombytes.rs (+18/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-dst-not-frombytes.stderr (+12/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-dst-unsized.rs (+17/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-dst-unsized.stderr (+94/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-illegal-lifetime.rs (+15/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-illegal-lifetime.stderr (+9/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-size-decrease.rs (+17/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-size-decrease.stderr (+9/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-size-increase.rs (+17/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-size-increase.stderr (+9/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-src-dst-generic.rs (+19/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-src-dst-generic.stderr (+19/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-src-dst-not-references.rs (+17/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-src-dst-not-references.stderr (+42/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-src-dst-unsized.rs (+17/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-src-dst-unsized.stderr (+195/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-src-generic.rs (+18/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-src-generic.stderr (+19/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-src-not-a-reference.rs (+17/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-src-not-a-reference.stderr (+12/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-src-not-asbytes.rs (+18/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-src-not-asbytes.stderr (+25/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-src-unsized.rs (+16/-0) vendor/zerocopy/tests/ui-msrv/transmute-ref-src-unsized.stderr (+170/-0) vendor/zerocopy/tests/ui-msrv/transmute-size-decrease.rs (+19/-0) vendor/zerocopy/tests/ui-msrv/transmute-size-decrease.stderr (+9/-0) vendor/zerocopy/tests/ui-msrv/transmute-size-increase.rs (+19/-0) vendor/zerocopy/tests/ui-msrv/transmute-size-increase.stderr (+9/-0) vendor/zerocopy/tests/ui-msrv/transmute-src-not-asbytes.rs (+18/-0) vendor/zerocopy/tests/ui-msrv/transmute-src-not-asbytes.stderr (+25/-0) vendor/zerocopy/tests/ui-nightly/include_value_not_from_bytes.rs (+12/-0) vendor/zerocopy/tests/ui-nightly/include_value_not_from_bytes.stderr (+25/-0) vendor/zerocopy/tests/ui-nightly/include_value_wrong_size.rs (+11/-0) vendor/zerocopy/tests/ui-nightly/include_value_wrong_size.stderr (+9/-0) vendor/zerocopy/tests/ui-nightly/invalid-impls/invalid-impls.rs (+29/-0) vendor/zerocopy/tests/ui-nightly/invalid-impls/invalid-impls.stderr (+107/-0) vendor/zerocopy/tests/ui-nightly/max-align.rs (+99/-0) vendor/zerocopy/tests/ui-nightly/max-align.stderr (+5/-0) vendor/zerocopy/tests/ui-nightly/transmute-dst-not-frombytes.rs (+18/-0) vendor/zerocopy/tests/ui-nightly/transmute-dst-not-frombytes.stderr (+25/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-alignment-increase.rs (+19/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-alignment-increase.stderr (+9/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-const.rs (+20/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-const.stderr (+33/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-dst-generic.rs (+18/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-dst-generic.stderr (+19/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-dst-not-a-reference.rs (+17/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-dst-not-a-reference.stderr (+39/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-dst-not-asbytes.rs (+24/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-dst-not-asbytes.stderr (+25/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-dst-not-frombytes.rs (+24/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-dst-not-frombytes.stderr (+25/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-dst-unsized.rs (+17/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-dst-unsized.stderr (+86/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-illegal-lifetime.rs (+15/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-illegal-lifetime.stderr (+12/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-size-decrease.rs (+17/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-size-decrease.stderr (+9/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-size-increase.rs (+17/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-size-increase.stderr (+9/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-dst-generic.rs (+19/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-dst-generic.stderr (+19/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-dst-not-references.rs (+17/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-dst-not-references.stderr (+44/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-dst-unsized.rs (+17/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-dst-unsized.stderr (+231/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-generic.rs (+18/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-generic.stderr (+10/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-immutable.rs (+18/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-immutable.stderr (+40/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-not-a-reference.rs (+17/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-not-a-reference.stderr (+44/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-not-asbytes.rs (+24/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-not-asbytes.stderr (+48/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-not-frombytes.rs (+24/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-not-frombytes.stderr (+48/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-unsized.rs (+16/-0) vendor/zerocopy/tests/ui-nightly/transmute-mut-src-unsized.stderr (+158/-0) vendor/zerocopy/tests/ui-nightly/transmute-ptr-to-usize.rs (+20/-0) vendor/zerocopy/tests/ui-nightly/transmute-ptr-to-usize.stderr (+30/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-alignment-increase.rs (+19/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-alignment-increase.stderr (+9/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-dst-generic.rs (+18/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-dst-generic.stderr (+19/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-dst-mutable.rs (+19/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-dst-mutable.stderr (+29/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-dst-not-a-reference.rs (+17/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-dst-not-a-reference.stderr (+29/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-dst-not-frombytes.rs (+18/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-dst-not-frombytes.stderr (+25/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-dst-unsized.rs (+17/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-dst-unsized.stderr (+69/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-illegal-lifetime.rs (+15/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-illegal-lifetime.stderr (+12/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-size-decrease.rs (+17/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-size-decrease.stderr (+9/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-size-increase.rs (+17/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-size-increase.stderr (+9/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-src-dst-generic.rs (+19/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-src-dst-generic.stderr (+19/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-src-dst-not-references.rs (+17/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-src-dst-not-references.stderr (+85/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-src-dst-unsized.rs (+17/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-src-dst-unsized.stderr (+183/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-src-generic.rs (+18/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-src-generic.stderr (+19/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-src-not-a-reference.rs (+17/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-src-not-a-reference.stderr (+55/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-src-not-asbytes.rs (+18/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-src-not-asbytes.stderr (+48/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-src-unsized.rs (+16/-0) vendor/zerocopy/tests/ui-nightly/transmute-ref-src-unsized.stderr (+127/-0) vendor/zerocopy/tests/ui-nightly/transmute-size-decrease.rs (+19/-0) vendor/zerocopy/tests/ui-nightly/transmute-size-decrease.stderr (+9/-0) vendor/zerocopy/tests/ui-nightly/transmute-size-increase.rs (+19/-0) vendor/zerocopy/tests/ui-nightly/transmute-size-increase.stderr (+9/-0) vendor/zerocopy/tests/ui-nightly/transmute-src-not-asbytes.rs (+18/-0) vendor/zerocopy/tests/ui-nightly/transmute-src-not-asbytes.stderr (+48/-0) vendor/zerocopy/tests/ui-stable/include_value_not_from_bytes.rs (+12/-0) vendor/zerocopy/tests/ui-stable/include_value_not_from_bytes.stderr (+25/-0) vendor/zerocopy/tests/ui-stable/include_value_wrong_size.rs (+11/-0) vendor/zerocopy/tests/ui-stable/include_value_wrong_size.stderr (+9/-0) vendor/zerocopy/tests/ui-stable/invalid-impls/invalid-impls.rs (+29/-0) vendor/zerocopy/tests/ui-stable/invalid-impls/invalid-impls.stderr (+107/-0) vendor/zerocopy/tests/ui-stable/max-align.rs (+99/-0) vendor/zerocopy/tests/ui-stable/max-align.stderr (+5/-0) vendor/zerocopy/tests/ui-stable/transmute-dst-not-frombytes.rs (+18/-0) vendor/zerocopy/tests/ui-stable/transmute-dst-not-frombytes.stderr (+25/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-alignment-increase.rs (+19/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-alignment-increase.stderr (+9/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-const.rs (+20/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-const.stderr (+31/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-dst-generic.rs (+18/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-dst-generic.stderr (+19/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-dst-not-a-reference.rs (+17/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-dst-not-a-reference.stderr (+39/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-dst-not-asbytes.rs (+24/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-dst-not-asbytes.stderr (+25/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-dst-not-frombytes.rs (+24/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-dst-not-frombytes.stderr (+25/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-dst-unsized.rs (+17/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-dst-unsized.stderr (+86/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-illegal-lifetime.rs (+15/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-illegal-lifetime.stderr (+12/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-size-decrease.rs (+17/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-size-decrease.stderr (+9/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-size-increase.rs (+17/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-size-increase.stderr (+9/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-dst-generic.rs (+19/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-dst-generic.stderr (+19/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-dst-not-references.rs (+17/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-dst-not-references.stderr (+15/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-dst-unsized.rs (+17/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-dst-unsized.stderr (+231/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-generic.rs (+18/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-generic.stderr (+10/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-immutable.rs (+18/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-immutable.stderr (+11/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-not-a-reference.rs (+17/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-not-a-reference.stderr (+15/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-not-asbytes.rs (+24/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-not-asbytes.stderr (+48/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-not-frombytes.rs (+24/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-not-frombytes.stderr (+48/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-unsized.rs (+16/-0) vendor/zerocopy/tests/ui-stable/transmute-mut-src-unsized.stderr (+158/-0) vendor/zerocopy/tests/ui-stable/transmute-ptr-to-usize.rs (+20/-0) vendor/zerocopy/tests/ui-stable/transmute-ptr-to-usize.stderr (+30/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-alignment-increase.rs (+19/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-alignment-increase.stderr (+9/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-dst-generic.rs (+18/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-dst-generic.stderr (+19/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-dst-mutable.rs (+19/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-dst-mutable.stderr (+29/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-dst-not-a-reference.rs (+17/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-dst-not-a-reference.stderr (+29/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-dst-not-frombytes.rs (+18/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-dst-not-frombytes.stderr (+25/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-dst-unsized.rs (+17/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-dst-unsized.stderr (+69/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-illegal-lifetime.rs (+15/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-illegal-lifetime.stderr (+12/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-size-decrease.rs (+17/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-size-decrease.stderr (+9/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-size-increase.rs (+17/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-size-increase.stderr (+9/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-src-dst-generic.rs (+19/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-src-dst-generic.stderr (+19/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-src-dst-not-references.rs (+17/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-src-dst-not-references.stderr (+45/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-src-dst-unsized.rs (+17/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-src-dst-unsized.stderr (+183/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-src-generic.rs (+18/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-src-generic.stderr (+19/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-src-not-a-reference.rs (+17/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-src-not-a-reference.stderr (+15/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-src-not-asbytes.rs (+18/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-src-not-asbytes.stderr (+48/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-src-unsized.rs (+16/-0) vendor/zerocopy/tests/ui-stable/transmute-ref-src-unsized.stderr (+127/-0) vendor/zerocopy/tests/ui-stable/transmute-size-decrease.rs (+19/-0) vendor/zerocopy/tests/ui-stable/transmute-size-decrease.stderr (+9/-0) vendor/zerocopy/tests/ui-stable/transmute-size-increase.rs (+19/-0) vendor/zerocopy/tests/ui-stable/transmute-size-increase.stderr (+9/-0) vendor/zerocopy/tests/ui-stable/transmute-src-not-asbytes.rs (+18/-0) vendor/zerocopy/tests/ui-stable/transmute-src-not-asbytes.stderr (+48/-0) vendor/zeroize/.cargo-checksum.json (+1/-0) vendor/zeroize/CHANGELOG.md (+269/-0) vendor/zeroize/Cargo.toml (+64/-0) vendor/zeroize/LICENSE-APACHE (+202/-0) vendor/zeroize/LICENSE-MIT (+21/-0) vendor/zeroize/README.md (+80/-0) vendor/zeroize/src/aarch64.rs (+31/-0) vendor/zeroize/src/lib.rs (+873/-0) vendor/zeroize/src/x86.rs (+29/-0) vendor/zeroize/tests/zeroize.rs (+210/-0) vendor/zeroize/tests/zeroize_derive.rs (+368/-0) |
||||
Related bugs: |
|
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Simon Quigley (community) | Approve | ||
Review via email: mp+477861@code.launchpad.net |
Description of the change
This merge proposal merges the changes from Debian to solve a FTBFS on Plucky.
To post a comment you must log in.
PPA build: https:/ /launchpad. net/~liushuyu- 011/+archive/ ubuntu/ misc-1/ +sourcepub/ 16633950/ +listing- archive- extra